/* ============================================
   MAGORA – Premium E-Commerce Design System
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Colors — Brand palette derived from MAGORA logo */
    --plum-deep: #380028;   /* deep burgundy wine */
    --plum: #480030;        /* primary burgundy */
    --plum-light: #580038;  /* slightly lighter burgundy */
    --purple: #780048;      /* deeper magenta-wine */
    --purple-light: #A86A88;
    --purple-muted: #C9A0DC;
    --wine: #6A0038;
    --gold: #B88030;        /* warm amber gold from logo */
    --gold-light: #C89040;
    --gold-pale: #E8D5A0;
    --blush: #F5E8EA;
    --blush-deep: #EACED3;
    --ivory: #FDF8F4;
    --white: #FFFFFF;
    --off-white: #FAF7F5;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --gray-dark: #666666;
    --gray: #888888;
    --gray-light: #B0B0B0;
    --gray-lighter: #E8E5E3;
    --gray-bg: #F5F3F1;
    --success: #4CAF50;
    --error: #E74C3C;
    --warning: #F39C12;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-2xl: 0 24px 64px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(184,128,48,0.2);
    --shadow-purple: 0 4px 20px rgba(72,0,48,0.2);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-whatsapp: 450;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum-deep);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72,0,48,0.3);
}

.btn-outline {
    border: 2px solid var(--plum);
    color: var(--plum);
    background: transparent;
}

.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--plum);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,128,48,0.3);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* --- Section Base --- */
.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--blush);
    color: var(--plum);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.section-badge.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--plum-deep), var(--plum-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--plum-deep), var(--plum));
    color: var(--white);
    text-align: center;
    padding: 0.6rem var(--container-padding);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: var(--z-sticky);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.announcement-content strong {
    color: var(--gold-light);
}

.announcement-close {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: color var(--transition-fast);
}

.announcement-close:hover {
    color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--plum-deep), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1;
    margin-top: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-light), var(--gold));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--plum);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link .fa-chevron-down {
    font-size: 0.6rem;
    transition: transform var(--transition-base);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 720px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(0,0,0,0.06);
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover > .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
}

.dropdown-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--blush);
}

.dropdown-col a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--charcoal-light);
    transition: all var(--transition-fast);
}

.dropdown-col a:hover {
    color: var(--plum);
    padding-left: 0.5rem;
}

.dropdown-featured {
    position: relative;
}

.dropdown-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 180px;
}

.dropdown-featured-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--plum-light), var(--gold));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: var(--space-sm);
}

.dropdown-featured-placeholder i {
    font-size: 2.5rem;
}

.dropdown-featured-placeholder span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.3;
}

.dropdown-featured-link {
    display: block;
    text-align: center;
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--plum);
    font-size: 0.9rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--charcoal);
    transition: all var(--transition-base);
    position: relative;
}

.header-icon-btn:hover {
    background: var(--blush);
    color: var(--plum);
}

.header-icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform var(--transition-spring);
}

.header-icon-btn .badge.show {
    transform: scale(1);
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    padding: var(--space-xl) 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-bg);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: border-color var(--transition-base);
}

.search-bar:focus-within {
    border-color: var(--plum-light);
}

.search-bar i {
    color: var(--gray);
    font-size: 1.1rem;
}

.search-bar input {
    flex: 1;
    font-size: 1rem;
    color: var(--charcoal);
}

.search-bar input::placeholder {
    color: var(--gray-light);
}

.search-bar button {
    color: var(--gray);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.search-bar button:hover {
    color: var(--charcoal);
}

.search-suggestions {
    margin-top: var(--space-lg);
}

.search-suggestions h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
    font-weight: 600;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.suggestion-tags button {
    padding: 0.4rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--charcoal-light);
    transition: all var(--transition-base);
}

.suggestion-tags button:hover {
    border-color: var(--plum);
    color: var(--plum);
    background: var(--blush);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: calc(var(--z-overlay) + 10);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--gray-lighter);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.mobile-menu-header .logo-name {
    font-size: 1.3rem;
}

.mobile-menu-header button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--charcoal);
}

.mobile-menu-body {
    padding: var(--space-lg);
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.mobile-search i { color: var(--gray); }
.mobile-search input {
    flex: 1;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem var(--space-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: var(--blush);
    color: var(--plum);
}

.accordion-content {
    display: none;
    padding-left: var(--space-xl);
}

.accordion-content a {
    display: block;
    padding: 0.6rem var(--space-md);
    font-size: 0.9rem;
    color: var(--gray-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.accordion-content a:hover {
    color: var(--plum);
    background: var(--blush);
}

.mobile-menu-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--gray-lighter);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--plum);
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--plum-deep);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
    width: 100%;
    height: 100%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: var(--radius-full);
    opacity: 0.3;
    animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(-20px, -30px); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-5xl) 0;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-ctas .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.hero-ctas .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(184,128,48,0.4);
}

.hero-ctas .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.hero-ctas .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-stat-label .fa-star {
    color: var(--gold-light);
    font-size: 0.7rem;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 480px;
    width: 100%;
}

.hero-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform var(--transition-slow);
}

.hero-img-card:hover {
    transform: scale(1.05) rotate(-2deg);
}

.hero-img-card.card-1 {
    transform: translateY(20px);
}

.hero-img-card.card-2 {
    transform: translateY(-10px);
}

.hero-img-card.card-3 {
    transform: translateY(10px);
}

.hero-img-card.card-4 {
    transform: translateY(-20px);
}

.hero-img-card.card-1:hover { transform: translateY(20px) scale(1.05) rotate(-2deg); }
.hero-img-card.card-2:hover { transform: translateY(-10px) scale(1.05) rotate(2deg); }
.hero-img-card.card-3:hover { transform: translateY(10px) scale(1.05) rotate(2deg); }
.hero-img-card.card-4:hover { transform: translateY(-20px) scale(1.05) rotate(-2deg); }

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.8);
}

.hero-img-card:nth-child(1) .hero-img-placeholder { background: linear-gradient(135deg, #580038, #780048); }
.hero-img-card:nth-child(2) .hero-img-placeholder { background: linear-gradient(135deg, #B88030, #C89040); }
.hero-img-card:nth-child(3) .hero-img-placeholder { background: linear-gradient(135deg, #C9A0DC, #B57EDC); }
.hero-img-card:nth-child(4) .hero-img-placeholder { background: linear-gradient(135deg, #8B4557, #A0616A); }

.hero-img-placeholder i {
    font-size: 2.5rem;
}

.hero-img-placeholder span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    padding: var(--space-lg) 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-lighter);
    border-bottom: 1px solid var(--gray-lighter);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: var(--space-3xl);
    padding-right: var(--space-3xl);
    white-space: nowrap;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-dark);
    letter-spacing: 0.04em;
}

.marquee-content .fa-star {
    color: var(--gold);
    font-size: 0.6rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all var(--transition-slow);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card-bg {
    transform: scale(1.05);
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
    color: var(--white);
}

.category-count {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
    display: block;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: 0.3rem;
}

.category-card p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap var(--transition-base);
}

.category-card:hover .category-cta {
    gap: var(--space-md);
}

.category-card-icon {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    z-index: 2;
}

.category-card:hover .category-card-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1) rotate(10deg);
}

.category-large {
    grid-row: span 2;
    min-height: 100%;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-dark);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition-base);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-slow);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-bg);
}

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

.product-card:hover .product-card-image img,
.product-card:hover .product-card-image .product-placeholder {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: transform var(--transition-slow);
}

.product-placeholder i {
    font-size: 2.5rem;
    color: var(--plum-light);
    opacity: 0.4;
}

.product-placeholder span {
    font-size: 0.8rem;
    color: var(--gray);
}

.product-card-badges {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 3;
}

.product-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge.sale {
    background: var(--error);
    color: var(--white);
}

.product-badge.new {
    background: var(--plum);
    color: var(--white);
}

.product-badge.hot {
    background: var(--gold);
    color: var(--white);
}

.product-card-actions-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 3;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-card-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    font-size: 0.85rem;
}

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

.product-action-btn.wishlisted {
    background: var(--error);
    color: var(--white);
}

.product-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    display: flex;
    gap: var(--space-sm);
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-card-bottom {
    opacity: 1;
    transform: translateY(0);
}

.product-card-bottom .btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.78rem;
}

.product-card-info {
    padding: var(--space-lg);
}

.product-card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: var(--space-xs);
}

.product-card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.stars {
    display: flex;
    gap: 1px;
    color: var(--gold);
    font-size: 0.75rem;
}

.rating-count {
    font-size: 0.75rem;
    color: var(--gray);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--plum-deep);
}

.price-original {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--error);
    background: #FDEAEA;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}

/* ============================================
   STORY BANNER
   ============================================ */
.story-banner {
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.story-banner-bg {
    position: absolute;
    inset: 0;
}

.story-pattern {
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(88,0,56,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184,128,48,0.2) 0%, transparent 50%);
}

.story-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.story-text { color: var(--white); }

.story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: var(--space-xl);
}

.story-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-2xl);
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.story-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184,128,48,0.2);
    border-radius: var(--radius-full);
    color: var(--gold-light);
}

.story-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: 0.1rem;
}

.story-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Story Visual */
.story-visual {
    display: flex;
    justify-content: center;
}

.story-image-stack {
    position: relative;
    width: 380px;
    height: 420px;
}

.story-img {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.story-img-1 {
    width: 260px;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.story-img-2 {
    width: 220px;
    height: 280px;
    top: 60px;
    right: 0;
    z-index: 1;
}

.story-img-3 {
    width: 160px;
    height: 160px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.story-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img-1 .story-img-placeholder { background: linear-gradient(135deg, #580038, #780048); color: rgba(255,255,255,0.5); font-size: 3rem; }
.story-img-2 .story-img-placeholder { background: linear-gradient(135deg, #B88030, #C89040); color: rgba(255,255,255,0.5); font-size: 3rem; }
.story-img-3 .story-img-placeholder { background: linear-gradient(135deg, #C9A0DC, #B57EDC); color: rgba(255,255,255,0.5); font-size: 2.5rem; }

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-section {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.offer-card {
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base);
}

.offer-card:hover {
    transform: translateY(-4px);
}

.offer-card-1 {
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    color: var(--white);
}

.offer-card-2 {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
}

.offer-card-3 {
    background: linear-gradient(135deg, #8B4557, #A0616A);
    color: var(--white);
}

.offer-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
    display: block;
}

.offer-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: var(--space-xs);
}

.offer-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.offer-code {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    font-family: monospace;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.offer-visual {
    font-size: 3rem;
    opacity: 0.2;
}

.offer-card .btn-sm {
    border-color: rgba(255,255,255,0.5);
}

.offer-card .btn-outline-light:hover {
    background: var(--white);
}

.offer-card-1 .btn-outline-light:hover { color: var(--plum); }
.offer-card-2 .btn-outline-light:hover { color: var(--gold); }
.offer-card-3 .btn-outline-light:hover { color: #8B4557; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: var(--space-xl);
    max-width: 240px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-purple);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 5rem;
    color: var(--gray-lighter);
    font-size: 1.2rem;
}

/* ============================================
   LOCAL DELIVERY SECTION
   ============================================ */
.local-section {
    background: var(--off-white);
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.local-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.local-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.pin-checker {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-2xl);
}

.pin-checker h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.pin-input-group {
    display: flex;
    gap: var(--space-sm);
}

.pin-input-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.pin-input-group input:focus {
    border-color: var(--plum-light);
}

.pin-input-group .btn {
    white-space: nowrap;
}

.pin-result {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.5em;
}

.pin-result.success { color: var(--success); }
.pin-result.error { color: var(--error); }
.pin-result.info { color: var(--gray-dark); }

.local-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.local-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.local-feature i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    color: var(--plum);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

/* Map */
.local-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #E8E5E3, #D0CCC8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay-content {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.map-overlay-content i {
    font-size: 2.5rem;
    color: var(--plum);
    margin-bottom: var(--space-md);
}

.map-overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.map-overlay-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light), var(--gold));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: rgba(255,255,255,0.6);
}

.about-img-placeholder i { font-size: 4rem; }
.about-img-placeholder span {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-floating-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    color: var(--plum);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
}

.about-floating-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--plum-deep);
}

.about-floating-card small {
    font-size: 0.8rem;
    color: var(--gray);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-xl);
}

.about-desc {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.about-value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--plum-deep);
    transition: all var(--transition-base);
}

.about-value:hover {
    background: var(--blush);
}

.about-value-icon {
    color: var(--gold);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: var(--off-white);
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-md) 0;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 360px;
    max-width: 360px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--plum-deep);
}

.review-product {
    font-size: 0.78rem;
    color: var(--gray);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: var(--gold);
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.7;
    font-style: italic;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.review-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-full);
    color: var(--charcoal);
    transition: all var(--transition-base);
}

.review-nav-btn:hover {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    background: var(--white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

.social-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.social-img {
    width: 100%;
    height: 100%;
}

.social-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 2rem;
}

.social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(56,0,40,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-base);
    backdrop-filter: blur(4px);
}

.social-overlay i {
    font-size: 1.5rem;
}

.social-overlay span {
    font-size: 0.8rem;
    font-weight: 500;
}

.social-card:hover .social-overlay {
    opacity: 1;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
}

.newsletter-pattern {
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(88,0,56,0.5) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(184,128,48,0.3) 0%, transparent 50%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-2xl);
}

.newsletter-input-group {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--transition-base);
    backdrop-filter: blur(10px);
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-input-group input:focus {
    border-color: var(--gold-light);
}

.newsletter-input-group .btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.newsletter-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-lighter);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.trust-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    transition: transform var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    color: var(--plum);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-card:hover .trust-icon {
    background: var(--plum);
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.trust-card h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.trust-card p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--off-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: var(--blush);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--plum);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.contact-card a {
    color: var(--plum);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-card small {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.8rem;
    color: var(--gray);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--plum-deep);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-sm);
    background: #fff;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.footer-logo .logo-name {
    font-size: 1.5rem;
}

.footer-logo .logo-tagline {
    color: rgba(255,255,255,0.5);
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-group h4,
.footer-contact-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-group a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
}

.footer-contact-item i {
    margin-top: 3px;
    color: var(--gold);
    font-size: 0.85rem;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-contact-item span {
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: var(--z-whatsapp);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--plum);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-purple);
    z-index: var(--z-whatsapp);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--plum-light);
    transform: translateY(-3px);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--container-padding);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-2xl);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-slow);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-lg {
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-bg);
    border-radius: var(--radius-full);
    color: var(--charcoal);
    z-index: 5;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--plum);
    color: var(--white);
}

.modal-body {
    padding: var(--space-2xl);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    background: var(--gray-bg);
    padding: 4px;
    border-radius: var(--radius-lg);
}

.auth-tab {
    flex: 1;
    padding: 0.7rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    color: var(--gray);
    transition: all var(--transition-base);
}

.auth-tab.active {
    background: var(--white);
    color: var(--plum);
    box-shadow: var(--shadow-sm);
}

.auth-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.auth-form > p {
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.auth-switch {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--gray);
}

.auth-switch button {
    color: var(--plum);
    font-weight: 600;
}

.auth-switch button:hover {
    text-decoration: underline;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 1.5rem;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 320px;
    max-width: 420px;
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid var(--success);
}

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--error); }
.toast-info .toast-icon { color: var(--plum); }

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-close {
    color: var(--gray);
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.toast-close:hover {
    color: var(--charcoal);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(100%) scale(0.8); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(100%) scale(0.8); }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo-img {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto var(--space-xl);
    box-shadow: 0 8px 32px rgba(72,0,48,0.25);
    display: block;
}

.loading-logo .logo-name {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--plum-deep), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: var(--gray-lighter);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--plum), var(--gold));
    border-radius: 2px;
    animation: loadingFill 1.5s ease forwards;
}

@keyframes loadingFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
