/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #cc0000;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: width .9s, border-radius .9s, top .9s;
}

.header.normal-top{
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 0 !important;
}

.header.active-top{
    position: absolute;
    top: 20px;
    width: 90%;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a{
    line-height: normal;
    font-size: 0;
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo h1 span {
    color: #ff0000;
}

.logo img {
    max-width: 110px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
    color: #ff0000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-actions a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: #ff0000;
}

.language-select {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-btn, .user-btn {
    font-size: 1.2rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider img {
    width: 100%;
    height: auto;
}
/* .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
} */

/* .slider-item.active {
    opacity: 1;
} */

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.slider-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Slider Indicators */
/* .slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
} */

.swiper-pagination-bullet,
.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active,
.indicator.active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Section Title */
.section-title {
    font-size: 1.8rem;
    margin: 60px 0 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.classification-header .section-title {
    text-align: left;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    margin-bottom: 50px;
}

/* Product Classification */
.product-classification {
    padding: 60px 0;
}

.classification-header {
    margin-bottom: 50px;
}

.classification-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: center;
}

.classification-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.classification-item:hover {
    transform: translateY(-5px);
}

.item-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.item-image img {
    width: auto;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.classification-item:hover .item-image img {
    transform: scale(1.1);
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background-color: #fff;
}

.featured-grid {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.featured-item {
    position: relative;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    width: 25%;
    padding: 10px;
    transition: 0.8s;
    height: 360px;
}

.featured-item:hover {
    transform: none;
    box-shadow: none;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.featured-item h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-align: left;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Promo Banner */
.promo-banner {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.banner-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 530px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.banner-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.banner-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #ff6b00 100%);
}

.banner-text p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 15px 0 0;
    color: #fff;
}

/* Product Centre */
.product-centre {
    padding: 80px 0;
    background-color: #fff;
}

.product-centre .section-title {
    text-align: left;
    font-size: 1.8rem;
    color: #333;
    text-transform: none;
    font-weight: 500;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.product-item {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    padding: 50px 30px;
    background: #fff;
    box-shadow: 0 0 10px #e0e0e0;
    border-radius: 5px;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-item h5{
    border-top: 1px solid #D5D5D5;
    margin: 30px 0px 0px;
    padding-top: 20px;
    font-size: 18px;
}

/* Limited Time Discount */
.limited-discount {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}

.discount-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.discount-text {
    flex: 1;
    color: #fff;
}

.discount-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ccc;
}

.discount-image {
    flex: 1;
    position: relative;
}

.discount-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.discount-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Best Sellers */
.best-sellers {
    padding: 60px 0;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bestseller-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bestseller-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bestseller-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.bestseller-item .price {
    padding: 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0000;
    margin: 0;
}

/* Hot Categories */
.hot-categories {
    padding: 80px 0;
    background-color: #fff;
}

.hotcategories-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.showcase-content {
    padding: 0 20px 0 0;
    max-width: 500px;
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: normal;
}

.showcase-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 20px;
}

.showcase-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px;
    min-height: 400px;
}

.showcase-image img {
    width: auto;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
}

/* Services */
.services {
    padding: 60px 0;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

/* Footer */
.footer {
    background-color: #fff;
    color: #333;
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff0000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    color: #666;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #ff0000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content,
    .discount-content {
        gap: 40px;
    }
    
    .hero-text h2,
    .discount-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .discount-content {
        flex-direction: column;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 25px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .bestsellers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hotcategories-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-content {
        padding: 0;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        /*flex-direction: column;*/
        text-align: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-actions {
        gap: 20px;
    }
    
    .hero,
    .limited-discount {
        padding: 60px 0;
    }
    
    .hero-text h2,
    .discount-text h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-item {
        height: 300px;
    }
    
    .banner-text {
        bottom: 30px;
        left: 30px;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .service-item i {
        font-size: 2rem;
    }
    
    .service-item h3 {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .classification-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .classification-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero-text h2,
    .discount-text h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin: 40px 0 10px;
    }
    
    .classification-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .item-image {
        height: 120px;
    }
    
    .item-image img {
        height: 80px;
    }
    
    .featured-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .featured-item{
        width: 100%;
    }
    
    .featured-item img {
        height: 100%;
    }
    
    .product-item img {
        max-height: 150px;
        height: auto;
    }
    
    .banner-item {
        height: 250px;
    }
    
    .bestsellers-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}