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

:root {
    --primary-color: #d4af37;
    --secondary-color: #2c2c2c;
    --accent-color: #ff69b4;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-text {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-text.delay-1 {
    animation-delay: 0.3s;
}

.animate-text.delay-2 {
    animation-delay: 0.6s;
}

/* Navigation Bar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 30px;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-bar button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: #c19d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icon {
    position: relative;
    font-size: 22px;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.nav-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ========================================
   MEGA MENU STYLES
   ======================================== */

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Dropdown Container */
.nav-dropdown {
    position: static;
}

.nav-dropdown .nav-link::after {
    display: none;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-column {
    position: relative;
}

.mega-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.mega-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.view-all-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 20px;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #eee !important;
}

.view-all-link:hover {
    gap: 12px !important;
    padding-left: 0 !important;
    background: transparent !important;
}

.view-all-link i {
    font-size: 12px;
    transition: var(--transition);
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Featured Products in Mega Menu */
.featured-products {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

.featured-product {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
}

.featured-product:last-child {
    border-bottom: none;
}

.featured-product:hover {
    opacity: 0.8;
}

.featured-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-product p {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.featured-product .price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Special Navigation Links */
.nav-highlight {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.nav-highlight.sale {
    color: #e74c3c !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 15px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav-header .logo {
    font-size: 22px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 10px;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-content > a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-accordion {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    text-align: left;
}

.mobile-accordion-btn i {
    transition: var(--transition);
}

.mobile-accordion-btn.active i {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    display: none;
    padding: 0 0 15px 15px;
}

.mobile-accordion-content.active {
    display: block;
}

.mobile-accordion-content a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-accordion-content a.view-all {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-nav-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* Sticky Header */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE STYLES FOR MEGA MENU
   ======================================== */

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-content {
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        max-width: 100%;
        order: 3;
    }
    
    .nav-icons {
        position: absolute;
        right: 60px;
        top: 18px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    right: 20px;
}

.slider-btn.next {
    left: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Offers Banner */
.offers-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

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

.offer-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.offer-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.offer-card p {
    color: #666;
    font-size: 14px;
}

/* Products Overview */
.products-overview {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 15px 25px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.filter-tab .filter-icon {
    font-size: 24px;
    transition: var(--transition);
}

.filter-tab .filter-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab .filter-sub {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
}

/* Category-specific colors */
.filter-tab[data-category="all"] {
    border-color: #6c757d;
}
.filter-tab[data-category="all"]:hover,
.filter-tab[data-category="all"].active {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.filter-tab[data-category="makeup"] {
    border-color: #e91e63;
}
.filter-tab[data-category="makeup"]:hover,
.filter-tab[data-category="makeup"].active {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}
.filter-tab[data-category="makeup"] .filter-icon {
    color: #e91e63;
}
.filter-tab[data-category="makeup"]:hover .filter-icon,
.filter-tab[data-category="makeup"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="skincare"] {
    border-color: #4caf50;
}
.filter-tab[data-category="skincare"]:hover,
.filter-tab[data-category="skincare"].active {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}
.filter-tab[data-category="skincare"] .filter-icon {
    color: #4caf50;
}
.filter-tab[data-category="skincare"]:hover .filter-icon,
.filter-tab[data-category="skincare"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="bodycare"] {
    border-color: #00bcd4;
}
.filter-tab[data-category="bodycare"]:hover,
.filter-tab[data-category="bodycare"].active {
    background: #00bcd4;
    color: white;
    border-color: #00bcd4;
}
.filter-tab[data-category="bodycare"] .filter-icon {
    color: #00bcd4;
}
.filter-tab[data-category="bodycare"]:hover .filter-icon,
.filter-tab[data-category="bodycare"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="personalcare"] {
    border-color: #ff9800;
}
.filter-tab[data-category="personalcare"]:hover,
.filter-tab[data-category="personalcare"].active {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
}
.filter-tab[data-category="personalcare"] .filter-icon {
    color: #ff9800;
}
.filter-tab[data-category="personalcare"]:hover .filter-icon,
.filter-tab[data-category="personalcare"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="haircare"] {
    border-color: #9c27b0;
}
.filter-tab[data-category="haircare"]:hover,
.filter-tab[data-category="haircare"].active {
    background: #9c27b0;
    color: white;
    border-color: #9c27b0;
}
.filter-tab[data-category="haircare"] .filter-icon {
    color: #9c27b0;
}
.filter-tab[data-category="haircare"]:hover .filter-icon,
.filter-tab[data-category="haircare"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="handfootcare"] {
    border-color: #795548;
}
.filter-tab[data-category="handfootcare"]:hover,
.filter-tab[data-category="handfootcare"].active {
    background: #795548;
    color: white;
    border-color: #795548;
}
.filter-tab[data-category="handfootcare"] .filter-icon {
    color: #795548;
}
.filter-tab[data-category="handfootcare"]:hover .filter-icon,
.filter-tab[data-category="handfootcare"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="oralcare"] {
    border-color: #2196f3;
}
.filter-tab[data-category="oralcare"]:hover,
.filter-tab[data-category="oralcare"].active {
    background: #2196f3;
    color: white;
    border-color: #2196f3;
}
.filter-tab[data-category="oralcare"] .filter-icon {
    color: #2196f3;
}
.filter-tab[data-category="oralcare"]:hover .filter-icon,
.filter-tab[data-category="oralcare"].active .filter-icon {
    color: white;
}

.filter-tab[data-category="naturalherbal"] {
    border-color: #8bc34a;
}
.filter-tab[data-category="naturalherbal"]:hover,
.filter-tab[data-category="naturalherbal"].active {
    background: #8bc34a;
    color: white;
    border-color: #8bc34a;
}
.filter-tab[data-category="naturalherbal"] .filter-icon {
    color: #8bc34a;
}
.filter-tab[data-category="naturalherbal"]:hover .filter-icon,
.filter-tab[data-category="naturalherbal"].active .filter-icon {
    color: white;
}

.filter-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.filter-tab.active {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive filter tabs */
@media (max-width: 768px) {
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-tab {
        padding: 10px 15px;
        min-width: 80px;
    }
    
    .filter-tab .filter-icon {
        font-size: 20px;
    }
    
    .filter-tab .filter-text {
        font-size: 10px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
    animation: pulse 2s infinite;
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.action-btn.active {
    background: var(--accent-color);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    min-height: 40px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.reviews-count {
    font-size: 12px;
    color: #999;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.view-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Horizontal Products Sections */
.horizontal-products {
    padding: 60px 0;
    position: relative;
}

.horizontal-products:nth-child(even) {
    background: var(--light-bg);
}

.section-header-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header-horizontal h2 {
    font-size: 28px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header-horizontal h2 i {
    color: var(--primary-color);
}

.see-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.see-all:hover {
    gap: 10px;
}

.horizontal-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll .product-card {
    min-width: 280px;
    flex-shrink: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary-color);
}

.scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
    right: 10px;
}

.scroll-btn.right {
    left: 10px;
}

/* Brand Promos Section */
.brand-promos {
    padding: 40px 0;
    background: var(--light-bg);
}

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

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.promo-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.promo-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.promo-banner:hover img {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.promo-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-content p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.brand-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.brand-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%);
}

.brand-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
}

/* Brands Scroll - Horizontal Scrolling */
.brands-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.brands-scroll::-webkit-scrollbar {
    display: none;
}

.brands-scroll .brand-card {
    min-width: 200px;
    flex-shrink: 0;
}

/* Responsive Styles for Brand Promos */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-banner img {
        height: 180px;
    }
    
    .promo-content {
        padding: 20px;
    }
    
    .promo-content h3 {
        font-size: 22px;
    }
    
    .promo-content p {
        font-size: 16px;
    }
    
    .brands-scroll .brand-card {
        min-width: 160px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.review-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c19d2f 100%);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
   
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 30px;
}

.payment-methods i {
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods i:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeIn 0.5s ease-in;
}
