/* =============================================================
   BREAD TEMPLATE - Modern Artisan Design System
   Bold, Minimal, High-Impact
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700;800&display=swap');

/* =============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================= */
:root {
    /* Colors - Bold & Warm */
    --color-primary: #D4A853;
    --color-primary-dark: #B8902E;
    --color-primary-light: #E8C882;
    --color-primary-pale: #F7EDDA;

    --color-dark: #111111;
    --color-dark-soft: #1E1E1E;
    --color-dark-muted: #2A2A2A;

    --color-bg: #FAFAF7;
    --color-bg-alt: #F2F0EB;
    --color-bg-warm: #F5F0E8;

    --color-text: #1A1A1A;
    --color-text-secondary: #6B6B6B;
    --color-text-muted: #999999;
    --color-text-inverse: #FAFAF7;

    --color-border: #E2E0DB;
    --color-border-light: #EEEDEA;
    --color-white: #FFFFFF;
    --color-black: #000000;

    --color-success: #2D8B55;
    --color-error: #D93025;
    --color-warning: #E6A817;
    --color-sale: #D93025;

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --fs-xs: 0.7rem;
    --fs-sm: 0.82rem;
    --fs-base: 0.92rem;
    --fs-md: 1.05rem;
    --fs-lg: 1.2rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.75rem;
    --fs-4xl: 3.75rem;
    --fs-5xl: 5rem;

    /* 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;

    /* Layout */
    --container-max: 1320px;
    --container-narrow: 960px;
    --header-height: 72px;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* 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);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--color-primary); }

ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection {
    background: var(--color-primary);
    color: var(--color-dark);
}

/* =============================================================
   3. TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, var(--fs-5xl)); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, var(--fs-3xl));
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    font-size: var(--fs-base);
}

/* =============================================================
   4. LAYOUT
   ============================================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow { max-width: var(--container-narrow); }

section { padding: var(--space-5xl) 0; }

.text-center { text-align: center; }

/* =============================================================
   5. BUTTONS
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.35);
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}
.btn-dark:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}
.btn-outline:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 1px;
}
.btn-ghost:hover { color: var(--color-primary); }
.btn-ghost svg { transition: transform var(--transition-fast); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.65rem;
}

.btn-lg {
    padding: 1rem 2.75rem;
    font-size: var(--fs-xs);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}
.btn-icon:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

/* =============================================================
   6. FORMS
   ============================================================= */
.form-group { margin-bottom: var(--space-lg); }

.form-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: var(--fs-base);
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-dark);
}

.form-input::placeholder { color: var(--color-text-muted); }
.form-textarea { min-height: 130px; resize: vertical; }

/* =============================================================
   7. BANNER (Top bar)
   ============================================================= */
.banner {
    background-color: var(--color-dark);
    color: var(--color-text-inverse);
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.banner a:hover { color: var(--color-primary-light); }

/* =============================================================
   8. HEADER & NAVIGATION
   ============================================================= */
.header {
    background-color: var(--color-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

/* Nav container (flex wrapper inside header) */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Logo */
.logo {
    flex-shrink: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.logo-text .dot { color: var(--color-primary); }

/* Menu wrapper (keeps left + right menus together) */
.nav-menus-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

/* Desktop Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-item-wrap {
    position: relative;
}

.nav-item-wrap > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--color-primary);
}

.nav-link svg {
    width: 10px;
    height: 10px;
    transition: transform var(--transition-fast);
}
.nav-item-wrap:hover .nav-link svg { transform: rotate(180deg); }

/* Arrow indicator for items with submenu */
.nav-item-wrap:has(.nav-submenu) > .nav-link::after,
.nav-item-wrap:has(.nav-mega-menu) > .nav-link::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}
.nav-item-wrap:hover:has(.nav-submenu) > .nav-link::after,
.nav-item-wrap:hover:has(.nav-mega-menu) > .nav-link::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

/* Dropdown Submenu */
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    z-index: 9999;
    border-top: 2px solid var(--color-primary);
}

.nav-item-wrap:hover > .nav-submenu {
    display: block;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-submenu-link {
    display: block;
    padding: 0.6rem var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.nav-submenu-link:hover {
    color: var(--color-text);
    padding-left: 1.75rem;
    background: var(--color-bg-alt);
}

/* Dropdown (legacy class from cupcake) */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    border-top: 2px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--transition-fast);
    z-index: 50;
}

.nav-item:hover .nav-dropdown,
.nav-item-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.nav-dropdown-item:hover {
    color: var(--color-text);
    padding-left: 1.75rem;
}

/* Nav divider (vertical line between menus) */
.nav-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.75rem;
}

/* Right menu (special links) */
.nav-right-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-right-menu .nav-menu {
    gap: 0.5rem;
}

/* Nav Icons (search, account, wishlist, cart) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 0.5rem;
    z-index: 1001;
}

.nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}
.nav-icon svg { width: 20px; height: 20px; }
.nav-icon:hover { color: var(--color-primary); }

.cart-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================================
   9. SEARCH OVERLAY
   ============================================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
}
.search-overlay.open {
    display: flex;
}

.search-overlay-header {
    padding: var(--space-2xl) var(--space-xl) var(--space-lg);
}

.search-overlay-input-wrap {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: var(--space-sm);
}

.search-overlay-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-right: var(--space-md);
}

.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-size: var(--fs-xl);
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 1px;
}
.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-left: var(--space-md);
}
.search-overlay-close:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.search-overlay-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-xl) 0;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

/* =============================================================
   10. MOBILE MENU
   ============================================================= */
.nav-menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 340px;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 200;
    overflow-y: auto;
    transition: left var(--transition-base);
}
.nav-menu-mobile.open { left: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--color-dark-muted);
}
.mobile-menu-header .logo-text { color: var(--color-white); }

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.1rem;
}

.mobile-menu-nav { padding: var(--space-md) 0; }

.mobile-nav-item {
    border-bottom: 1px solid var(--color-dark-muted);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.mobile-nav-link:hover { color: var(--color-primary); }

.mobile-submenu {
    display: none;
    padding: 0 0 var(--space-md) var(--space-2xl);
}
.mobile-submenu.open { display: block; }

.mobile-submenu a {
    display: block;
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.mobile-submenu a:hover { color: var(--color-primary); }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* =============================================================
   11. HERO / SLIDESHOW
   ============================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-slider { position: relative; }

.hero-slide {
    position: relative;
    min-height: 92vh;
    display: none;
    align-items: center;
    overflow: hidden;
}
.hero-slide.active { display: flex; }

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-out;
    opacity: 0.55;
}
.hero-slide.active > img {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.2) 60%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content .section-tag {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.hero-dot {
    width: 40px;
    height: 3px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}
.hero-dot.active {
    background: var(--color-primary);
    width: 60px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 5;
}
.hero-scroll span {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    font-weight: 600;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================================
   12. PAGE BANNER / BREADCRUMB
   ============================================================= */
.page-banner {
    background-color: var(--color-dark);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
}

.page-banner h1,
.page-banner-title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.breadcrumb li::after {
    content: '\2014';
    color: rgba(255,255,255,0.2);
}
.breadcrumb li:last-child::after { display: none; }

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-primary); }

/* =============================================================
   13. FOOTER
   ============================================================= */
.footer {
    background-color: var(--color-dark);
    color: var(--color-text-inverse);
    padding-top: var(--space-5xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    margin-top: var(--space-lg);
    line-height: 1.7;
    max-width: 320px;
    font-size: var(--fs-sm);
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-md);
}

.footer-col h4 {
    color: var(--color-white);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-col a {
    display: block;
    padding: 0.35rem 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
    text-decoration: none;
}
.footer-col a:hover { color: var(--color-primary); }

/* Footer Newsletter */
.footer-newsletter { margin-top: var(--space-xl); }

.footer-newsletter-form {
    display: flex;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    background: transparent;
    color: var(--color-white);
    font-size: var(--fs-sm);
    outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
.footer-newsletter-form input:focus { border-color: var(--color-primary); }

.footer-newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: var(--color-primary);
    color: var(--color-dark);
    border: 1px solid var(--color-primary);
    font-weight: 700;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.footer-newsletter-form button:hover { background: var(--color-primary-dark); }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
}

.footer-bottom p,
.footer-bottom span {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}
.footer-social a:hover { color: var(--color-primary); }
.footer-social a svg { width: 20px; height: 20px; }

.footer-payments {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.footer-payments img {
    height: 24px;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}
.footer-payments img:hover { opacity: 1; }

/* =============================================================
   14. CART & WISHLIST DRAWERS
   ============================================================= */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 299;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-white);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-base);
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--color-border-light);
}

.cart-drawer-header h3 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cart-drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--color-text);
    cursor: pointer;
    transition: color var(--transition-fast);
}
.cart-drawer-close:hover { color: var(--color-primary); }

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-xl);
}

.cart-drawer-footer {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--color-border-light);
}

.cart-drawer-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--color-text-muted);
}

/* =============================================================
   15. BADGES
   ============================================================= */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-sale {
    background-color: var(--color-sale);
    color: var(--color-white);
}

.badge-new {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.badge-out {
    background-color: var(--color-text-muted);
    color: var(--color-white);
}

/* =============================================================
   16. LANGUAGE SELECTOR
   ============================================================= */
.lang-selector select {
    appearance: none;
    padding: 0.3rem 1.5rem 0.3rem 0.5rem;
    font-size: var(--fs-xs);
    border: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =============================================================
   17. SOCIAL MEDIA ICONS
   ============================================================= */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
}
.social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.social-icon-name { display: none; }

.social-icon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.social-icon:hover::before {
    background-color: var(--color-dark);
}

/* Facebook */
.social-icon[data-network="facebook"]::before,
.social-icon[data-network="Facebook"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

/* Instagram */
.social-icon[data-network="instagram"]::before,
.social-icon[data-network="Instagram"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

/* Twitter / X */
.social-icon[data-network="twitter"]::before,
.social-icon[data-network="Twitter"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

/* YouTube */
.social-icon[data-network="youtube"]::before,
.social-icon[data-network="YouTube"]::before,
.social-icon[data-network="Youtube"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19.1c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.43z'/%3E%3Cpolygon points='9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19.1c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.43z'/%3E%3Cpolygon points='9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02'/%3E%3C/svg%3E");
}

/* Pinterest */
.social-icon[data-network="pinterest"]::before,
.social-icon[data-network="Pinterest"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0a12 12 0 0 0-4.373 23.178c-.07-.937-.134-2.376.028-3.401.146-.927.943-5.893.943-5.893s-.24-.482-.24-1.192c0-1.117.648-1.95 1.455-1.95.686 0 1.018.516 1.018 1.134 0 .69-.44 1.723-.667 2.68-.19.8.401 1.452 1.19 1.452 1.428 0 2.526-1.506 2.526-3.678 0-1.923-1.382-3.267-3.357-3.267-2.287 0-3.63 1.715-3.63 3.49 0 .69.266 1.432.599 1.835a.24.24 0 0 1 .056.23c-.061.254-.197.8-.224.912-.035.148-.117.18-.27.108-1.005-.468-1.633-1.937-1.633-3.117 0-2.537 1.843-4.869 5.315-4.869 2.79 0 4.958 1.989 4.958 4.644 0 2.773-1.748 5.005-4.173 5.005-.815 0-1.582-.424-1.844-.924l-.502 1.91c-.181.702-.672 1.58-1 2.116A12 12 0 1 0 12 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0a12 12 0 0 0-4.373 23.178c-.07-.937-.134-2.376.028-3.401.146-.927.943-5.893.943-5.893s-.24-.482-.24-1.192c0-1.117.648-1.95 1.455-1.95.686 0 1.018.516 1.018 1.134 0 .69-.44 1.723-.667 2.68-.19.8.401 1.452 1.19 1.452 1.428 0 2.526-1.506 2.526-3.678 0-1.923-1.382-3.267-3.357-3.267-2.287 0-3.63 1.715-3.63 3.49 0 .69.266 1.432.599 1.835a.24.24 0 0 1 .056.23c-.061.254-.197.8-.224.912-.035.148-.117.18-.27.108-1.005-.468-1.633-1.937-1.633-3.117 0-2.537 1.843-4.869 5.315-4.869 2.79 0 4.958 1.989 4.958 4.644 0 2.773-1.748 5.005-4.173 5.005-.815 0-1.582-.424-1.844-.924l-.502 1.91c-.181.702-.672 1.58-1 2.116A12 12 0 1 0 12 0z'/%3E%3C/svg%3E");
}

/* LinkedIn */
.social-icon[data-network="linkedin"]::before,
.social-icon[data-network="LinkedIn"]::before,
.social-icon[data-network="Linkedin"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/%3E%3Crect x='2' y='9' width='4' height='12'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/%3E%3Crect x='2' y='9' width='4' height='12'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E");
}

/* TikTok */
.social-icon[data-network="tiktok"]::before,
.social-icon[data-network="TikTok"]::before,
.social-icon[data-network="Tiktok"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-2.88 2.5 2.89 2.89 0 0 1-2.89-2.89 2.89 2.89 0 0 1 2.89-2.89c.28 0 .54.04.79.1v-3.5a6.37 6.37 0 0 0-.79-.05A6.34 6.34 0 0 0 3.15 15a6.34 6.34 0 0 0 6.34 6.34 6.34 6.34 0 0 0 6.34-6.34V8.72a8.19 8.19 0 0 0 4.76 1.52V6.79a4.83 4.83 0 0 1-1-.1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-2.88 2.5 2.89 2.89 0 0 1-2.89-2.89 2.89 2.89 0 0 1 2.89-2.89c.28 0 .54.04.79.1v-3.5a6.37 6.37 0 0 0-.79-.05A6.34 6.34 0 0 0 3.15 15a6.34 6.34 0 0 0 6.34 6.34 6.34 6.34 0 0 0 6.34-6.34V8.72a8.19 8.19 0 0 0 4.76 1.52V6.79a4.83 4.83 0 0 1-1-.1z'/%3E%3C/svg%3E");
}

/* Top bar variant (smaller) */
.social-icon--top {
    width: 28px;
    height: 28px;
    background: transparent;
}
.social-icon--top::before {
    width: 16px;
    height: 16px;
}
.social-icon--top:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =============================================================
   18. RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    /* On tablet: hide desktop menu, show hamburger */
    .nav-menus-wrap {
        display: none;
    }
    .hamburger { display: flex; }

    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }

    section { padding: var(--space-3xl) 0; }
    .container { padding: 0 var(--space-lg); }

    /* Mobile nav: slide from right */
    .nav-menus-wrap {
        display: contents !important;
    }
    .nav-menus-wrap > .nav-divider,
    .nav-menus-wrap > .nav-right-menu {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.85);
        font-size: var(--fs-sm);
        padding: 0.75rem 1.5rem;
    }
    .nav-menu .nav-link:hover {
        color: var(--color-primary);
    }

    /* Hide desktop submenus on mobile */
    .nav-item-wrap:hover > .nav-submenu,
    .nav-item-wrap:hover > .nav-dropdown {
        display: none !important;
    }
    .nav-item-wrap > .nav-link::after {
        display: none !important;
    }

    .nav-icons {
        margin-left: auto;
        margin-right: 0.75rem;
    }

    .hamburger { display: flex; }

    .hero-slide { min-height: 75vh; }
    .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer-bottom { flex-direction: column; text-align: center; }

    .page-banner { padding: var(--space-2xl) 0; }
}

@media (max-width: 480px) {
    .hero-slide { min-height: 65vh; }
    .logo-text { font-size: 1.3rem; }
    .hero-scroll { display: none; }
    .logo-img { height: 32px; }
}

/* =============================================================
   19. UTILITIES
   ============================================================= */
.espacio_inicial {
    display: none;
}
