/* En Vogue - Modern Elegant Jewelry Store */

:root {
    --primary-gold: #C9A86A;
    --dark-gold: #A88D5F;
    --light-gold: #F5EFE6;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-dark: #4A4A4A;
    --gray-medium: #757575;
    --gray-light: #F8F8F8;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

/* 
===========================================
TYPOGRAPHY SYSTEM
===========================================
Primary Font (Serif): 'Cormorant Garamond' 
- Used for: All headings (h1-h6), titles, hero text
- Purpose: Elegant, premium feel

Secondary Font (Sans-serif): 'Inter'
- Used for: Body text, descriptions, buttons, labels
- Purpose: Clean readability

Font Hierarchy:
- H1: 3.5rem / 56px (Hero titles)
- H2: 2.75rem / 44px (Section titles)
- H3: 2rem / 32px (Subsection titles)
- H4: 1.5rem / 24px (Card titles)
- H5: 1.25rem / 20px
- H6: 1rem / 16px
- Body: 1rem / 16px (Inter)
- Small: 0.875rem / 14px
===========================================
*/

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
}

h2 {
    font-size: 2.75rem;
    font-weight: 500;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

/* Paragraphs */
p {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    font-weight: 400;
}

/* Text Utilities */
.text-serif {
    font-family: 'Cormorant Garamond', serif;
}

.text-sans {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Seasonal Banner */
.seasonal-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #C9A86A 0%, #A88B52 100%);
    color: #ffffff;
    text-align: center;
    padding: 0.25rem 1rem;
    z-index: 1100;
    /* Above header (1000) */
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
    line-height: 1.1;
}

.seasonal-banner p {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.seasonal-banner p::before {
    content: '⭐';
    font-size: 0.75rem;
}

.seasonal-banner p::after {
    content: '⭐';
    font-size: 0.75rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adjust header when seasonal banner is present */
body:has(.seasonal-banner) .header {
    top: 26px;
}

/* Mobile adjustments for seasonal banner */
@media (max-width: 768px) {
    .seasonal-banner {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }

    .seasonal-banner p {
        gap: 0.3rem;
    }

    .seasonal-banner p::before,
    .seasonal-banner p::after {
        font-size: 0.65rem;
    }

    body:has(.seasonal-banner) .header {
        top: 22px;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.header.transparent .logo {
    background: transparent;
    border: none;
    box-shadow: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.header.transparent .logo-img {
    height: 68px;
}

.header.scrolled .logo {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.header.scrolled .logo-img {
    height: 60px;
    filter: contrast(1.1) saturate(1.15) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.header.transparent .nav-links a {
    color: rgba(255, 255, 255, 0.95);
}

.header.scrolled .nav-links a {
    color: var(--gray-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.nav-links li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    min-width: 220px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark) !important;
    transition: var(--transition);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    color: var(--primary-gold) !important;
    padding-left: 1.75rem;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-dark);
    transition: var(--transition);
}

.header.transparent .icon-btn {
    color: rgba(255, 255, 255, 0.95);
}

.header.scrolled .icon-btn {
    color: var(--gray-dark);
}

.icon-btn:hover {
    color: var(--primary-gold);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    padding: 0.6rem;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.header.scrolled .whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
}

.header.scrolled .whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-btn svg {
    color: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-dark);
    transition: var(--transition);
}

.header.transparent .mobile-menu-btn {
    color: rgba(255, 255, 255, 0.95);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(201, 168, 106, 0.05) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.75) 60%,
            rgba(45, 36, 32, 0.7) 100%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero Decorative SVGs */
.hero-decorative-svgs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.deco-svg {
    position: absolute;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 10px rgba(201, 168, 106, 0.3));
}

.deco-diamond-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation: floatRotate 20s ease-in-out infinite;
    opacity: 0.3;
}

.deco-diamond-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 8%;
    animation: floatRotate 25s ease-in-out infinite reverse;
    opacity: 0.25;
}

.deco-sparkle-1 {
    width: 40px;
    height: 40px;
    top: 25%;
    left: 15%;
    animation: sparkleFloat 8s ease-in-out infinite;
    opacity: 0.4;
}

.deco-sparkle-2 {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 20%;
    animation: sparkleFloat 10s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.35;
}

.deco-sparkle-3 {
    width: 35px;
    height: 35px;
    bottom: 15%;
    right: 12%;
    animation: sparkleFloat 12s ease-in-out infinite;
    animation-delay: 4s;
    opacity: 0.3;
}

.deco-ring-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: pulse 15s ease-in-out infinite;
    opacity: 0.2;
}

.deco-ring-2 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    right: 5%;
    animation: pulse 18s ease-in-out infinite;
    animation-delay: 3s;
    opacity: 0.2;
}

.deco-ornament-1 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: -50px;
    animation: rotateOrnament 30s linear infinite;
    opacity: 0.15;
}

.deco-ornament-2 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: -50px;
    animation: rotateOrnament 35s linear infinite reverse;
    opacity: 0.15;
}

@keyframes floatRotate {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(0, -40px) rotate(180deg);
    }

    75% {
        transform: translate(-15px, -20px) rotate(270deg);
    }
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes rotateOrnament {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-images-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    opacity: 0.45;
    filter: grayscale(10%) contrast(1.15) saturate(1.1);
}

.hero-image-item {
    position: relative;
    overflow: hidden;
    animation: heroImageFloat 25s ease-in-out infinite;
    animation-delay: var(--delay);
}

.hero-image-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-image-item:hover::after {
    opacity: 1;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.hero-image-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.2);
}

@keyframes heroImageFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    33% {
        transform: translateY(-15px) scale(1.02);
    }

    66% {
        transform: translateY(15px) scale(0.98);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.85) 80%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    padding: 8rem 2rem 4rem;
    text-align: center;
    z-index: 2;
    position: relative;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 168, 106, 0.4);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(201, 168, 106, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(201, 168, 106, 0.3), transparent);
    border-radius: 50px;
    animation: badgeSweep 3s linear infinite;
    opacity: 0;
}

.hero-badge:hover::before {
    opacity: 1;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 168, 106, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 168, 106, 0.3),
            0 0 60px rgba(201, 168, 106, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes badgeSweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

.hero-title {
    font-size: 7rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -4px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title-line {
    display: block;
    background: linear-gradient(135deg,
            #ffffff 0%,
            #f4e4c1 20%,
            var(--primary-gold) 40%,
            #d4a574 60%,
            var(--primary-gold) 80%,
            #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: titleShine 6s ease-in-out infinite;
    position: relative;
}

.hero-title-line::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #C9A86A 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes titleShine {

    0%,
    100% {
        background-position: 0% center;
        filter: brightness(1);
    }

    50% {
        background-position: 100% center;
        filter: brightness(1.2);
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    padding: 0 1rem;
}

.hero-stat::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(201, 168, 106, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 106, 0.3), transparent);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero Social Section */
.hero-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(201, 168, 106, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hero-social:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(201, 168, 106, 0.3);
    box-shadow: 0 6px 24px rgba(201, 168, 106, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-social-followers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon-heart {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    filter: drop-shadow(0 2px 6px rgba(201, 168, 106, 0.4));
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.15);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.followers-info {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.followers-count {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.followers-plus {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.followers-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-left: 0.25rem;
}

.hero-social-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 106, 0.3), transparent);
}

.hero-social-links {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dbd 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-link:hover svg {
    transform: scale(1.15);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.4);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

/* Gradient Background System */
.section:nth-of-type(odd) {
    background: linear-gradient(180deg, #ffffff 0%, #fdfcfb 50%, #f9f7f3 100%);
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, #f9f7f3 0%, #faf8f5 50%, #ffffff 100%);
}

/* Smooth transitions between sections */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 106, 0.02) 100%);
    pointer-events: none;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, transparent 0%, rgba(201, 168, 106, 0.02) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-family: 'Inter', sans-serif;
    color: var(--gray-medium);
    font-size: 1.0625rem;
    max-width: 650px;
    margin: 0.5rem auto 0;
    line-height: 1.75;
    font-weight: 400;
}

/* Loading Spinner */
.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    gap: 1rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--light-gold);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Reels Section */
.section.bg-light {
    background: linear-gradient(180deg, #ffffff 0%, #fdfcfb 50%, #faf8f5 100%);
    position: relative;
    padding: 2.5rem 0;
}

.section.bg-light::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    height: 100px;
}

.section.bg-light::after {
    background: linear-gradient(0deg, rgba(247, 244, 237, 0.5) 0%, transparent 100%);
    height: 100px;
}

.reels-wrapper {
    position: relative;
    margin: 1.5rem 2rem 0;
}

.reels-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.reels-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.reels-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(201, 168, 106, 0.5);
    color: var(--primary-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reels-nav-btn:hover {
    background: rgba(201, 168, 106, 0.9);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.4);
}

.reels-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.reels-prev {
    left: -24px;
}

.reels-next {
    right: -24px;
}

.reels-nav-btn svg {
    width: 24px;
    height: 24px;
}

.reel-item {
    position: relative;
    flex: 0 0 187px;
    /* Reduced by 33% from 280px */
    aspect-ratio: 9 / 16;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 106, 0.1);
}

.reel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 168, 106, 0.25);
    border-color: rgba(201, 168, 106, 0.3);
}

.reel-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.reel-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Social Follow Section */
.social-follow-section {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, rgba(201, 168, 106, 0.05) 100%);
    border-radius: 16px;
}

/* Why Choose En Vogue Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f7f4ed 0%, #faf8f5 50%, #fdfcfb 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.2) 50%, transparent 100%);
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, transparent 0%, rgba(201, 168, 106, 0.03) 100%);
    pointer-events: none;
}

.why-choose-section .section-description {
    max-width: 900px;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.header-features-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.header-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: transform 0.3s ease;
}

.header-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.15);
}

.h-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.h-feature-icon svg {
    width: 18px;
    height: 18px;
}

.header-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .header-features-row {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .header-feature-item {
        padding: 0.35rem 0.7rem;
        border-radius: 30px;
    }

    .header-feature-item span {
        font-size: 0.7rem;
    }

    .h-feature-icon svg {
        width: 14px;
        height: 14px;
    }
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.why-choose-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 106, 0.1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 168, 106, 0.15);
    border-color: rgba(201, 168, 106, 0.3);
}

.why-choose-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 2rem;
}

.why-choose-card .card-icon svg {
    width: 40px;
    height: 40px;
}

.why-choose-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.why-choose-card .card-description {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Style Guide Section */
.style-guide-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(253, 252, 251, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(201, 168, 106, 0.15);
    box-shadow: 0 10px 40px rgba(201, 168, 106, 0.08);
}

.guide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.guide-intro {
    font-size: 1.05rem;
    color: var(--gray-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.occasion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.occasion-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.occasion-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 106, 0.3);
    box-shadow: 0 10px 30px rgba(201, 168, 106, 0.1);
}

.occasion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.occasion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.occasion-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Benefits Banner */
.benefits-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 20px;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.benefit-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 252, 251, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: 0 10px 40px rgba(201, 168, 106, 0.1);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .occasion-cards {
        grid-template-columns: 1fr;
    }

    .benefits-banner {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .guide-title,
    .cta-title {
        font-size: 1.75rem;
    }
}

/* En Vogue Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fdfcfb 0%, #ffffff 50%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(201, 168, 106, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(201, 168, 106, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 168, 106, 0.15);
    border-color: rgba(201, 168, 106, 0.2);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, rgba(201, 168, 106, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: #ffffff;
    transform: rotate(360deg) scale(1.1);
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
}

.advantage-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.08) 0%, rgba(201, 168, 106, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 106, 0.1);
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-badges {
        gap: 2rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }
}

/* Social Follow Section */
.follow-text {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-follow-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-follow-btn svg {
    width: 24px;
    height: 24px;
}

.social-follow-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.social-follow-btn.facebook:hover {
    background: linear-gradient(135deg, #0c63d4 0%, #084a9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-follow-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-follow-btn.instagram:hover {
    background: linear-gradient(135deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a0168a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

@media (max-width: 768px) {
    .reels-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .reel-item {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .reels-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


.category-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--gray-light);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* Featured Products Section */
.featured-products {
    background: linear-gradient(180deg, #fdfcfb 0%, #f9f7f3 50%, #f7f4ed 100%) !important;
    position: relative;
}

.featured-products::before {
    background: linear-gradient(180deg, rgba(201, 168, 106, 0.03) 0%, transparent 100%);
}

/* Features Section */
.features {
    background: linear-gradient(180deg, #fdfcfb 0%, #ffffff 50%, #fdfcfb 100%) !important;
    padding: 4rem 0;
}

.features::before,
.features::after {
    display: none;
}

/* Category Showcase */
.category-showcase {
    background: linear-gradient(180deg, #faf8f5 0%, #f7f4ed 50%, #fdfcfb 100%) !important;
    position: relative;
}

.category-showcase::before,
.category-showcase::after {
    opacity: 0.5;
}

#category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.category-showcase-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(201, 168, 106, 0.15);
}

.category-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(201, 168, 106, 0.2);
    border-color: rgba(201, 168, 106, 0.4);
}

.showcase-image {
    position: relative;
    padding-top: 100%;
    background: linear-gradient(135deg, #fdfcfb 0%, #f7f4ed 100%);
    overflow: hidden;
}

.showcase-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-showcase-card:hover .showcase-image img {
    transform: scale(1.08);
}

.showcase-info {
    padding: 1.25rem 1rem;
    text-align: center;
}

.showcase-category {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.showcase-product-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
    margin: 0.75rem 0;
    line-height: 1.4;
    min-height: 2.4rem;
}

.showcase-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.price-current {
    display: flex;
    align-items: center;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
}

.price-current svg {
    color: var(--primary-gold);
}

.price-original {
    font-size: 1rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

/* Product Card Enhancements */
.product-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 168, 106, 0.2);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: var(--gray-light);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: var(--black);
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Floating Rating Badge */
.product-rating-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-rating-badge .rating-value {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 2px;
}

.product-rating-badge .rating-star {
    width: 10px;
    height: 10px;
    color: var(--primary-gold);
    fill: currentColor;
}

.product-rating-badge .review-count {
    color: var(--gray-medium);
    font-weight: 400;
    padding-left: 4px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.7rem;
}

.product-info {
    padding: 1.2rem 1rem;
    text-align: left;
}

.product-category {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--black);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    display: none;
    /* Hidden - rating now shows as floating badge */
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg,
.star {
    width: 14px;
    height: 14px;
    fill: var(--primary-gold);
}

.stars svg {
    color: var(--primary-gold);
    fill: currentColor;
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
    transition: all 0.2s ease;
}

.star svg {
    fill: var(--primary-gold);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
    transition: all 0.2s ease;
}

.star:hover svg {
    fill: #f4c430;
    filter: drop-shadow(0 0 4px rgba(244, 196, 48, 0.5));
}

.star.filled svg {
    fill: var(--primary-gold);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-current {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.price-current svg {
    width: 14px;
    height: 14px;
    margin-right: 2px;
    color: var(--black);
}

.price-original {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--gray-medium);
    text-decoration: line-through;
    font-weight: 400;
}

.price-discount {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #2E7D32;
    /* Green color */
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.order-btn {
    flex: 1;
    background: var(--black);
    color: #fff;
    border: 1px solid var(--black);
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    border-radius: 0;
    justify-content: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-btn:hover {
    background: #fff;
    color: var(--black);
}

.order-btn svg {
    width: 14px;
    height: 14px;
}

.share-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    color: var(--black);
    background: #fff;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--black);
    background: var(--black);
    color: #fff;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

/* Features */
.features {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-gold);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gold);
    border-radius: 50%;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
}

.contact-details h4 {
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: var(--black);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Product Detail Page */
/* ============================================
   PRODUCT DETAIL PAGE - MODERN REDESIGN
   ============================================ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Modern Image Gallery with Glassmorphism */
.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(201, 168, 106, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(201, 168, 106, 0.2);
    transform: translateY(-2px);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 0.75rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 106, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.thumbnail:hover {
    border-color: rgba(201, 168, 106, 0.5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.2);
}

.thumbnail.active {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.2);
}

/* Modern Product Info Section */
.breadcrumb {
    color: var(--gray-medium);
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.breadcrumb a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, rgba(201, 168, 106, 0.05) 100%);
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 106, 0.2);
}

.star {
    width: 16px;
    height: 16px;
    fill: var(--border-color);
    stroke: none;
}

.star.filled {
    fill: var(--primary-gold);
}

.rating-text {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-dark);
}

.review-count {
    color: var(--gray-medium);
    font-size: 0.8125rem;
    font-weight: 500;
}

.product-subtitle {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
}

/* Modern Price Display */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-medium);
    font-size: 1.125rem;
    font-weight: 500;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    letter-spacing: -0.02em;
}

.discount-badge {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
}

.tax-note {
    color: var(--gray-medium);
    font-size: 0.8125rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Modern Description */
.product-description {
    padding: 1.75rem 0;
    border-top: 2px solid rgba(201, 168, 106, 0.15);
    border-bottom: 2px solid rgba(201, 168, 106, 0.15);
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    font-size: 0.9375rem;
}

/* Reviews Button Styling */
.reviews-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 106, 0.15);
}

.reviews-button-container .btn {
    padding: 1rem 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 12px;
    border: 2px solid rgba(201, 168, 106, 0.4);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, rgba(201, 168, 106, 0.05) 100%);
    color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.2), 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.reviews-button-container .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.3), transparent);
    transition: left 0.6s;
}

.reviews-button-container .btn:hover::before {
    left: 100%;
}

.reviews-button-container .btn:hover {
    border-color: rgba(201, 168, 106, 0.7);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.15) 0%, rgba(201, 168, 106, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.3), 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: #B8975A;
}

.reviews-button-container .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.2);
}

/* Modern Action Buttons */
.product-detail-grid .product-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-detail-grid .product-actions .btn-block {
    flex: 1;
    width: auto;
    padding: 1.4rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 106, 0.3);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.08) 0%, rgba(201, 168, 106, 0.05) 100%);
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.product-detail-grid .product-actions .btn-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-detail-grid .product-actions .btn-block:hover::before {
    left: 100%;
}

.product-detail-grid .product-actions .btn-block:hover {
    border-color: rgba(201, 168, 106, 0.6);
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.12) 0%, rgba(201, 168, 106, 0.08) 100%);
}

.product-detail-grid .product-actions .btn-block:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.2);
}

.product-detail-grid .product-actions .btn-outline {
    flex: 0 0 auto;
    width: auto;
    padding: 1.4rem 1.6rem;
    border-radius: 14px;
    border: 2px solid rgba(201, 168, 106, 0.3);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.08) 0%, rgba(201, 168, 106, 0.05) 100%);
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.product-detail-grid .product-actions .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-detail-grid .product-actions .btn-outline:hover::before {
    left: 100%;
}

.product-detail-grid .product-actions .btn-outline:hover {
    border-color: rgba(201, 168, 106, 0.6);
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.12) 0%, rgba(201, 168, 106, 0.08) 100%);
}

.product-detail-grid .product-actions .btn-outline:active {
    transform: translateY(-1px) scale(0.95);
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.2);
}

.product-detail-grid .product-actions .btn-outline svg {
    transition: all 0.3s ease;
}

.product-detail-grid .product-actions .btn-outline:hover svg {
    transform: rotate(15deg) scale(1.1);
    stroke: #B8975A;
}

.product-detail-grid .product-actions .btn-block svg {
    transition: all 0.3s ease;
}

.product-detail-grid .product-actions .btn-block:hover svg {
    transform: scale(1.1);
    stroke: #B8975A;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(201, 168, 106, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--gray-dark);
    border: 2px solid rgba(201, 168, 106, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(201, 168, 106, 0.05);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.2);
}

/* Modern Secure Checkout Badge */
.product-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-secure svg {
    color: var(--primary-gold);
}

/* Modern Specifications Table */
.product-specifications {
    margin-bottom: 2.5rem;
}

.product-specifications h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.product-specifications table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 106, 0.15);
}

.product-specifications tr {
    transition: background-color 0.2s;
}

.product-specifications tr:hover {
    background-color: rgba(201, 168, 106, 0.05);
}

.product-specifications td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(201, 168, 106, 0.1);
}

.product-specifications tr:last-child td {
    border-bottom: none;
}

.product-specifications td:first-child {
    font-weight: 600;
    width: 35%;
    color: var(--gray-dark);
}

.product-specifications td:last-child {
    color: var(--gray-medium);
}

.spec-note {
    color: var(--gray-medium);
    font-size: 0.8125rem;
    font-style: italic;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(201, 168, 106, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

/* Modern Policy Buttons - Compact Row Design */
.product-policies {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.policy-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid rgba(201, 168, 106, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-align: center;
    white-space: nowrap;
}

.policy-btn:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.08) 0%, rgba(201, 168, 106, 0.04) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.2);
}

.policy-btn.active {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.4);
}

.policy-btn.active svg {
    stroke: white;
}

.policy-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    stroke: var(--primary-gold);
}

.policy-btn.active svg {
    transform: scale(1.1);
}

.policy-content {
    display: none;
    margin-top: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(201, 168, 106, 0.2);
    border-radius: 12px;
    animation: slideDown 0.3s ease;
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.1);
}

.policy-content.active {
    display: block;
}

.policy-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--primary-gold);
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-content li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.7;
    color: var(--gray-dark);
}

.policy-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.125rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Section Redesign */
.product-reviews-section {
    grid-column: 1 / -1;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 2px solid rgba(201, 168, 106, 0.15);
}
}

.product-reviews-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--gray-dark);
}

/* Modern Reviews Summary Card */
.reviews-summary {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: 0 4px 20px rgba(201, 168, 106, 0.08);
}

.average-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, transparent 100%);
    border-radius: 12px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-count {
    color: var(--gray-medium);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Modern Review Cards */
.reviews-list {
    display: grid;
    gap: 1.25rem;
}

.review-item {
    padding: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(201, 168, 106, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-item:hover {
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.15);
    border-color: rgba(201, 168, 106, 0.3);
    transform: translateY(-2px);
}

.hidden-review {
    display: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
    border: 3px solid white;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.25rem;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-dark);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.verified-badge svg {
    width: 12px;
    height: 12px;
}

.review-date {
    color: var(--gray-medium);
    font-size: 0.8125rem;
    font-weight: 600;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-text {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.reviews-button-container {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews-button-container .btn {
    min-width: 220px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-button-container .btn:hover {
    box-shadow: 0 6px 24px rgba(201, 168, 106, 0.4);
    transform: translateY(-2px);
}

/* Facebook Reviews Grid */
/* Reviews Carousel */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 50px;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-slide.active {
    display: flex;
    justify-content: center;
}

.review-slide iframe {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-images-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-images-grid {
        grid-template-columns: repeat(3, 1fr);
        opacity: 0.2;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Mobile Menu Overlay */
    .nav-links {
        display: flex !important;
        /* Override display: none */
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 168, 106, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        color: var(--gray-dark) !important;
        padding: 1rem 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(247, 244, 237, 0.5);
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        font-size: 0.95rem !important;
        padding: 0.75rem 1rem !important;
    }

    /* Menu overlay backdrop */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Hamburger animation */
    .mobile-menu-btn.active svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        transform-origin: center;
    }

    .mobile-menu-btn.active svg line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        transform-origin: center;
    }

    .mobile-menu-btn svg line {
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .categories-grid,
    .products-grid,
    .features-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-carousel-wrapper {
        padding: 0 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .policy-btn {
        flex-direction: column;
        font-size: 0.75rem;
    }
}

/* Smartphone Optimizations - 40% Size Reduction */
@media (max-width: 640px) {

    /* Typography - 40% reduction */
    html {
        font-size: 14px;
        /* Base 16px reduced to ~14px */
    }

    h1,
    .hero-title {
        font-size: 2.1rem !important;
        /* 3.5rem → 2.1rem */
    }

    h2,
    .section-title {
        font-size: 1.65rem !important;
        /* 2.75rem → 1.65rem */
    }

    h3 {
        font-size: 1.2rem !important;
        /* 2rem → 1.2rem */
    }

    h4 {
        font-size: 0.9rem !important;
        /* 1.5rem → 0.9rem */
    }

    p,
    .section-description {
        font-size: 0.85rem !important;
        /* Base 1rem → 0.85rem */
    }

    .section-subtitle {
        font-size: 0.7rem !important;
        /* 0.8125rem → ~0.5rem */
        letter-spacing: 1.5px;
        margin-bottom: 0.3rem !important;
    }

    /* Header - 40% reduction + Show Menu Button */
    .header {
        padding: 0;
    }

    .nav-container {
        padding: 0.45rem 1.2rem;
        /* 0.75rem 2rem → 0.45rem 1.2rem */
    }

    .logo-img {
        height: 36px !important;
        /* 60px → 36px */
    }

    .header.transparent .logo-img {
        height: 40px !important;
        /* 68px → 40px */
    }

    .nav-links {
        display: none;
        /* Hide desktop nav */
    }

    .mobile-menu-btn {
        display: block !important;
        /* Show mobile menu button */
        padding: 0.3rem !important;
    }

    .mobile-menu-btn svg {
        width: 20px !important;
        height: 20px !important;
    }

    .icon-btn {
        padding: 0.3rem;
        /* 0.5rem → 0.3rem */
    }

    .icon-btn svg {
        width: 18px;
        /* 22px → 13px */
        height: 18px;
    }

    .whatsapp-btn {
        padding: 0.4rem !important;
        /* 0.6rem → 0.36rem */
    }

    /* Hero Section - 40% reduction */
    .hero {
        min-height: 50vh !important;
        padding: 1.8rem 0 !important;
        /* 3rem → 1.8rem */
        margin-top: 0 !important;
        /* Remove margin to prevent white gap */
        padding-top: 50px !important;
        /* Add padding instead for header clearance */
    }

    .hero-content {
        padding: 1.8rem 1.2rem !important;
        /* 3rem 2rem → 1.8rem 1.2rem */
    }

    .hero-description {
        font-size: 0.85rem !important;
        max-width: 100%;
        margin: 0.6rem 0 !important;
        line-height: 1.5;
    }

    /* Hero Stats - Single Row */
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        gap: 0.3rem !important;
        /* Reduced gap */
        margin: 1.2rem 0 !important;
        flex-wrap: nowrap !important;
    }

    .hero-stat {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .stat-number {
        font-size: 1rem !important;
        /* Further reduced for single row */
        margin-bottom: 0.15rem !important;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 0.55rem !important;
        /* Further reduced */
        line-height: 1.2;
    }

    .hero-stat-divider {
        height: 30px !important;
        width: 1px;
        margin: 0 !important;
    }

    /* Hero Actions - Side by Side */
    .hero-actions {
        margin-top: 1.2rem !important;
        gap: 0.5rem !important;
        flex-direction: row !important;
        display: flex !important;
    }

    .hero-actions .btn-large {
        flex: 1 !important;
        padding: 0.6rem 0.8rem !important;
        font-size: 0.7rem !important;
        white-space: nowrap;
    }

    .hero-actions .btn-outline {
        flex: 1 !important;
    }

    /* Hero Social - Compact */
    .hero-social-section {
        margin-top: 1.2rem !important;
        padding: 0.25rem 0.5rem !important;
        gap: 0.4rem !important;
        font-size: 0.65rem !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hero-social {
        padding: 0.25rem 0.5rem !important;
        gap: 0.35rem !important;
        max-width: calc(100vw - 2.4rem) !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        margin: 0 auto !important;
    }

    .hero-social-followers {
        gap: 0.25rem !important;
    }

    .social-icon-heart,
    .hero-social-heart {
        width: 11px !important;
        height: 11px !important;
        flex-shrink: 0 !important;
    }

    .followers-info {
        display: flex !important;
        align-items: center !important;
        gap: 0.15rem !important;
    }

    .followers-count {
        font-size: 0.8rem !important;
        line-height: 1 !important;
    }

    .followers-plus {
        font-size: 0.8rem !important;
        line-height: 1 !important;
    }

    .followers-label {
        font-size: 0.45rem !important;
        display: inline !important;
        margin-left: 0.15rem !important;
        text-transform: uppercase !important;
    }

    .hero-social-divider {
        height: 14px !important;
        margin: 0 0.25rem !important;
        flex-shrink: 0 !important;
    }

    .hero-social-links {
        gap: 0.25rem !important;
        flex-shrink: 0 !important;
    }

    .social-link,
    .hero-social-link {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    .social-link svg {
        width: 11px !important;
        height: 11px !important;
    }

    /* Decorative SVGs - 40% reduction */
    .hero-decoration {
        width: 18px !important;
        /* 30px → 18px */
        height: 18px !important;
    }

    .hero-decoration.large {
        width: 30px !important;
        /* 50px → 30px */
        height: 30px !important;
    }

    /* Buttons - 40% reduction */
    .btn {
        padding: 0.54rem 1.2rem !important;
        /* 0.9rem 2rem → 0.54rem 1.2rem */
        font-size: 0.75rem !important;
        /* 0.875rem → 0.525rem */
        border-radius: 8px !important;
        /* Slightly reduced */
    }

    .btn-large {
        padding: 0.75rem 1.8rem !important;
        /* 1.25rem 3rem → 0.75rem 1.8rem */
        font-size: 0.85rem !important;
    }

    /* Sections - 40% reduction */
    .section {
        padding: 2.4rem 0 !important;
        /* 4rem → 2.4rem */
    }

    .section.bg-light {
        padding: 1.5rem 0 !important;
        /* 2.5rem → 1.5rem */
    }

    .container {
        padding: 0 1.2rem !important;
        /* 0 2rem → 0 1.2rem */
    }

    /* Products Grid - 2 in a row */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }

    .product-card {
        border-radius: 10px !important;
        padding: 0.2rem !important;
    }

    .product-image {
        height: 130px !important;
        border-radius: 8px !important;
    }

    /* Floating Rating Badge - Mobile */
    .product-rating-badge {
        top: 0.5rem !important;
        left: 0.5rem !important;
        padding: 0.25rem 0.4rem !important;
        font-size: 0.65rem !important;
        gap: 0.25rem !important;
        border-radius: 4px !important;
    }

    .product-rating-badge .rating-star {
        width: 10px !important;
        height: 10px !important;
    }

    .product-rating-badge .review-count {
        font-size: 0.6rem !important;
        padding-left: 0.25rem !important;
    }

    .product-badge {
        top: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.2rem 0.4rem !important;
        font-size: 0.6rem !important;
        z-index: 10 !important;
    }

    .product-info {
        padding: 0.1rem 0.1rem !important;
    }

    .product-category {
        font-size: 0.5rem !important;
        padding: 0.1rem 0.2rem !important;
        margin-bottom: 0.05rem !important;
        letter-spacing: 0.5px !important;
        border-width: 0.5px !important;
    }

    .product-name {
        font-size: 0.7rem !important;
        margin-bottom: 0.05rem !important;
        line-height: 1.1 !important;
    }

    .product-card .product-price {
        font-size: 0.8rem !important;
        margin-top: 0.2rem !important;
        margin-bottom: 0.5rem !important;
        flex-wrap: nowrap !important;
        gap: 0.3rem !important;
    }

    .product-card .price-current {
        font-size: 0.9rem !important;
    }

    .product-card .price-original,
    .product-card .price-discount {
        font-size: 0.75rem !important;
    }

    .product-card .product-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
    }

    .order-btn {
        flex: 1 !important;
        padding: 0.4rem 0.5rem !important;
        font-size: 0.65rem !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .share-btn {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
        padding: 0 !important;
    }

    .share-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Categories Grid - 2 in a row */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }

    /* Category Showcase - 2 in a row */
    #category-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }

    .showcase-category {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    .showcase-info {
        padding: 0.8rem 0.5rem !important;
    }

    .category-card {
        padding: 0.6rem !important;
        border-radius: 10px !important;
    }

    .category-icon {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .category-name {
        font-size: 0.8rem !important;
    }

    .category-count {
        font-size: 0.65rem !important;
    }

    /* Features/Advantages Grid - 2 in a row */
    .features-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.7rem !important;
    }

    .feature-card,
    .advantage-card {
        padding: 1rem !important;
        border-radius: 10px !important;
    }

    .feature-icon,
    .advantage-icon {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0.5rem !important;
        font-size: 1.5rem !important;
    }

    .feature-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .feature-title,
    .advantage-title {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
    }

    .feature-description,
    .advantage-description {
        font-size: 0.65rem !important;
        line-height: 1.4;
    }

    /* Reels Section */
    .reels-wrapper {
        margin: 0.9rem 1.2rem 0 !important;
        /* 1.5rem 2rem → 0.9rem 1.2rem */
    }

    .reels-container {
        gap: 0.6rem !important;
        /* 1rem → 0.6rem */
        padding-bottom: 0.3rem !important;
    }

    .reel-item {
        flex: 0 0 112px !important;
        /* 187px → 112px (40% reduction) */
        height: 200px !important;
        /* Maintain aspect ratio */
        border-radius: 12px !important;
        /* 20px → 12px */
    }

    .reel-nav-btn {
        width: 32px !important;
        /* 48px → ~29px */
        height: 32px !important;
        font-size: 1rem !important;
        /* 1.25rem → 0.75rem */
    }

    /* Social Follow Section - Buttons Side by Side */
    .social-follow-section {
        margin-top: 0.9rem !important;
        padding: 0.75rem 0.6rem !important;
        border-radius: 10px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .social-follow-section .follow-text {
        font-size: 0.7rem !important;
        margin-bottom: 0.6rem !important;
        padding: 0 0.2rem !important;
        line-height: 1.4 !important;
    }

    .social-follow-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .social-follow-btn {
        flex: 1 !important;
        padding: 0.5rem 0.4rem !important;
        font-size: 0.65rem !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        gap: 0.35rem !important;
        min-width: 0 !important;
        justify-content: center !important;
    }

    .social-follow-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0 !important;
    }

    .social-btns {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
    }

    .social-btn {
        flex: 1 !important;
        padding: 0.5rem 0.7rem !important;
        font-size: 0.65rem !important;
        border-radius: 8px !important;
        white-space: nowrap;
    }

    .social-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 2.4rem 0 !important;
    }

    .why-choose-grid {
        gap: 0.7rem !important;
    }

    .feature-large-card {
        padding: 1.2rem !important;
        border-radius: 12px !important;
    }

    .feature-large-icon {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0.6rem !important;
    }

    .feature-large-title {
        font-size: 0.9rem !important;
    }

    .feature-large-description {
        font-size: 0.7rem !important;
    }

    .style-guide-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }

    .occasion-card {
        padding: 0.8rem !important;
        border-radius: 8px !important;
    }

    .occasion-emoji {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
    }

    .occasion-name {
        font-size: 0.65rem !important;
    }

    /* Benefits Banner */
    .benefits-banner {
        padding: 1.2rem 1rem !important;
        border-radius: 12px !important;
        margin: 1.2rem 0 !important;
    }

    .benefits-banner h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }

    .benefits-list {
        gap: 0.5rem !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .benefit-item {
        font-size: 0.65rem !important;
    }

    .benefit-item svg {
        width: 12px !important;
        height: 12px !important;
        min-width: 12px !important;
    }

    /* CTA Section */
    .cta-section {
        padding: 1.5rem 0 !important;
    }

    .cta-section h3 {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
    }

    .cta-section .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.7rem !important;
    }

    /* Footer */
    .footer {
        padding: 2.4rem 0 0.9rem !important;
        /* 4rem 0 1.5rem → 2.4rem 0 0.9rem */
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .footer-section h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    .footer-section p,
    .footer-links li a {
        font-size: 0.7rem !important;
        line-height: 1.6;
    }

    .social-links {
        gap: 0.5rem !important;
    }

    .social-link {
        width: 28px !important;
        height: 28px !important;
    }

    .social-link svg {
        width: 14px !important;
        height: 14px !important;
    }

    .footer-bottom {
        padding-top: 0.9rem !important;
        font-size: 0.65rem !important;
    }

    /* Contact Page */
    .contact-grid {
        gap: 1.2rem !important;
    }

    .contact-item {
        margin-bottom: 1.2rem !important;
    }

    .contact-icon {
        width: 32px !important;
        height: 32px !important;
        margin-right: 0.7rem !important;
    }

    .contact-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .contact-details h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
    }

    .contact-details p {
        font-size: 0.7rem !important;
    }

    /* FAQ Page */
    .faq-grid {
        gap: 0.6rem !important;
    }

    .faq-item {
        margin-bottom: 0.6rem !important;
        border-radius: 10px !important;
    }

    .faq-question {
        padding: 0.8rem 1rem !important;
    }

    .faq-question h3 {
        font-size: 0.8rem !important;
    }

    .faq-icon {
        width: 14px !important;
        height: 14px !important;
    }

    .faq-answer {
        padding: 0.8rem 1rem !important;
        font-size: 0.7rem !important;
    }

    /* Product Detail Page */
    .product-detail-grid {
        gap: 1.2rem !important;
        /* 2rem → 1.2rem */
    }

    .product-images {
        border-radius: 10px !important;
    }

    .product-detail-info h1 {
        margin-bottom: 0.6rem !important;
    }

    .product-price-section {
        margin: 0.9rem 0 !important;
    }

    .product-detail-grid .product-price {
        font-size: 1.3rem !important;
    }

    .product-actions {
        gap: 0.6rem !important;
        margin-top: 1.5rem !important;
    }

    /* Trending Page Stats */
    .stat-number {
        font-size: 1.5rem !important;
        /* 2.5rem → 1.5rem */
    }

    /* Search Bar */
    #search-input {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }

    /* Misc Reductions */
    .loading-spinner {
        padding: 2.4rem 0 !important;
    }

    .spinner {
        width: 32px !important;
        height: 32px !important;
        border-width: 2px !important;
    }

    /* Page Headers */
    section[style*="margin-top: 80px"] {
        margin-top: 50px !important;
        padding: 2.4rem 0 !important;
    }

    /* Gradient overlays - reduced */
    div[style*="height: 120px"] {
        height: 72px !important;
    }

    div[style*="height: 100px"] {
        height: 60px !important;
    }

    /* Reviews Section */
    .reviews-carousel-wrapper {
        padding: 0 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .reviews-carousel {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .review-slide {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .review-slide iframe {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .carousel-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .carousel-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    .carousel-btn.prev {
        left: 0 !important;
    }

    .carousel-btn.next {
        right: 0 !important;
    }

    .review-card {
        padding: 0.8rem !important;
        max-width: 100% !important;
    }

    .review-header {
        margin-bottom: 0.5rem !important;
    }

    .reviewer-name {
        font-size: 0.8125rem !important;
    }

    .review-stars {
        font-size: 0.7rem !important;
    }

    .review-text {
        font-size: 0.8125rem !important;
        line-height: 1.6;
    }

    /* Reviews Section Title */
    .reviews-section .section-title {
        font-size: 1.4rem !important;
    }

    .reviews-section .section-subtitle {
        font-size: 0.65rem !important;
    }

    /* Product Reviews Section Mobile */
    .product-reviews-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.75rem !important;
    }

    .reviews-summary {
        padding: 1.5rem !important;
        margin-bottom: 1.75rem !important;
    }

    .rating-display {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1rem !important;
        text-align: center !important;
    }

    .rating-number {
        font-size: 2.75rem !important;
    }

    .rating-details {
        gap: 0.35rem !important;
    }

    .review-count {
        font-size: 0.75rem !important;
    }

    .reviews-list {
        gap: 1rem !important;
    }

    .review-item {
        padding: 1.25rem !important;
    }

    .reviewer-avatar {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
    }

    .reviewer-info {
        gap: 0.75rem !important;
    }

    .reviewer-name {
        font-size: 0.9375rem !important;
    }

    .verified-badge {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.625rem !important;
    }

    .review-date {
        font-size: 0.75rem !important;
    }

    .review-rating {
        gap: 0.2rem !important;
    }

    .review-text {
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
    }

    .reviews-button-container .btn {
        min-width: 180px !important;
        padding: 0.875rem 1.5rem !important;
    }

    /* Product Detail Page Mobile */
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .product-images {
        position: relative !important;
        top: 0 !important;
    }

    .main-image {
        border-radius: 16px !important;
        margin-bottom: 1rem !important;
    }

    .image-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)) !important;
        gap: 0.5rem !important;
    }

    .thumbnail {
        border-radius: 10px !important;
    }

    .product-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.875rem !important;
    }

    .product-rating {
        padding: 0.4rem 0.875rem !important;
        gap: 0.4rem !important;
        margin-bottom: 1.25rem !important;
    }

    .star {
        width: 14px !important;
        height: 14px !important;
    }

    .rating-text {
        font-size: 0.875rem !important;
    }

    .review-count {
        font-size: 0.75rem !important;
    }

    .product-subtitle {
        padding: 0.4rem 1rem !important;
        font-size: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    .product-price {
        gap: 0.75rem !important;
        margin-bottom: 0.625rem !important;
    }

    .current-price {
        font-size: 2rem !important;
    }

    .original-price {
        font-size: 1rem !important;
    }

    .discount-badge {
        padding: 0.3rem 0.7rem !important;
        font-size: 0.75rem !important;
    }

    .tax-note {
        font-size: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    .product-description {
        padding: 1.25rem 0 !important;
        margin-bottom: 1.5rem !important;
        font-size: 0.875rem !important;
    }

    .product-detail-grid .product-actions {
        flex-direction: row !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
        flex-wrap: wrap !important;
    }

    .product-detail-grid .product-actions .btn-block {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.9375rem !important;
        border-radius: 10px !important;
    }

    .product-detail-grid .product-actions .btn-outline {
        flex: 0 0 auto !important;
        padding: 0.875rem 1rem !important;
        border-radius: 10px !important;
    }

    .product-secure {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
        font-size: 0.875rem !important;
        gap: 0.625rem !important;
    }

    .product-specifications {
        margin-bottom: 2rem !important;
    }

    .product-specifications h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    .product-specifications table {
        border-radius: 10px !important;
    }

    .product-specifications td {
        padding: 0.875rem 1rem !important;
        font-size: 0.875rem !important;
    }

    .product-specifications td:first-child {
        width: 40% !important;
    }

    .spec-note {
        font-size: 0.75rem !important;
        padding: 0.625rem !important;
    }

    .product-policies {
        flex-direction: row !important;
        gap: 0.4rem !important;
        margin-bottom: 1.25rem !important;
    }

    .policy-btn {
        flex: 1 !important;
        min-width: unset !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0.75rem 0.35rem !important;
        font-size: 0.7rem !important;
        text-align: center !important;
        gap: 0.35rem !important;
    }

    .policy-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .policy-content {
        padding: 1.25rem !important;
        margin-top: 1rem !important;
    }

    .policy-content h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .policy-content li {
        font-size: 0.875rem !important;
        padding: 0.5rem 0 !important;
        padding-left: 1.5rem !important;
    }

    .product-reviews-section {
        padding-top: 2rem !important;
        margin-top: 2rem !important;
    }
}

/ *   I m a g e   Z o o m   M o d a l   * /     . i m a g e - m o d a l    {
                 d i s p l a y :    n o n e ;
                 p o s i t i o n :    f i x e d ;
                 z - i n d e x :    2 0 0 0 ;
                 p a d d i n g - t o p :    5 0 p x ;
                 l e f t :    0 ;
                 t o p :    0 ;
                 w i d t h :    1 0 0 % ;
                 h e i g h t :    1 0 0 % ;
                 o v e r f l o w :    a u t o ;
                 b a c k g r o u n d - c o l o r :    r g b a ( 0 ,    0 ,    0 ,    0 . 9 ) ;
                 b a c k d r o p - f i l t e r :    b l u r ( 5 p x ) ;
         
}

         . i m a g e - m o d a l - c o n t e n t    {
                 m a r g i n :    a u t o ;
                 d i s p l a y :    b l o c k ;
                 m a x - w i d t h :    9 0 % ;
                 m a x - h e i g h t :    8 5 v h ;
                 o b j e c t - f i t :    c o n t a i n ;
                 b o r d e r :    2 p x   s o l i d   v a r ( - - p r i m a r y - g o l d ) ;
                 b o x - s h a d o w :    0   0   2 0 p x   r g b a ( 2 0 1 ,    1 6 8 ,    1 0 6 ,    0 . 3 ) ;
                 a n i m a t i o n :    z o o m I n   0 . 3 s   e a s e ;
         
}

         . c l o s e - m o d a l    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    2 0 p x ;
                 r i g h t :    3 5 p x ;
                 c o l o r :    # f 1 f 1 f 1 ;
                 f o n t - s i z e :    4 0 p x ;
                 f o n t - w e i g h t :    b o l d ;
                 t r a n s i t i o n :    0 . 3 s ;
                 c u r s o r :    p o i n t e r ;
                 z - i n d e x :    2 0 0 1 ;
         
}

         . c l o s e - m o d a l : h o v e r ,
     . c l o s e - m o d a l : f o c u s    {
                 c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
                 t e x t - d e c o r a t i o n :    n o n e ;
                 c u r s o r :    p o i n t e r ;
         
}

         @ k e y f r a m e s   z o o m I n    {
                 f r o m    {
         t r a n s f o r m :  s c a l e ( 0 . 8 ) ;
           o p a c i t y :    0 ;
         
    }

                 t o    {
         t r a n s f o r m :  s c a l e ( 1 ) ;
           o p a c i t y :    1 ;
         
    }

         
}

         / *   A d d   c u r s o r   p o i n t e r   t o   p r o d u c t   i m a g e s   t o   i n d i c a t e   z o o m   * /     . p r o d u c t - i m a g e - c o n t a i n e r   i m g ,
     . t h u m b n a i l - c o n t a i n e r   i m g    {
                 c u r s o r :    p o i n t e r ;
         
}

     