/* ===== VARIABLES - DISEÑO MODERNO Y LIMPIO ===== */
:root {
    /* ---- Colores Principales ---- */
    --brand-primary:      #5D4037;
    --brand-primary-dark: #3E2723;
    --brand-primary-light:#795548;
    --brand-accent:       #4CAF50;
    --brand-accent-dark:  #388E3C;
    --brand-accent-light: #66BB6A;

    /* ---- Colores Secundarios ---- */
    --brand-teal:         #0f3460;
    --brand-teal-light:   #16537e;
    --brand-orange:       #f39c12;
    --brand-green:        #4CAF50;
    --brand-green-dark:   #388E3C;
    --brand-green-light:  #66BB6A;
    --brand-green-pale:   #e8f5e9;

    /* ---- Neutros Limpios ---- */
    --brand-white:        #ffffff;
    --brand-black:        #1a1a1a;
    --brand-cream:        #fafafa;
    --brand-warm:         #2d3436;
    --brand-warm-dark:    #1e2426;
    --brand-warm-light:   #4a5568;
    --brand-warm-pale:    #f8f9fa;

    /* ---- Sombras Modernas ---- */
    --shadow-sm:          0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:          0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:          0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl:          0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-2xl:         0 25px 50px rgba(0,0,0,0.15);
    --shadow-inner:       inset 0 2px 4px rgba(0,0,0,0.06);

    /* ---- Sombras Coloreadas ---- */
    --shadow-primary:     0 10px 30px rgba(93, 64, 55, 0.15);
    --shadow-accent:      0 10px 30px rgba(76, 175, 80, 0.2);
    --shadow-green:       0 10px 30px rgba(76, 175, 80, 0.15);

    /* ---- Transiciones ---- */
    --transition-fast:    150ms ease;
    --transition-base:    250ms ease;
    --transition-slow:    400ms ease;
    --transition-bounce:  500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ---- Border Radius ---- */
    --radius-sm:          0.375rem;
    --radius-md:          0.5rem;
    --radius-lg:          0.75rem;
    --radius-xl:          1rem;
    --radius-2xl:         1.5rem;
    --radius-full:        9999px;

    /* ---- Z-Index ---- */
    --z-dropdown:         1000;
    --z-sticky:          1020;
    --z-fixed:           1030;
    --z-modal-backdrop:   1040;
    --z-modal:           1050;
    --z-popover:         1060;
    --z-tooltip:         1070;

    /* ---- Aliases ---- */
    --wood-dark:    var(--brand-primary);
    --wood-medium:  var(--brand-primary-light);
    --wood-light:   var(--brand-warm-light);
    --primary-50:   #f8f9fa;
    --primary-100:  #e9ecef;
    --primary-200:  #dee2e6;

    /* ---- Escala de Grises ---- */
    --gray-50:  #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* ---- Estado ---- */
    --green-500: #22c55e;
    --green-600: #16a34a;
    --red-500:   #ef4444;
    --yellow-500: #eab308;

    /* ---- Sombras Suaves ---- */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 14px 28px rgba(0,0,0,0.12);

    /* ---- Tipografía Moderna ---- */
    --font-display: 'Poppins', 'Inter', sans-serif;
    --font-serif: 'Poppins', sans-serif;
    --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* ---- Espaciado Generoso ---- */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* ---- Bordes Redondeados ---- */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* ---- Transiciones Suaves ---- */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--brand-cream);
    color: var(--gray-800);
    line-height: 1.75;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Elegant Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--brand-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.display-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
}

.elegant-text {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.8;
}

/* ===== CONTRAST IMPROVEMENTS ===== */
.bg-white, [style*="background: white"], [style*="background:#fff"], [style*="background: #fff"] {
    color: var(--gray-800);
}

.text-contrast {
    color: var(--gray-800) !important;
}

/* Improve contrast for text on dark backgrounds */
.hero-text h1,
.hero-text p,
.image-banner-text h2,
.image-banner-text p {
    color: white;
}

/* Improve contrast for headings */
h1, h2, h3, h4 {
    color: var(--gray-900);
}

/* Improve contrast for text on gray backgrounds */
.feature-content h3 {
    color: var(--gray-900);
}

.feature-content p {
    color: var(--gray-600);
}

.text-contrast-dark {
    color: var(--brand-black) !important;
}

/* Ensure good contrast on white backgrounds */
.card, .wizard-container, .wizard-summary, .product-card, .feature-card {
    color: var(--gray-800);
}

.card h1, .card h2, .card h3, .card h4,
.wizard-container h1, .wizard-container h2, .wizard-container h3,
.wizard-summary h1, .wizard-summary h2, .wizard-summary h3,
.product-card h3, .feature-card h3 {
    color: var(--brand-black);
}

.card p, .wizard-container p, .wizard-summary p {
    color: var(--gray-700);
}

/* Summary rows contrast */
.summary-row span:first-child {
    color: var(--gray-600);
    font-weight: 500;
}

.summary-row span:last-child {
    color: var(--brand-black);
    font-weight: 600;
}

/* Wizard options contrast */
.wizard-option h3 {
    color: var(--brand-black);
}

.wizard-option p {
    color: var(--gray-600);
}

/* Form labels contrast */
label, .form-label {
    color: var(--gray-700);
    font-weight: 500;
}

/* Price contrast */
.price, .product-price, .summary-total .price {
    color: var(--brand-green-dark);
    font-weight: 700;
}

/* Product card text contrast */
.product-info h3 {
    color: var(--brand-black) !important;
}

.product-info .description {
    color: var(--gray-600) !important;
}

/* Feature card text contrast */
.feature-content h3 {
    color: var(--brand-black) !important;
}

.feature-content p {
    color: var(--gray-600) !important;
}

/* Section headers contrast */
.section-header h2 {
    color: var(--brand-black);
}

.section-header p {
    color: var(--gray-600);
}

/* About section contrast */
.about-section h2, .about-section h3 {
    color: var(--brand-black);
}

.about-section p {
    color: var(--gray-700);
}

/* Value cards contrast */
.value-card h3 {
    color: var(--brand-black);
}

.value-card p {
    color: var(--gray-600);
}

/* Team member contrast */
.team-member h3 {
    color: var(--brand-black);
}

.team-role {
    color: var(--brand-green) !important;
}

.team-desc {
    color: var(--gray-600) !important;
}

/* Contact cards contrast */
.contact-card h3 {
    color: var(--brand-black);
}

.contact-card p, .contact-card a {
    color: var(--gray-700);
}

/* Form inputs contrast */
input, textarea, select {
    color: var(--gray-800);
}

input::placeholder, textarea::placeholder {
    color: var(--gray-400);
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== BUTTONS - ELEGANT STYLE ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-elegant);
    position: relative;
    overflow: hidden;
    text-transform: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--brand-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}

.btn-primary:hover {
    background: var(--brand-accent-dark);
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
}

/* Secondary Button */
.btn-secondary {
    background: var(--brand-primary);
    color: white;
}

.btn-secondary:hover {
    background: var(--brand-primary-dark);
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline:hover {
    background-color: var(--brand-primary);
    color: white;
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--brand-primary);
}

/* Success Button */
.btn-success {
    background: var(--brand-green);
    color: white;
}

.btn-success:hover {
    background: var(--brand-green-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== MODERN CLEAN HEADER ===== */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 1rem;
}

/* Modern Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo .logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--brand-accent);
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.logo-text .logo-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-text .logo-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* Clean Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-desktop a {
    color: var(--gray-800);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--brand-primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* Highlighted Nav Item */
.nav-desktop a.nav-highlight {
    background: var(--brand-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-desktop a.nav-highlight:hover {
    background: var(--brand-accent-dark);
    color: white;
}

.nav-desktop a.nav-highlight::after {
    display: none;
}

@media (min-width: 480px) {
    .header-content {
        height: 65px;
        gap: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text .logo-name {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .header-content {
        height: 70px;
        gap: 2rem;
    }
    
    .logo .logo-img {
        max-height: 50px;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
    
    .logo-text .logo-name {
        font-size: 1.4rem;
    }
    
    .logo-text .logo-tagline {
        font-size: 0.7rem;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    padding: 0.5rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--wood-dark);
    transform: scale(1.1);
}

.cart-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--wood-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-soft 2s infinite;
}

.menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

.menu-toggle i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    background: white;
    border-top: 1px solid var(--gray-100);
    animation: fadeInDown 0.3s ease;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-mobile a i {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

.nav-mobile a:hover {
    background-color: var(--gray-50);
    color: var(--brand-primary);
}

.nav-mobile a:hover i {
    color: var(--brand-accent);
}

.nav-mobile a.nav-highlight {
    background: var(--brand-accent);
    color: white;
    margin-top: 0.5rem;
}

.nav-mobile a.nav-highlight i {
    color: white;
}

.nav-mobile a.nav-highlight:hover {
    background: var(--brand-accent-dark);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

/* ===== HEADER SEARCH ===== */
.search-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    transition: color 0.2s;
}
.search-toggle-btn:hover { color: var(--brand-green); }
.search-toggle-btn i { width: 1.4rem; height: 1.4rem; }

.header-search {
    display: none;
    position: relative;
}
.header-search.open { display: block; }

.header-search-inner {
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 2rem;
    padding: 0.35rem 1rem;
    gap: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 260px;
}
.header-search-inner:focus-within {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(61,107,71,0.15);
    background: white;
}
.header-search-inner .search-icon-lead { width: 1rem; height: 1rem; color: var(--gray-500); flex-shrink: 0; }
.header-search-inner input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: var(--gray-800);
    width: 100%;
}
.search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--gray-500);
    display: flex;
    align-items: center;
}
.search-clear i { width: 0.9rem; height: 0.9rem; }

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    z-index: 200;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}
.search-results-dropdown.show { display: block; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
}
.search-result-item:hover { background: var(--gray-50); }
.search-result-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}
.search-result-info h4 { font-size: 0.88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.search-result-info p { font-size: 0.78rem; color: var(--brand-green); font-weight: 600; }
.search-result-category { font-size: 0.72rem; color: var(--gray-500); }
.search-no-results { padding: 1.5rem; text-align: center; color: var(--gray-500); font-size: 0.9rem; }
.search-all-results {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-green);
    border-top: 1px solid var(--gray-100);
    transition: background 0.15s;
}
.search-all-results:hover { background: var(--gray-50); }

.mobile-search-bar {
    background: white;
    border-top: 1px solid var(--gray-100);
    padding: 0.75rem 0;
    animation: fadeInDown 0.2s ease;
}
.mobile-search-inner {
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}
.mobile-search-inner:focus-within {
    border-color: var(--brand-green);
    background: white;
}
.mobile-search-inner i { width: 1rem; height: 1rem; color: var(--gray-500); flex-shrink: 0; }
.mobile-search-inner input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    width: 100%;
}

/* Desktop: show search inline */
@media (min-width: 768px) {
    .header-search { display: block; }
    .search-toggle-btn { display: none; }
    .mobile-search-bar { display: none !important; }
}

/* ===== CATALOG ADVANCED FILTERS ===== */
.catalog-header { margin-bottom: 2rem; }
.catalog-header h1 { font-size: 1.75rem; font-weight: 700; color: var(--brand-black); }
.catalog-header p { color: var(--gray-500); margin-top: 0.25rem; }

.catalog-search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem;
}
.catalog-search-bar:focus-within {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(61,107,71,0.1);
}
.catalog-search-bar i { width: 1.2rem; height: 1.2rem; color: var(--gray-400); flex-shrink: 0; }
.catalog-search-bar input {
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--gray-800);
    width: 100%;
    background: transparent;
}
.catalog-search-bar input::placeholder { color: var(--gray-400); }
.catalog-search-count { font-size: 0.85rem; color: var(--gray-500); white-space: nowrap; }

.catalog-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.filter-label { font-size: 0.82rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.04em; }

.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
    border: 2px solid var(--gray-200);
    background: white;
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--brand-green-pale);
}
.filter-btn.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
    box-shadow: 0 2px 8px rgba(61,107,71,0.25);
}

.catalog-sort-select {
    padding: 0.45rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
    background: white;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    margin-left: auto;
}
.catalog-sort-select:focus { border-color: var(--brand-green); }

.price-range-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 2rem;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}
.price-range-filter input[type="number"] {
    width: 80px;
    border: none;
    outline: none;
    font-size: 0.85rem;
    text-align: center;
    color: var(--gray-800);
    background: transparent;
}

.catalog-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    font-size: 0.88rem;
    color: var(--gray-600);
}
.catalog-results-bar strong { color: var(--brand-green); font-weight: 700; }
.catalog-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}
.catalog-no-results i { width: 3.5rem; height: 3.5rem; margin-bottom: 1rem; opacity: 0.3; }
.catalog-no-results h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--gray-600); }

/* ===== MODERN HERO ===== */
.hero-modern {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-badge i {
    width: 14px;
    height: 14px;
}

.hero-text h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: white;
}

.hero-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-buttons .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

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

.btn-outline-light:hover {
    background: white;
    color: var(--brand-primary);
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-accent);
}

.hero-stats .stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
}

.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

@media (min-width: 400px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.25rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.4rem;
    }
}

@media (min-width: 640px) {
    .hero-content {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-modern {
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 5rem 2rem;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        gap: 2.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-image {
        display: flex;
        justify-content: flex-end;
    }
}

/* ===== OLD HERO SLIDER (LEGACY) ===== */
.hero-slider {
    display: none;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

@media (min-width: 768px) {
    .slide-text h1 {
        font-size: 3.5rem;
    }
}

/* ===== FEATURES ===== */
.features {
    padding: 2rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    background-color: var(--gray-50);
    transform: translateY(-3px);
}

.feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--brand-accent);
    color: white;
}

.feature-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-primary);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-content h3 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.feature-content p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

@media (min-width: 400px) {
    .features {
        padding: 2.5rem 0;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}

@media (min-width: 640px) {
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .feature-icon i {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ===== IMAGE BANNER ===== */
.image-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.image-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.image-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.6);
    z-index: 1;
}

.image-banner-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
}

.image-banner-text {
    max-width: 600px;
    color: white;
}

.image-banner-tag {
    display: inline-block;
    background: var(--brand-accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.image-banner-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.2;
}

.image-banner-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

@media (min-width: 400px) {
    .image-banner {
        min-height: 350px;
    }
    
    .image-banner-content {
        padding: 2.5rem 1rem;
    }
    
    .image-banner-tag {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .image-banner-text h2 {
        font-size: 1.75rem;
    }
    
    .image-banner-text p {
        font-size: 0.95rem;
    }
}

@media (min-width: 640px) {
    .image-banner {
        min-height: 450px;
    }
    
    .image-banner-content {
        padding: 3.5rem 1.5rem;
    }
    
    .image-banner-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .image-banner-text h2 {
        font-size: 2.25rem;
    }
    
    .image-banner-text p {
        font-size: 1.05rem;
    }
}

@media (min-width: 768px) {
    .image-banner {
        min-height: 500px;
    }
    
    .image-banner-content {
        padding: 4rem 2rem;
    }
    
    .image-banner-text h2 {
        font-size: 2.5rem;
    }
    
    .image-banner-text p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .image-banner {
        min-height: 600px;
    }
    
    .image-banner-content {
        padding: 5rem 2rem;
    }
    
    .image-banner-text h2 {
        font-size: 3rem;
    }
    
    .image-banner-text p {
        font-size: 1.15rem;
    }
}

/* ===== PRODUCTS ===== */
.products-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
}

.section-header p {
    color: var(--gray-600);
    margin-top: 0;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 400px) {
    .products-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 640px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .products-grid {
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: var(--brand-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.15);
}

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

.product-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--wood-dark);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    animation: pulse-soft 2s infinite;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-info h3 {
    color: var(--wood-dark);
}

.product-info .description {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wood-dark);
    transition: transform 0.3s ease;
}

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

.product-stock {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.product-stock.low {
    color: #F59E0B;
}

.product-stock.out {
    color: var(--red-500);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 4rem 0;
    background: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    background: rgba(0,0,0,0.8);
    padding: 0.5rem;
    border-radius: 50%;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 0;
    background: var(--brand-green);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--primary-200);
    max-width: 600px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--brand-primary);
    color: white;
    padding: 2rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 0.2rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

.footer-contact i {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

@media (min-width: 400px) {
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
    }
}

@media (min-width: 480px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 640px) {
    .footer-links a,
    .footer-contact li {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-brand p {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--green-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: all 0.3s ease;
    animation: bounce-soft 2s infinite;
}

.whatsapp-btn:hover {
    background-color: var(--green-600);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn i {
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
    z-index: 1;
}

.whatsapp-ping {
    position: absolute;
    inset: 0;
    background-color: #4ADE80;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    background: white;
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(0.5rem);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-xl);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    color: white;
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-drawer-title i {
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce-soft 2s infinite;
}

.cart-drawer-title h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-drawer-count {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.cart-drawer-close {
    padding: 0.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cart-drawer-close:hover {
    background: rgba(255,255,255,0.2);
}

.cart-drawer-close i {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.cart-empty-icon {
    width: 6rem;
    height: 6rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: pulse-soft 2s infinite;
}

.cart-empty-icon i {
    width: 3rem;
    height: 3rem;
    color: var(--gray-300);
}

.cart-empty h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    animation: fadeInRight 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-item-image {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-weight: 700;
    color: var(--wood-dark);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    background: white;
}

.quantity-control button {
    padding: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    transition: background 0.3s ease;
}

.quantity-control button:hover {
    background: var(--gray-100);
}

.quantity-control span {
    padding: 0 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.cart-item-remove {
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--red-500);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.cart-item-remove:hover {
    background: #FEE2E2;
}

.cart-drawer-footer {
    padding: 1rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-subtotal span:first-child {
    color: var(--gray-600);
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wood-dark);
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cart-continue {
    width: 100%;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-continue:hover {
    color: var(--wood-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-soft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-soft {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--wood-dark);
    box-shadow: 0 0 0 3px rgba(93, 64, 55, 0.1);
}

.form-control.error {
    border-color: var(--red-500);
}

.form-error {
    color: var(--red-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* ===== PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--primary-200);
    font-size: 1.125rem;
}

.page-content {
    padding: 3rem 0;
}

/* ===== CATALOG PAGE ===== */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 9999px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.product-gallery {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.product-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-details {
    padding: 1rem 0;
}

.product-details h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.product-details .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.product-details .description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== CREAR MUEBLE ===== */
.furniture-builder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
}

.builder-form {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
}

.builder-preview {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 5rem;
}

.preview-3d {
    background: var(--gray-100);
    border-radius: 1rem;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .furniture-builder {
        gap: 2rem;
    }
    
    .builder-form,
    .builder-preview {
        padding: 1.5rem;
    }
    
    .preview-3d {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .furniture-builder {
        grid-template-columns: 1fr 1fr;
    }
    
    .builder-preview {
        top: 6rem;
    }
}

.preview-dimensions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--wood-dark);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.preview-instructions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--gray-600);
    box-shadow: var(--shadow-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--gray-200);
}

.summary-total .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wood-dark);
}

.material-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.material-option {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.material-option:hover {
    border-color: var(--gray-300);
}

.material-option.active {
    border-color: var(--wood-dark);
    background: var(--primary-50);
}

.material-option h4 {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.material-option p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.counter-control {
    display: flex;
    align-items: center;
}

.counter-control button {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--gray-300);
    background: white;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.counter-control button:first-child {
    border-radius: 0.5rem 0 0 0.5rem;
}

.counter-control button:last-child {
    border-radius: 0 0.5rem 0.5rem 0;
}

.counter-control button:hover {
    background: var(--gray-100);
}

.counter-control span {
    width: 3rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .furniture-builder {
        grid-template-columns: 2fr 1fr;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.contact-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--wood-dark);
}

.contact-card h3 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--wood-dark);
    font-weight: 500;
}

.contact-card span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-map {
    background: var(--gray-200);
    border-radius: 1rem;
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.about-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--wood-dark);
}

.value-card h3 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.team-member:hover .team-member-image {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-weight: 600;
    color: var(--gray-800);
}

.team-member p {
    color: var(--wood-dark);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== CART PAGE ===== */
.cart-page {
    padding: 2rem 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cart-items {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.cart-summary {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 5rem;
}

.cart-page-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.cart-page-item:last-child {
    border-bottom: none;
}

.cart-page-item-image {
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .cart-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    max-width: 500px;
    margin: 4rem auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.5s ease;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--green-500);
}

.success-message h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }

/* ===== LOADING SPINNER ===== */
.spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--gray-200);
    border-top-color: var(--wood-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== FURNITURE BUILDER - CATEGORY SELECTION ===== */
.category-selection {
    padding: 2rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 3rem;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--wood-dark);
}

.category-icon {
    width: 5rem;
    height: 5rem;
    background: var(--primary-100);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--wood-dark);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.category-card > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.category-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.category-features li i {
    width: 1rem;
    height: 1rem;
    color: var(--green-500);
}

/* ===== BUILDER SECTION ===== */
.builder-section {
    animation: fadeIn 0.4s ease;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: var(--wood-dark);
}

.btn-back i {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== SUBCATEGORY SELECTION ===== */
.subcategory-selection {
    padding: 2rem 0;
}

.subcategory-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

.subcategory-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subcategory-card:hover {
    border-color: var(--wood-dark);
    transform: translateY(-4px);
}

.subcategory-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.subcategory-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--wood-dark);
}

.subcategory-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subcategory-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== FURNITURE BUILDER LAYOUT ===== */
.furniture-builder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .furniture-builder {
        grid-template-columns: 1fr 400px;
    }
}

.builder-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.builder-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.builder-title i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--wood-dark);
}

/* ===== FORM SECTIONS ===== */
.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* ===== OPTION CARDS ===== */
.option-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.option-cards.small {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 640px) {
    .option-cards.small {
        grid-template-columns: repeat(2, 1fr);
    }
}

.option-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--wood-light);
    background: var(--primary-50);
}

.option-card.active {
    border-color: var(--wood-dark);
    background: var(--primary-100);
}

.option-card i {
    width: 2rem;
    height: 2rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.option-card.active i {
    color: var(--wood-dark);
}

.option-card span {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* ===== DIMENSIONS GRID ===== */
.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dimensions-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .dimensions-grid {
        grid-template-columns: 1fr;
    }
    .dimensions-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ===== DISTRIBUTION OPTIONS ===== */
.distribution-options {
    background: var(--gray-50);
    border-radius: 0.75rem;
    padding: 1rem;
}

.counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.counter-row:last-child {
    border-bottom: none;
}

.counter-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.counter-label i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--wood-dark);
}

.counter-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    padding: 0.25rem;
    border: 1px solid var(--gray-200);
}

.counter-control button {
    width: 2rem;
    height: 2rem;
    border: none;
    background: var(--gray-100);
    border-radius: 0.375rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.counter-control button:hover {
    background: var(--wood-dark);
    color: white;
}

.counter-control span {
    min-width: 2.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.15s ease, color 0.15s ease;
    display: inline-block;
}

/* ===== EXTRAS GRID ===== */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-card {
    display: block;
    cursor: pointer;
}

.checkbox-card input {
    display: none;
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.checkbox-card input:checked + .checkbox-content {
    border-color: var(--wood-dark);
    background: var(--primary-100);
}

.checkbox-content i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-400);
}

.checkbox-card input:checked + .checkbox-content i {
    color: var(--wood-dark);
}

/* ===== COLOR PALETTE ===== */
.color-palette {
    background: var(--gray-50);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.color-category {
    margin-bottom: 1rem;
}

.color-category:last-of-type {
    margin-bottom: 1.25rem;
}

.color-category h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-swatch {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--wood-dark);
    transform: scale(1.1);
}

.color-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.color-swatch.active .color-check {
    opacity: 1;
}

.color-check i {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.selected-color {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.selected-color-preview {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.selected-color-name {
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== L-SHAPED KITCHEN DIAGRAM ===== */
.l-dimensions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .l-dimensions {
        grid-template-columns: 1fr;
    }
}

.l-diagram {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.l-shape {
    position: relative;
    width: 150px;
    height: 120px;
}

.l-side-a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--wood-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-side-b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: var(--wood-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-side-a span, .l-side-b span {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.l-side-b span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.l-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--wood-medium);
    border-radius: 4px;
}

.l-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===== BUILDER PREVIEW ===== */
.builder-preview {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 5rem;
}

.builder-preview h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.preview-3d {
    background: var(--gray-100);
    border-radius: 1rem;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.preview-dimensions {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ===== 3D FURNITURE VIEWER ===== */
.furniture-3d-viewer {
    width: 100%;
    height: 300px;
    background: var(--gray-100);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.furniture-3d-viewer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* 3D Scene Container */
.scene-3d {
    transform-style: preserve-3d;
    animation: gentleRotate 8s ease-in-out infinite;
}

@keyframes gentleRotate {
    0%, 100% { transform: rotateX(-15deg) rotateY(-20deg); }
    50% { transform: rotateX(-15deg) rotateY(-25deg); }
}

.scene-3d:hover {
    animation-play-state: paused;
}

/* ===== CLOSET 3D MODEL ===== */
.closet-3d {
    width: 140px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
}

/* Closet Frame */
.closet-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Front Panel */
.closet-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--furniture-color, #D4A574);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    transform: translateZ(25px);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Back Panel */
.closet-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        color-mix(in srgb, var(--furniture-color, #D4A574) 85%, black) 0%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 75%, black) 100%);
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    transform: translateZ(-25px);
}

/* Side Panels */
.closet-left {
    position: absolute;
    width: 50px;
    height: 100%;
    left: 0;
    background: linear-gradient(90deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 80%, black) 0%,
        var(--furniture-color, #D4A574) 100%);
    border: 2px solid rgba(0,0,0,0.1);
    transform: rotateY(-90deg) translateZ(0px);
    transform-origin: left;
}

.closet-right {
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    background: linear-gradient(90deg,
        var(--furniture-color, #D4A574) 0%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 70%, black) 100%);
    border: 2px solid rgba(0,0,0,0.1);
    transform: rotateY(90deg) translateZ(0px);
    transform-origin: right;
}

/* Top Panel */
.closet-top {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 110%, white) 0%,
        var(--furniture-color, #D4A574) 100%);
    border: 2px solid rgba(0,0,0,0.1);
    transform: rotateX(90deg) translateZ(0px);
    transform-origin: top;
}

/* Interior Container */
.closet-interior {
    position: absolute;
    inset: 8px;
    transform: translateZ(24px);
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

/* Shelves */
.closet-shelf {
    width: 100%;
    height: 4px;
    background: linear-gradient(180deg, 
        color-mix(in srgb, var(--furniture-color, #D4A574) 90%, black) 0%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 70%, black) 100%);
    border-radius: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    flex-shrink: 0;
    animation: shelfAppear 0.3s ease backwards;
}

@keyframes shelfAppear {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

/* Drawers */
.closet-drawer {
    width: 100%;
    height: 22px;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 105%, white) 0%,
        var(--furniture-color, #D4A574) 30%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 90%, black) 100%);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    animation: drawerAppear 0.3s ease backwards;
}

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

.closet-drawer::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Hanging Bars */
.closet-bar {
    width: 90%;
    height: 6px;
    background: linear-gradient(180deg, #b8b8b8 0%, #888 50%, #666 100%);
    border-radius: 3px;
    margin: 8px auto;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: barAppear 0.3s ease backwards;
}

@keyframes barAppear {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

.closet-bar::before,
.closet-bar::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 12px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    top: -8px;
}

.closet-bar::before { left: 5px; }
.closet-bar::after { right: 5px; }

/* Hangers on bar */
.closet-hangers {
    position: absolute;
    top: 8px;
    left: 10%;
    right: 10%;
    height: 30px;
    display: flex;
    justify-content: space-around;
}

.closet-hanger {
    width: 12px;
    height: 20px;
    border: 2px solid #888;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.closet-hanger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 16px;
    height: 8px;
    background: linear-gradient(180deg, #ddd 0%, #bbb 100%);
    border-radius: 0 0 2px 2px;
}

/* Doors Container */
.closet-doors {
    position: absolute;
    inset: 0;
    transform: translateZ(26px);
    display: flex;
    gap: 2px;
}

.closet-door {
    flex: 1;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 108%, white) 0%,
        var(--furniture-color, #D4A574) 20%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 95%, black) 100%);
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 3px;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.1),
        2px 0 8px rgba(0,0,0,0.1);
    animation: doorAppear 0.4s ease backwards;
}

@keyframes doorAppear {
    from { transform: rotateY(-30deg); opacity: 0; }
    to { transform: rotateY(0); opacity: 1; }
}

/* Door Handle */
.closet-door::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 25px;
    background: linear-gradient(90deg, #aaa 0%, #888 50%, #666 100%);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.closet-door:nth-child(odd)::after { right: 8px; }
.closet-door:nth-child(even)::after { left: 8px; }

/* Mirror effect on door */
.closet-door.has-mirror::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
}

/* LED Light strip */
.closet-led {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    height: 3px;
    background: linear-gradient(90deg, 
        #fff 0%, #fffbe6 25%, #fff 50%, #fffbe6 75%, #fff 100%);
    border-radius: 2px;
    box-shadow: 
        0 0 10px rgba(255,255,200,0.8),
        0 0 20px rgba(255,255,200,0.5),
        0 0 30px rgba(255,255,200,0.3);
    animation: ledGlow 2s ease-in-out infinite;
    transform: translateZ(24px);
}

@keyframes ledGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Empty space indicator */
.closet-space {
    flex: 1;
    min-height: 15px;
}

/* ===== KITCHEN 3D MODEL ===== */
.kitchen-3d {
    width: 160px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
}

/* Kitchen Cabinet Frame */
.kitchen-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Kitchen Front */
.kitchen-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--furniture-color, #D4A574);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    transform: translateZ(30px);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Kitchen Back */
.kitchen-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--furniture-color, #D4A574) 75%, black);
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    transform: translateZ(-30px);
}

/* Kitchen Sides */
.kitchen-left {
    position: absolute;
    width: 60px;
    height: 100%;
    left: 0;
    background: linear-gradient(90deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 75%, black) 0%,
        var(--furniture-color, #D4A574) 100%);
    border: 2px solid rgba(0,0,0,0.1);
    transform: rotateY(-90deg) translateZ(0px);
    transform-origin: left;
}

.kitchen-right {
    position: absolute;
    width: 60px;
    height: 100%;
    right: 0;
    background: linear-gradient(90deg,
        var(--furniture-color, #D4A574) 0%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 65%, black) 100%);
    border: 2px solid rgba(0,0,0,0.1);
    transform: rotateY(90deg) translateZ(0px);
    transform-origin: right;
}

/* Kitchen Top */
.kitchen-top {
    position: absolute;
    width: 100%;
    height: 60px;
    top: 0;
    background: var(--furniture-color, #D4A574);
    border: 2px solid rgba(0,0,0,0.1);
    transform: rotateX(90deg) translateZ(0px);
    transform-origin: top;
}

/* Countertop */
.kitchen-countertop {
    position: absolute;
    width: calc(100% + 8px);
    height: 8px;
    left: -4px;
    top: -8px;
    border-radius: 3px;
    transform: translateZ(31px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

.kitchen-countertop.granito {
    background: linear-gradient(135deg, 
        #4a4a4a 0%, #666 20%, #555 40%, #777 60%, #5a5a5a 80%, #666 100%);
}

.kitchen-countertop.cuarzo {
    background: linear-gradient(135deg, 
        #f5f5f5 0%, #e8e8e8 30%, #fff 50%, #eee 70%, #f0f0f0 100%);
    border: 1px solid rgba(0,0,0,0.1);
}

.kitchen-countertop.acero {
    background: linear-gradient(180deg, 
        #d0d0d0 0%, #a8a8a8 30%, #c0c0c0 50%, #909090 100%);
}

/* Kitchen Interior */
.kitchen-interior {
    position: absolute;
    inset: 6px;
    transform: translateZ(29px);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Kitchen Door */
.kitchen-door {
    flex: 1;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 108%, white) 0%,
        var(--furniture-color, #D4A574) 30%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 92%, black) 100%);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 2px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    animation: doorAppear 0.3s ease backwards;
}

.kitchen-door::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Kitchen Drawer */
.kitchen-drawer {
    height: 28px;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 105%, white) 0%,
        var(--furniture-color, #D4A574) 30%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 88%, black) 100%);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    animation: drawerAppear 0.3s ease backwards;
}

.kitchen-drawer::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 4px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Kitchen Doors Row */
.kitchen-doors-row {
    display: flex;
    gap: 3px;
    flex: 1;
}

/* ===== 3D L-KITCHEN MODEL ===== */
.kitchen-l-3d {
    width: 180px;
    height: 140px;
    position: relative;
    transform-style: preserve-3d;
}

/* Side A - Horizontal section */
.l-section-a {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 140px;
    height: 60px;
    background: var(--furniture-color, #D4A574);
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    transform: translateZ(25px);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.l-section-a .kitchen-countertop {
    position: absolute;
    top: -8px;
    left: -4px;
    width: calc(100% + 8px);
    height: 8px;
    border-radius: 2px;
    transform: none;
}

.l-cabinets-row {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    height: 35px;
    display: flex;
    gap: 3px;
}

.l-cabinet {
    flex: 1;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 108%, white) 0%,
        var(--furniture-color, #D4A574) 30%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 90%, black) 100%);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 2px;
    position: relative;
    animation: doorAppear 0.3s ease backwards;
}

.l-cabinet::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 3px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.l-drawers-row {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    display: flex;
    gap: 3px;
}

.l-drawer {
    flex: 1;
    height: 16px;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 105%, white) 0%,
        var(--furniture-color, #D4A574) 30%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 88%, black) 100%);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 2px;
    position: relative;
    animation: drawerAppear 0.3s ease backwards;
}

.l-drawer::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Corner unit */
.l-corner-unit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 60px;
    background: color-mix(in srgb, var(--furniture-color, #D4A574) 95%, black);
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    transform: translateZ(25px);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.l-corner-unit::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -4px;
    width: calc(100% + 8px);
    height: 8px;
    background: linear-gradient(135deg, #555 0%, #777 50%, #666 100%);
    border-radius: 2px;
}

/* Side B - Vertical section */
.l-section-b {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 45px;
    height: 80px;
    background: color-mix(in srgb, var(--furniture-color, #D4A574) 92%, black);
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    transform: translateZ(25px);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.l-section-b .kitchen-countertop {
    position: absolute;
    top: -8px;
    left: -4px;
    width: calc(100% + 8px);
    height: 8px;
    border-radius: 2px;
    transform: none;
}

.l-cabinets-col {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    right: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.l-cabinets-col .l-cabinet {
    flex: 1;
}

.l-cabinets-col .l-cabinet::after {
    width: 3px;
    height: 12px;
    top: 50%;
    left: auto;
    right: 5px;
    transform: translateY(-50%);
}

/* Upper cabinets (alacenas) */
.l-upper-cabinets {
    position: absolute;
    top: 0;
    left: 50px;
    right: 0;
    height: 35px;
    display: flex;
    gap: 4px;
    transform: translateZ(15px) translateY(-10px);
}

.l-alacena {
    flex: 1;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--furniture-color, #D4A574) 110%, white) 0%,
        var(--furniture-color, #D4A574) 40%,
        color-mix(in srgb, var(--furniture-color, #D4A574) 85%, black) 100%);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    animation: doorAppear 0.3s ease backwards;
}

.l-alacena::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 3px;
    background: linear-gradient(180deg, #999 0%, #666 100%);
    border-radius: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== WIZARD STEP BY STEP ===== */
.wizard-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.wizard-question {
    text-align: center;
    margin-bottom: 2.5rem;
}

.wizard-question .question-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.wizard-question .question-icon i {
    width: 40px;
    height: 40px;
    color: var(--wood-dark);
}

.wizard-question .question-number {
    display: inline-block;
    background: var(--wood-dark);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.wizard-question h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.wizard-question p {
    color: var(--gray-500);
    font-size: 1rem;
}

/* Wizard Options */
.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wizard-option {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wizard-option:hover {
    border-color: var(--wood-dark);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.wizard-option.selected {
    border-color: var(--wood-dark);
    background: var(--primary-100);
}

.wizard-option .option-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.wizard-option:hover .option-icon,
.wizard-option.selected .option-icon {
    background: var(--wood-dark);
}

.wizard-option .option-icon i {
    width: 28px;
    height: 28px;
    color: var(--gray-600);
    transition: color 0.25s ease;
}

.wizard-option:hover .option-icon i,
.wizard-option.selected .option-icon i {
    color: white;
}

.wizard-option .option-content {
    flex: 1;
}

.wizard-option .option-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.wizard-option .option-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.wizard-option .option-arrow {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: all 0.25s ease;
}

.wizard-option:hover .option-arrow {
    color: var(--wood-dark);
    transform: translateX(4px);
}

/* Wizard Progress */
.wizard-progress {
    margin-bottom: 2.5rem;
}

.wizard-progress .progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.wizard-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.wizard-progress .progress-steps {
    display: flex;
    justify-content: space-between;
}

.wizard-progress .step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wizard-progress .step.active {
    background: var(--wood-dark);
    color: white;
    transform: scale(1.1);
}

.wizard-progress .step.completed {
    background: var(--wood-medium);
    color: white;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.wizard-step.active {
    display: block;
}

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

/* Wizard Form Inputs */
.wizard-form {
    max-width: 500px;
    margin: 0 auto;
}

.dimension-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dimension-inputs.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.dimension-group {
    text-align: center;
}

.dimension-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.input-with-unit {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.input-with-unit:focus-within {
    border-color: var(--wood-dark);
}

.input-with-unit input {
    flex: 1;
    border: none;
    padding: 0.875rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--gray-800);
    background: transparent;
}

.input-with-unit input:focus {
    outline: none;
}

.input-with-unit span {
    padding: 0 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    background: var(--gray-50);
}

.wizard-next-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Wizard Counter */
.wizard-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.wizard-counter.small {
    gap: 1rem;
    margin-bottom: 0;
}

.wizard-counter .counter-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wizard-counter.small .counter-btn {
    width: 40px;
    height: 40px;
}

.wizard-counter .counter-btn:hover {
    border-color: var(--wood-dark);
    background: var(--primary-100);
}

.wizard-counter .counter-btn:active {
    transform: scale(0.95);
}

.wizard-counter .counter-btn i {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.wizard-counter.small .counter-btn i {
    width: 18px;
    height: 18px;
}

.wizard-counter .counter-display {
    text-align: center;
    min-width: 100px;
}

.wizard-counter .counter-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--wood-dark);
    line-height: 1;
}

.wizard-counter.small .counter-value {
    font-size: 1.5rem;
}

.wizard-counter .counter-label {
    font-size: 1rem;
    color: var(--gray-500);
}

/* Wizard Counters List */
.wizard-counters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.counter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
}

.counter-item .counter-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

.counter-item .counter-title i {
    width: 20px;
    height: 20px;
    color: var(--wood-dark);
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.wizard-nav .btn {
    flex: 1;
    padding: 1rem;
}

/* Wizard Extras */
.wizard-extras {
    margin-bottom: 2rem;
}

.wizard-extras h4,
.wizard-color h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
    text-align: center;
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.extra-item:hover {
    border-color: var(--wood-dark);
}

.extra-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--wood-dark);
}

.extra-item .extra-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.extra-item .extra-content i {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
}

.extra-item .extra-content span {
    font-weight: 500;
    color: var(--gray-700);
}

/* Wizard Color */
.wizard-color {
    margin-bottom: 2rem;
}

/* Wizard Back Home */
.wizard-back-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 0.75rem 1.25rem;
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-back-home:hover {
    border-color: var(--gray-500);
    color: var(--gray-800);
}

.wizard-back-home i {
    width: 18px;
    height: 18px;
}

/* Wizard Summary */
.wizard-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ===== 3D FURNITURE PREVIEW ===== */
.preview-3d-container {
    perspective: 800px;
    perspective-origin: 50% 40%;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.preview-3d-container::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: rgba(0,0,0,0.15);
    z-index: 0;
}

.furniture-3d {
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(-30deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    position: relative;
    z-index: 1;
}

.furniture-3d:active {
    cursor: grabbing;
}

.furniture-3d > div {
    transform-style: preserve-3d;
}

/* Kitchen Cabinet 3D */
.cabinet-3d {
    position: relative;
    transform-style: preserve-3d;
}

.cabinet-body {
    position: relative;
    transform-style: preserve-3d;
    background: var(--cabinet-color, #FFFFFF);
    border: 2px solid rgba(0,0,0,0.1);
}

.cabinet-face {
    position: absolute;
    background: var(--cabinet-color, #FFFFFF);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.cabinet-face.front {
    transform: translateZ(calc(var(--depth) / 2));
}

.cabinet-face.back {
    transform: translateZ(calc(var(--depth) / -2)) rotateY(180deg);
    background: #d4d4d4;
}

.cabinet-face.left {
    transform: rotateY(-90deg) translateZ(calc(var(--width) / 2));
    width: var(--depth) !important;
}

.cabinet-face.right {
    transform: rotateY(90deg) translateZ(calc(var(--width) / 2));
    width: var(--depth) !important;
    background: linear-gradient(90deg, var(--cabinet-color, #FFFFFF) 0%, rgba(0,0,0,0.05) 100%);
}

.cabinet-face.top {
    transform: rotateX(90deg) translateZ(calc(var(--height) / 2));
    height: var(--depth) !important;
    background: linear-gradient(180deg, var(--cabinet-color, #FFFFFF) 0%, rgba(0,0,0,0.03) 100%);
}

.cabinet-face.bottom {
    transform: rotateX(-90deg) translateZ(calc(var(--height) / 2));
    height: var(--depth) !important;
    background: #c0c0c0;
}

/* Countertop 3D */
.countertop-3d {
    position: absolute;
    top: -12px;
    left: -5px;
    right: -5px;
    height: 12px;
    transform-style: preserve-3d;
    background: var(--countertop-color, #555);
    border-radius: 2px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.countertop-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    border-radius: 2px;
}

.countertop-3d.marble {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 25%, #f0f0f0 50%, #e8e8e8 75%, #f5f5f5 100%);
    background-size: 20px 20px;
}

/* Cabinet Doors 3D */
.cabinet-door-3d {
    position: absolute;
    background: var(--cabinet-color, #FFFFFF);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    transform-style: preserve-3d;
    transform: translateZ(2px);
    box-shadow: 
        inset 0 0 0 4px rgba(255,255,255,0.5),
        inset 0 0 20px rgba(0,0,0,0.05),
        2px 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cabinet-door-3d:hover {
    transform: translateZ(5px);
}

.cabinet-door-3d .door-handle {
    position: absolute;
    width: 6px;
    height: 30px;
    background: linear-gradient(90deg, #888 0%, #ccc 50%, #888 100%);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cabinet-door-3d .door-handle.left {
    right: 8px;
}

.cabinet-door-3d .door-handle.right {
    left: 8px;
}

/* Cabinet Drawers 3D */
.cabinet-drawer-3d {
    position: absolute;
    left: 5px;
    right: 5px;
    height: 40px;
    background: var(--cabinet-color, #FFFFFF);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    transform: translateZ(3px);
    box-shadow: 
        inset 0 0 0 3px rgba(255,255,255,0.5),
        inset 0 -5px 15px rgba(0,0,0,0.05),
        2px 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabinet-drawer-3d .drawer-handle {
    width: 50px;
    height: 8px;
    background: linear-gradient(180deg, #ccc 0%, #888 50%, #aaa 100%);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Closet 3D */
.closet-3d {
    position: relative;
    transform-style: preserve-3d;
}

.closet-interior {
    position: absolute;
    inset: 8px;
    background: linear-gradient(180deg, #f5f0e8 0%, #e8e0d5 100%);
    border-radius: 4px;
    overflow: hidden;
}

.closet-shelf-3d {
    position: absolute;
    left: 5px;
    right: 5px;
    height: 8px;
    background: linear-gradient(180deg, #d4c4a8 0%, #c0b090 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.closet-bar-3d {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 6px;
    background: linear-gradient(90deg, #888 0%, #ccc 50%, #888 100%);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.closet-bar-3d::before,
.closet-bar-3d::after {
    content: '';
    position: absolute;
    top: -15px;
    width: 4px;
    height: 15px;
    background: linear-gradient(90deg, #666 0%, #999 50%, #666 100%);
    border-radius: 2px;
}

.closet-bar-3d::before { left: 0; }
.closet-bar-3d::after { right: 0; }

.closet-door-3d {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--cabinet-color, #FFFFFF);
    border: 2px solid rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    transform: translateZ(4px);
    box-shadow: 
        inset 0 0 0 6px rgba(255,255,255,0.4),
        inset 0 0 30px rgba(0,0,0,0.05),
        3px 3px 12px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.closet-door-3d.with-mirror::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}

.closet-door-3d .door-handle-vertical {
    position: absolute;
    width: 8px;
    height: 80px;
    background: linear-gradient(90deg, #888 0%, #ddd 50%, #888 100%);
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

/* Preview Controls */
.preview-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem;
    border-radius: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.preview-controls button {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--gray-600);
}

.preview-controls button:hover {
    background: var(--brand-green);
    color: white;
}

.preview-controls button i {
    width: 18px;
    height: 18px;
}

/* Preview Badge */
.preview-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--brand-green);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.preview-badge i {
    width: 14px;
    height: 14px;
}

/* Dimensions Labels */
.dimension-label-3d {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-700);
    background: rgba(255,255,255,0.9);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* LED Glow Animation */
@keyframes ledGlow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 10px #ffeb3b, 0 0 20px rgba(255,235,59,0.4); }
    50% { opacity: 1; box-shadow: 0 0 20px #ffeb3b, 0 0 40px rgba(255,235,59,0.6); }
}

/* Furniture hover effects */
.furniture-3d:hover .cabinet-door-3d,
.furniture-3d:hover .closet-door-3d {
    transform: translateZ(6px);
}

.furniture-3d:hover .cabinet-drawer-3d {
    transform: translateZ(5px);
}

@media (max-width: 768px) {
    .preview-3d-container {
        height: 280px;
    }
    
    .wizard-summary {
        grid-template-columns: 1fr;
    }
    
    .preview-controls {
        bottom: 5px;
        padding: 0.35rem;
    }
    
    .preview-controls button {
        width: 32px;
        height: 32px;
    }
}

.summary-preview {
    text-align: center;
}

.summary-preview h3,
.summary-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.summary-details .summary-list {
    margin-bottom: 1.5rem;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.summary-actions .btn {
    flex: 1;
}

/* L-Shape Dimension Visual */
.l-dimension-visual {
    margin-bottom: 2rem;
}

.l-shape-diagram {
    width: 200px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.l-shape-diagram .l-side-a {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 160px;
    height: 50px;
    background: var(--primary-100);
    border: 2px solid var(--wood-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-shape-diagram .l-side-b {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 50px;
    height: 100px;
    background: var(--primary-100);
    border: 2px solid var(--wood-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-shape-diagram .l-corner-visual {
    position: absolute;
    bottom: 50px;
    left: 40px;
    width: 20px;
    height: 10px;
    background: var(--wood-dark);
}

.l-shape-diagram span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wood-dark);
}

/* Countertop Preview */
.countertop-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.color-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.countertop-colors .wizard-option {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.countertop-preview.granito {
    background: linear-gradient(135deg, #555 0%, #888 50%, #666 100%);
}

.countertop-preview.cuarzo {
    background: linear-gradient(135deg, #ddd 0%, #fff 50%, #eee 100%);
}

.countertop-preview.acero {
    background: linear-gradient(135deg, #aaa 0%, #ddd 50%, #bbb 100%);
}

/* Responsive Wizard */
@media (max-width: 768px) {
    .wizard-container {
        padding: 1rem 0;
    }
    
    .wizard-question h2 {
        font-size: 1.4rem;
    }
    
    .dimension-inputs {
        grid-template-columns: 1fr;
    }
    
    .wizard-summary {
        grid-template-columns: 1fr;
    }
    
    .wizard-counter .counter-value {
        font-size: 2.5rem;
    }
}

/* ===== QUOTE SUMMARY ===== */
.quote-summary {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.quote-summary h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.summary-list .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.summary-list .summary-row span:last-child {
    font-weight: 500;
    color: var(--gray-700);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--primary-100);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
}

.summary-total span:first-child {
    font-weight: 600;
    color: var(--gray-700);
}

.summary-total .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wood-dark);
}

.summary-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

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

.modal-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--gray-200);
}

.modal-close i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-600);
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.quote-summary-mini {
    background: var(--gray-50);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* ===== SUCCESS MODAL ===== */
.modal-success {
    text-align: center;
    padding: 3rem 2rem;
}

.modal-success .success-icon {
    width: 5rem;
    height: 5rem;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-success .success-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--green-500);
}

.modal-success h2 {
    text-align: center;
}

.modal-success p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* ===== CLOSET OPEN STYLE (sin puertas) ===== */
.closet-3d-model.open-style::before {
    background: linear-gradient(180deg,
        var(--furniture-color, #D4A574) 0%,
        var(--furniture-color, #D4A574) 10%,
        rgba(0,0,0,0.1) 10%,
        rgba(0,0,0,0.05) 30%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.05) 50%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.05) 70%,
        rgba(0,0,0,0.1) 70%,
        rgba(0,0,0,0.05) 90%,
        var(--furniture-color, #D4A574) 90%);
}

/* ===== ANIMATIONS FOR BUILDER ===== */
.builder-section {
    animation: slideUp 0.4s ease;
}

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

.option-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card.active {
    animation: selectPulse 0.3s ease;
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.color-swatch {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.color-swatch.active {
    animation: colorSelect 0.3s ease;
}

@keyframes colorSelect {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

/* Price update animation */
.summary-total .price {
    transition: all 0.3s ease;
}

.summary-total .price.updating {
    animation: priceUpdate 0.4s ease;
}

@keyframes priceUpdate {
    0% { transform: scale(1); color: var(--wood-dark); }
    50% { transform: scale(1.1); color: var(--green-500); }
    100% { transform: scale(1); color: var(--wood-dark); }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .furniture-builder {
        grid-template-columns: 1fr;
    }
    
    .builder-preview {
        position: relative;
        top: 0;
    }
    
    .l-dimensions {
        grid-template-columns: 1fr;
    }
    
    .option-cards.small {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ADVANCED ANIMATIONS ===== */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    60% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

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

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 5px var(--wood-dark), 0 0 10px var(--wood-dark);
    }
    50% {
        box-shadow: 0 0 20px var(--wood-dark), 0 0 30px var(--wood-medium);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes slideBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Enhanced Header Animation */
.header {
    animation: fadeInDown 0.6s ease;
}

.header .logo {
    animation: fadeInLeft 0.8s ease;
}

.header .nav-desktop a {
    opacity: 0;
    animation: fadeInDown 0.5s ease forwards;
}

.header .nav-desktop a:nth-child(1) { animation-delay: 0.1s; }
.header .nav-desktop a:nth-child(2) { animation-delay: 0.2s; }
.header .nav-desktop a:nth-child(3) { animation-delay: 0.3s; }
.header .nav-desktop a:nth-child(4) { animation-delay: 0.4s; }
.header .nav-desktop a:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.hero h1 {
    animation: fadeInUp 1s ease;
}

.hero p {
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero .btn {
    animation: bounceIn 0.8s ease 0.4s backwards;
}

/* Enhanced Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(93, 64, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.product-card .product-image {
    overflow: hidden;
}

.product-card .product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card .btn {
    position: relative;
    overflow: hidden;
}

.product-card .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-card .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Buttons */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(93, 64, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    animation: pulse 2s ease-in-out infinite;
}

.btn-whatsapp:hover {
    animation: none;
    transform: scale(1.05);
}

/* Enhanced Page Headers */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--gray-50), transparent);
    pointer-events: none;
}

.page-header h1 {
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    animation: fadeInUp 0.8s ease 0.15s backwards;
}

/* Enhanced Category Cards */
.category-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 3px var(--wood-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.category-card:hover .category-icon {
    animation: wiggle 0.5s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.2);
}

.category-icon i {
    transition: transform 0.3s ease;
}

/* Enhanced Feature Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon {
    animation: bounceIn 0.6s ease;
    background: var(--wood-dark);
    color: white;
}

.feature-icon {
    transition: all 0.4s ease;
}

/* Enhanced Wizard Options */
.wizard-option {
    position: relative;
    overflow: hidden;
}

.wizard-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 64, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.wizard-option:hover::before {
    left: 100%;
}

.wizard-option:hover .option-icon {
    animation: pulse 0.5s ease;
}

/* Enhanced Form Inputs */
.form-control {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.15);
}

/* Enhanced Counter Buttons */
.counter-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-btn:hover {
    transform: scale(1.15);
}

.counter-btn:active {
    transform: scale(0.95);
}

/* Counter Value Animation */
.counter-value.pulse {
    animation: heartbeat 0.4s ease;
    color: var(--green-500);
}

/* Enhanced Color Swatches */
.color-swatch:hover {
    transform: scale(1.2) rotate(10deg);
    z-index: 10;
}

.color-swatch.active {
    animation: borderGlow 1.5s ease-in-out infinite;
}

/* Enhanced Footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slideBackground 20s linear infinite;
    pointer-events: none;
}

.footer-link {
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Enhanced Social Icons */
.social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.2);
    background: white;
    color: var(--wood-dark);
}

/* Loading Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Floating Elements */
.floating {
    animation: float 4s ease-in-out infinite;
}

.floating-delayed {
    animation: float 4s ease-in-out 1s infinite;
}

/* Enhanced Modal */
.modal-content {
    animation: bounceIn 0.5s ease;
}

.modal.active .modal-content {
    animation: slideInBounce 0.5s ease;
}

/* Enhanced Alerts */
.alert {
    animation: fadeInRight 0.5s ease;
}

/* Cart Icon Animation */
.cart-icon {
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-icon:hover i {
    animation: wiggle 0.5s ease;
}

.cart-count.bump {
    animation: bounceIn 0.4s ease;
}

/* Progress Bar Animation */
.progress-fill {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== TOP BAR (HIDDEN BY DEFAULT) ===== */
.top-bar {
    display: none;
}

/* ===== ENHANCED LOGO ===== */
.logo-mark {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--brand-warm), var(--brand-warm-dark));
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-mark {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(139,94,60,0.3);
}

.logo-mark i {
    width: 1.4rem;
    height: 1.4rem;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--brand-warm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--brand-gold);
    transform: translateY(-50%);
}

/* ===== TYPOGRAPHY UPGRADES ===== */
h1, h2, h3 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

h1 em, h2 em {
    font-style: italic;
    color: var(--brand-warm);
}

.section-header h2,
.about-content h2,
.about-preview-content h2,
.cta-section h2,
.page-header h1 {
    font-family: var(--font-serif);
}

/* ===== HERO SLIDER UPGRADES ===== */
.slide-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease both;
}

.slide-text h1 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.15;
}

.slide-text h1 em {
    font-style: italic;
    color: var(--brand-gold);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-glass {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--brand-primary);
}

.btn-glass:hover {
    background: white;
}

@media (min-width: 768px) {
    .slide-text h1 {
        font-size: 3.8rem;
    }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 2.5rem 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
}

.trust-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, var(--brand-warm), var(--brand-warm-dark));
}

.trust-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-warm);
    transition: color 0.3s ease;
}

.trust-item:hover .trust-icon i {
    color: white;
}

.trust-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gray-800);
}

.trust-text span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 5rem 0;
    background: white;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-preview-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-preview-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-preview-image:hover img {
    transform: scale(1.05);
}

.about-preview-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--brand-warm), var(--brand-warm-dark));
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.about-preview-content h2 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.about-preview-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.about-feature i {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--green-500);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: flex-start;
    }
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.process-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-200);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.process-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--brand-warm), var(--brand-warm-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(-5deg);
}

.process-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.process-connector {
    display: none;
    align-items: center;
    padding-top: 3rem;
    color: var(--gray-300);
}

@media (min-width: 768px) {
    .process-connector {
        display: flex;
    }
}

.process-connector i {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-floating {
    padding: 5rem 0;
    background: var(--gray-50);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gray-800);
}

.testimonials-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--primary-200);
    line-height: 1;
    opacity: 0.5;
}

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

.testimonial-stars {
    color: var(--brand-gold);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.15em;
}

.testimonial-card > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-warm), var(--brand-warm-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-warm), var(--primary-200));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.75rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background: var(--brand-warm);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-200);
}

.timeline-year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-warm);
    background: var(--primary-50);
    padding: 0.2rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== TEAM ENHANCEMENTS ===== */
.team-role {
    color: var(--brand-warm) !important;
    font-weight: 600 !important;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.team-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.faq-question span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
}

.faq-question i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--brand-warm);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== FOOTER SOCIAL LINKS ===== */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--brand-warm);
    transform: translateY(-3px);
}

.social-link i {
    width: 1rem;
    height: 1rem;
}

/* ===== WHATSAPP SVG ICON ===== */
.whatsapp-icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER 4-COLUMN GRID ===== */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ===== ENHANCED PAGE HEADER ===== */
.page-header .slide-eyebrow {
    animation: fadeInUp 0.6s ease;
}

/* ===== ABOUT HERO EYEBROW ===== */
.about-hero .slide-eyebrow {
    animation: none;
}

/* ===== MODERN ANIMATIONS ===== */

/* Fade Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

/* Slide Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Zoom Animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

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

/* Bounce Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    60% {
        opacity: 1;
        transform: translateY(25px);
    }
    75% {
        transform: translateY(-10px);
    }
    90% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Pulse Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
}

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

/* Shake Animations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

/* Rotate Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

/* Flip Animations */
@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0);
    }
}

/* Glow Animations */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.8), 0 0 30px rgba(76, 175, 80, 0.6);
    }
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.8), 0 0 30px rgba(76, 175, 80, 0.6);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Wiggle Animation */
@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Jello Animation */
@keyframes jello {
    0%, 11.1%, 100% {
        transform: none;
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Rubber Band Animation */
@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Tada Animation */
@keyframes tada {
    0% {
        transform: scale(1) rotate(0deg);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ===== ANIMATION UTILITY CLASSES ===== */

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease forwards;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease forwards;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease forwards;
}

.animate-zoomInUp {
    animation: zoomInUp 0.6s ease forwards;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-bounceIn {
    animation: bounceIn 0.8s ease forwards;
}

.animate-bounceInDown {
    animation: bounceInDown 0.8s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

.animate-pulse-scale {
    animation: pulse-scale 2s infinite;
}

.animate-shake {
    animation: shake 0.8s ease;
}

.animate-rotate {
    animation: rotate 2s linear infinite;
}

.animate-rotateIn {
    animation: rotateIn 0.6s ease forwards;
}

.animate-flipInX {
    animation: flipInX 0.6s ease forwards;
}

.animate-flipInY {
    animation: flipInY 0.6s ease forwards;
}

.animate-glow {
    animation: glow 2s infinite;
}

.animate-text-glow {
    animation: text-glow 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-wiggle {
    animation: wiggle 0.8s ease infinite;
}

.animate-jello {
    animation: jello 0.9s ease both;
}

.animate-heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.animate-rubberBand {
    animation: rubberBand 1s ease;
}

.animate-tada {
    animation: tada 1s ease both;
}

/* ===== DELAY UTILITIES ===== */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }
.delay-900 { animation-delay: 900ms; }
.delay-1000 { animation-delay: 1000ms; }

/* ===== DURATION UTILITIES ===== */
.duration-200 { animation-duration: 200ms; }
.duration-300 { animation-duration: 300ms; }
.duration-500 { animation-duration: 500ms; }
.duration-700 { animation-duration: 700ms; }
.duration-1000 { animation-duration: 1000ms; }

/* ===== INFINITE ANIMATIONS ===== */
.infinite {
    animation-iteration-count: infinite;
}

/* ===== HOVER EFFECTS ===== */

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-magnetic:hover {
    transform: scale(1.05);
}

/* Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff0000;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #0000ff;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }
    20% {
        clip: rect(80px, 9999px, 90px, 0);
    }
    40% {
        clip: rect(10px, 9999px, 50px, 0);
    }
    60% {
        clip: rect(60px, 9999px, 20px, 0);
    }
    80% {
        clip: rect(40px, 9999px, 70px, 0);
    }
    100% {
        clip: rect(90px, 9999px, 30px, 0);
    }
}

/* Neon Glow Effect */
.neon-glow {
    text-shadow:
        0 0 5px rgba(76, 175, 80, 0.8),
        0 0 10px rgba(76, 175, 80, 0.6),
        0 0 20px rgba(76, 175, 80, 0.4),
        0 0 40px rgba(76, 175, 80, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Border */
.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Morphing Shape */
.morph-shape {
    transition: border-radius 0.5s ease;
}

.morph-shape:hover {
    border-radius: 50% 50% 50% 50% / 25% 25% 75% 75%;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Tilt Effect */
.tilt-effect {
    transition: transform 0.3s ease;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Parallax Scroll Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--brand-accent);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary-dark);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger Animation */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

