*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth;font-size:16px}body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;line-height:1.6;color:#2C2C2C;background:linear-gradient(135deg,#FFFEF7 0%,#F8F6F0 100%);overflow-x:hidden}

/* ===== CUSTOM PROPERTIES ===== */
:root {
    /* Colors */
    --primary-cream: #FFFFFF;
    --secondary-cream: #F8F8F8;
    --accent-gold: #000000;
    --accent-gold-dark: #333333;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
    --border-light: #E0E0E0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.1);
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-gold-dark);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary,
.cta-button.primary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-primary:hover,
.cta-button.primary:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-2px);
}

.btn-secondary,
.cta-button.secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover,
.cta-button.secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #666666;
    font-weight: 400;
}

.logo svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #000000;
}

.logo:hover svg {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #000000;
    background-color: #f5f5f5;
}

.nav-link.active {
    color: #000000;
    background-color: #f0f0f0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
}

.search-btn,
.cart,
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 4px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* ===== SEARCH MODAL ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateX(-50%) translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-modal {
    transform: translateX(-50%) translateY(0);
}

.search-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.search-icon {
    margin-right: 0.75rem;
    color: #6B5B47;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.search-close:hover {
    background: #e9ecef;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestions {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.search-suggestions h4 {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: #f8f9fa;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.suggestion-tag:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-1px);
}

.search-products {
    padding: 1rem;
}

.search-product-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-product-item:hover {
    background: #f8f9fa;
}

.search-product-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 1rem;
}

.search-product-info {
    flex: 1;
}

.search-product-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.search-product-price {
    color: var(--accent-gold);
    font-weight: 600;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.search-no-results svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.search-results-header {
    padding: 1rem 1.5rem 0.5rem;
    border-bottom: 1px solid #eee;
}

.search-results-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
}

.search-product-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.search-product-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-product-image {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.search-product-info {
    flex: 1;
    min-width: 0;
}

.search-product-info .product-brand {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.search-product-info .product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.search-product-info .product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.search-product-info .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.search-product-info .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.search-product-info .discount {
    background: #e74c3c;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.search-product-info .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-product-info .stars {
    display: flex;
    gap: 2px;
}

.search-product-info .rating-text {
    font-size: 0.875rem;
    color: #666;
}

.search-add-to-cart {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.search-add-to-cart:hover {
    background: #B8941F;
    transform: translateY(-1px);
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.no-results h3 {
    margin: 1rem 0 0.5rem 0;
    color: #333;
}

.no-results p {
    margin: 0;
    color: #999;
}

.search-btn:hover,
.cart:hover,
.mobile-menu-toggle:hover {
    background: #f5f5f5;
    color: #000000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition-normal);
}

.cart-count.show {
    transform: scale(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #333333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #000000;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    padding-top: 70px; /* Add space for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000000;
}

.hero-description {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.perfume-bottle {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.3));
    animation: float 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    animation: bounce 2s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Fade in animation class */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
.product-card,
.feature-card,
.review-card {
    will-change: transform;
    backface-visibility: hidden;
}

/* Image loading optimization */
img {
    loading: lazy;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--section-padding);
    background: var(--primary-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: var(--font-size-sm);
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.product-filters {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-slow);
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 100%;
}

.category-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.category-btn.active {
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.view-toggle {
    display: flex;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.view-btn {
    padding: 0.75rem 1rem;
    border: none;
    background: var(--white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.view-btn.active {
    background: var(--accent-gold);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0;
}

/* Enhanced responsive grid for better layouts */
@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--accent-gold);
}

.product-content {
    position: relative;
    padding: 0;
}

.product-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-brand {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.old-price {
    font-size: var(--font-size-base);
    color: var(--text-light);
    text-decoration: line-through;
}

.discount {
    background: var(--error);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.add-to-cart-btn,
.quick-view-btn,
.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
}

.add-to-cart-btn {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    font-weight: 600;
}

.add-to-cart-btn:hover {
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-view-btn:hover,
.wishlist-btn:hover {
    background: var(--secondary-cream);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-1px);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--secondary-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    animation: fadeInUp 1s ease-out;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px var(--shadow-heavy);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-heavy);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: var(--section-padding);
    background: var(--primary-cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px var(--shadow-heavy);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: var(--transition-slow);
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-location {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--secondary-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px var(--shadow-heavy);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px var(--shadow-heavy);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    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-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-normal);
}

.newsletter-input::placeholder {
    color: #ccc;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-method {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    position: relative;
    z-index: 2;
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--text-secondary);
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--white);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-cream);
    border-radius: var(--radius-lg);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--accent-gold);
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-total {
    text-align: center;
    padding: 1rem;
    background: var(--secondary-cream);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.cart-total-amount {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-gold);
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        transition: all 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        transform: translateX(0);
    }
    
    .nav-list li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--accent-gold);
        color: white;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .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);
    }
    
    /* Search modal responsive */
    .search-modal {
        top: 60px;
        width: 95%;
        max-height: 80vh;
    }
    
    .search-header {
        padding: 1rem;
    }
    
    .search-input-container {
        padding: 0.5rem 0.75rem;
    }
    
    .search-suggestions {
        padding: 1rem;
    }
    
    .suggestion-tags {
        gap: 0.375rem;
    }
    
    .suggestion-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .search-product-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
    }
    
    .search-product-image {
        width: 100%;
        height: 120px;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .search-add-to-cart {
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .sort-controls {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 0 1rem 0; /* Extra padding-top for mobile header */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-actions {
        width: 100%;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
        padding: 0;
        width: 100%;
    }
    
    .product-card {
        max-width: 100%;
        border-radius: 12px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-image {
        height: 180px;
        width: 100%;
        object-fit: cover;
    }
    
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .product-actions-overlay {
        position: static;
        opacity: 1;
        transform: none;
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
        background: #f8f9fa;
        margin-top: 1rem;
    }
    
    .quick-action-btn {
        position: relative;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .quantity-controls {
        width: 100%;
        justify-content: center;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        background: white;
        margin-bottom: 1rem;
    }
    
    .qty-btn {
        width: 48px;
        height: 48px;
        border: none;
        background: white;
        color: #333;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .qty-btn:hover {
        background: var(--accent-gold);
        color: white;
    }
    
    .qty-btn:active {
        transform: scale(0.95);
    }
    
    .qty-input {
        width: 60px;
        height: 48px;
        border: none;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
        background: #f8f9fa;
        color: #333;
    }
    
    .qty-input:focus {
        outline: none;
        background: white;
        box-shadow: inset 0 0 0 2px var(--accent-gold);
    }
    
    .cart-content, .whatsapp-content {
        width: 100%;
        height: 100vh;
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .cart-modal, .whatsapp-modal {
        align-items: flex-end;
    }
    
    .cart-header, .whatsapp-header {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
    }
    
    .cart-body, .whatsapp-body {
        flex: 1;
        padding: 1rem 1.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cart-footer {
        padding: 1.5rem;
        border-top: 1px solid #eee;
        background: white;
        position: sticky;
        bottom: 0;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .continue-shopping, .checkout-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .close-cart, .close-whatsapp {
         padding: 0.75rem;
         min-width: 44px;
         min-height: 44px;
         touch-action: manipulation;
     }
     
     .cart-item {
         padding: 1.5rem 0;
         gap: 1rem;
     }
     
     .cart-item-image {
         width: 80px;
         height: 80px;
         border-radius: 12px;
     }
     
     .cart-item-details {
         flex: 1;
         min-width: 0;
     }
     
     .cart-item-name {
         font-size: 1rem;
         line-height: 1.4;
         margin-bottom: 0.5rem;
     }
     
     .cart-item-price {
         font-size: 1.1rem;
         margin-bottom: 0.75rem;
     }
     
     .cart-item-quantity {
         gap: 1rem;
         align-items: center;
     }
     
     .quantity-btn {
         width: 44px;
         height: 44px;
         border-radius: 8px;
         font-size: 1.2rem;
         touch-action: manipulation;
         display: flex;
         align-items: center;
         justify-content: center;
     }
     
     .quantity-display {
         font-size: 1.1rem;
         font-weight: 600;
         min-width: 40px;
         text-align: center;
     }
     
     .remove-item {
         padding: 0.75rem;
         min-width: 44px;
         min-height: 44px;
         border-radius: 8px;
         touch-action: manipulation;
     }
     
     .cart-summary {
         margin-bottom: 1.5rem;
         padding: 1rem;
         background: #f8f9fa;
         border-radius: 12px;
     }
     
     .cart-total {
         font-size: 1.2rem;
         margin-bottom: 0.5rem;
     }
     
     .cart-count {
         font-size: 1rem;
         color: #666;
     }
     
     .modal-content {
         padding: 1rem;
     }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .category-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    .category-filters {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0 0.75rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .search-btn, .cart, .mobile-menu-toggle {
         width: 36px;
         height: 36px;
         min-width: 36px;
     }
     
     /* Section spacing optimizations */
     .section-padding {
         padding: 2rem 0;
     }
     
     .about, .products, .contact {
         padding: 2rem 0;
     }
     
     .about-content, .contact-content {
         gap: 1.5rem;
         padding: 0;
     }
     
     .about-text, .contact-info {
         padding: 0;
         margin-bottom: 1rem;
     }
     
     .section-title {
         font-size: 1.8rem;
         margin-bottom: 1rem;
         text-align: center;
     }
     
     .section-subtitle {
         font-size: 0.9rem;
         margin-bottom: 1.5rem;
         text-align: center;
     }
     
     /* Footer optimizations */
     .footer {
         padding: 2rem 0 1rem;
     }
     
     .footer-content {
         gap: 1.5rem;
         text-align: center;
     }
     
     .footer-section {
         margin-bottom: 1.5rem;
     }
     
     .footer-section h4 {
          font-size: 1rem;
          margin-bottom: 0.75rem;
      }
      
      /* Prevent horizontal overflow */
      .hero-visual, .perfume-bottle {
          max-width: 100%;
          overflow: hidden;
      }
      
      .floating-elements {
          display: none; /* Hide decorative elements on mobile */
      }
      
      .hero-stats {
          grid-template-columns: 1fr;
          gap: 1rem;
          max-width: 100%;
      }
      
      .stat-item {
          padding: 0.75rem;
          text-align: center;
      }
      
      /* Fix any wide elements */
      img, video, iframe {
          max-width: 100%;
          height: auto;
      }
      
      .newsletter-form {
          width: 100%;
          max-width: 100%;
      }
      
      .newsletter-input {
          width: 100%;
          margin-bottom: 0.75rem;
      }
      
      .payment-methods {
          justify-content: center;
          gap: 0.5rem;
      }
      
      .payment-method {
          font-size: 0.75rem;
          padding: 0.375rem 0.75rem;
      }
      
      /* Additional overflow prevention */
       .hero, .about, .products, .contact, .footer {
           width: 100%;
           max-width: 100vw;
           overflow-x: hidden;
       }
       
       /* Enhanced text readability */
       p, .product-description, .about-text p {
           font-size: 0.95rem;
           line-height: 1.6;
           margin-bottom: 1rem;
       }
       
       .product-name {
           font-size: 1rem;
           line-height: 1.3;
           margin-bottom: 0.5rem;
       }
       
       .product-price {
           font-size: 1.1rem;
           font-weight: 600;
       }
       
       .product-brand {
           font-size: 0.8rem;
           margin-bottom: 0.25rem;
       }
       
       /* Button improvements */
       .btn, .add-to-cart, .filter-btn {
           min-height: 48px;
           font-size: 1rem;
           padding: 1rem 1.5rem;
           touch-action: manipulation;
           border-radius: 12px;
           font-weight: 600;
       }
       
       .add-to-cart {
           width: 100%;
           background: linear-gradient(135deg, var(--accent-gold), #B8941F);
           color: white;
           border: none;
           box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
           text-transform: uppercase;
           letter-spacing: 0.5px;
           transition: all 0.3s ease;
       }
       
       .add-to-cart:hover {
           transform: translateY(-2px);
           box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
           background: linear-gradient(135deg, #B8941F, var(--accent-gold));
       }
       
       .add-to-cart:active {
           transform: translateY(0);
           box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
       }
       
       /* Form elements */
       .form-input, .form-textarea {
           font-size: 1rem;
           min-height: 44px;
           padding: 0.75rem;
       }
       
       /* Contact info readability */
       .contact-item {
           font-size: 0.9rem;
           line-height: 1.5;
           margin-bottom: 1rem;
       }
       
       .contact-details h4 {
           font-size: 1rem;
           margin-bottom: 0.5rem;
       }
       
       .contact-details p {
           font-size: 0.9rem;
           line-height: 1.4;
       }
   }

/* ===== MODAL STYLES ===== */
.cart-modal, .whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-modal.show, .whatsapp-modal.show {
    opacity: 1;
    visibility: visible;
}

.cart-content, .whatsapp-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-modal.show .cart-content,
.whatsapp-modal.show .whatsapp-content {
    transform: scale(1);
}

.cart-header, .whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3, .whatsapp-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.close-cart, .close-whatsapp {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-cart:hover, .close-whatsapp:hover {
    background-color: #f5f5f5;
}

.cart-body, .whatsapp-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.empty-cart svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.empty-cart span {
    font-size: 0.9rem;
    color: #999;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #333;
}

.cart-item-price {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-summary {
    margin-bottom: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cart-total span {
    font-size: 1.1rem;
}

.cart-total strong {
    font-size: 1.25rem;
    color: #D4AF37;
}

.cart-count {
    color: #666;
    font-size: 0.9rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.continue-shopping {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.continue-shopping:hover {
    background: #f5f5f5;
}

.checkout-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    font-weight: 500;
}

.checkout-btn:hover:not(:disabled) {
    background: #22c55e;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* WhatsApp Modal Specific Styles */
.order-summary {
    margin-bottom: 1.5rem;
}

.order-summary h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.order-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #D4AF37;
    text-align: right;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: scale(1.01);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.whatsapp-submit {
    padding: 1.25rem 2rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 56px;
    touch-action: manipulation;
}

.whatsapp-submit:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit:active {
    transform: translateY(0);
}

/* ===== COLLECTION SECTION ===== */
.collection {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFFEF7 0%, #F8F6F0 100%);
    position: relative;
    overflow: hidden;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.collection-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-item:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-info {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.collection-item:hover .collection-info {
    transform: translateY(0);
}

.collection-info h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.collection-info p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-weight: 400;
}

.collection-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.collection-cta .cta-button {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.collection-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.collection-cta .cta-button:hover::before {
    left: 100%;
}

.collection-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Collection */
@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .collection-image {
        height: 250px;
    }
    
    .collection-info h4 {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .collection-image {
        height: 200px;
    }
    
    .collection-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-base);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    word-wrap: break-word;
}

.notification.show {
    transform: translateX(0);
}

.notification.info {
    background-color: #3498db;
}

.notification.success {
    background-color: #27ae60;
}

.notification.error {
    background-color: #e74c3c;
}