    /* Art Delux Atelier - Estilos Responsive CORREGIDOS */

    :root {
        --primary-gold: #8F6F40;
        --light-gray: #BBBBBB;
        --lighter-gray: #E9E9E9;
        --white: #FFFFFF;
        --black: #000000;
        --dark-bg: #0a0a0a;
        --card-bg: #1a1a1a;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--black);
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
    }

    /* ========================================
    HEADER & NAVIGATION - VERSIÓN FINAL CORREGIDA
    ======================================== */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(143, 111, 64, 0.2);
        transition: transform 0.3s ease;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--white);
        text-decoration: none;
        line-height: 1.2;
        z-index: 1002; /* Mayor que el menú */
        order: 1;
    }

    .logo .art {
        display: block;
        letter-spacing: 0.05em;
    }

    /* Menú principal */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
        order: 2;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--primary-gold);
        text-decoration: none;
        font-weight: 400;
        transition: color 0.3s ease;
        position: relative;
        font-size: 0.95rem;
    }

    .nav-link:hover {
        color: var(--white);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Iconos - z-index ALTO para estar sobre el menú */
    .nav-icons {
        display: flex;
        gap: 1rem;
        align-items: center;
        order: 3;
        z-index: 1003; /* Mayor que el menú móvil */
        position: relative;
    }

    .nav-icon {
        color: var(--primary-gold);
        font-size: 1.1rem;
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1003; /* NUEVO: Mantiene iconos sobre el menú */

    }

    .nav-icon:hover {
        color: var(--white);
    }

    .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--primary-gold);
        color: var(--black);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Inter', sans-serif;
    }

    /* Menú Toggle Mobile - X SÓLIDA CORREGIDA */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 1002; /* Mayor que el menú */
        background: transparent;
        border: none;
        order: 4;
        margin-left: 1rem;
        position: relative;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-gold);
        transition: all 0.3s ease;
        border-radius: 3px;
        display: block;
    }

    /* X PERFECTAMENTE SÓLIDA Y RECTA - CORREGIDA MATEMÁTICAMENTE */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--white);
        transform-origin: center center;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--white);
        transform-origin: center center;
    }

    /* Dropdown */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--black);
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--primary-gold);
        border-radius: 4px;
        padding: 0.5rem 0;
        z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: var(--primary-gold);
        color: var(--black);
    }

    /* ========================================
    RESPONSIVE - TABLETS Y MÓVILES
    ======================================== */

    /* Móviles (480px) */
    @media (max-width: 480px) {
        .header {
            padding: 0.8rem 0.9rem;
        }

        .logo {
            font-size: 1rem;
        }

        .nav-icons {
            gap: 0.7rem;
            margin-right: 0.5rem;
        }

        .nav-icon {
            font-size: 1rem;
        }

        .cart-badge {
            width: 16px;
            height: 16px;
            font-size: 0.65rem;
            top: -6px;
            right: -6px;
        }

        .mobile-menu-toggle {
            margin-left: 0.7rem;
            padding: 6px;
        }

        .mobile-menu-toggle span {
            width: 22px;
            height: 2.5px;
        }

        /* X perfecta en móviles pequeños */
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            transform-origin: center center;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            transform-origin: center center;
        }
    }

    /* Overlay para menú móvil */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000; /* INCREMENTADO: Entre overlay y iconos */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* ========================================
    HERO SECTION - OPTIMIZADO PARA 1366x768
    ======================================== */
    .hero {
        min-height: 100vh;
        max-height: 1200px; /* Límite para pantallas grandes */
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        padding: 100px 2rem 100px;
        /* background: linear-gradient(135deg, var(--black) 0%, #111 100%); */
        overflow: hidden;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        align-items: center;
        max-width: 1600px; /* Cambia de 1600px a: */
        max-width: min(1600px, 90vw); /* NUEVO */
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 2rem;
    }

    .sculpture-img {
        width: auto;
        height: 90vh;
        max-height: 1000px;
        object-fit: cover;
        filter: drop-shadow(0 0 40px rgba(143, 111, 64, 0.3));
        opacity: 0.8;
        transform: translateX(-10%);
        position: relative;

    }

    .hero-right {
        grid-column: 2;
        position: relative;
        z-index: 3;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-gold);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-description {
        font-size: 1.1rem;
        color: var(--light-gray);
        margin-bottom: 2.5rem;
        line-height: 1.8;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .highlight {
        color: var(--primary-gold);
        font-weight: 600;
    }

    .cta-button {
        display: inline-block;
        background: transparent;
        color: var(--primary-gold);
        border: 2px solid var(--primary-gold);
        padding: 0.9rem 2.2rem;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        position: relative;
        z-index: 4;
        font-size: 0.95rem;
    }

    .cta-button:hover {
        background: var(--primary-gold);
        color: var(--black);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(143, 111, 64, 0.4);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: var(--light-gray);
        animation: bounce 2s infinite;
        z-index: 3;
        cursor: pointer;
        font-size: 0.9rem;
        width: auto;
        display: inline-block;
    }

    .scroll-indicator i {
        display: block;
        margin-top: 0.5rem;
        color: var(--primary-gold);
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    /* ========================================
   SCULPTURES SECTION - RESPONSIVE PERFECTO 
======================================== */
.sculptures-section {
    padding: 100px 2rem;
    background: var(--dark-bg);
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 600;
}

.sculptures-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px; /* Más espacio para las flechas */
}

.sculptures-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.sculptures-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.sculpture-card {
    flex: none;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(143, 111, 64, 0.2);
    box-sizing: border-box;
    display: flex; /* NUEVO */
    flex-direction: column; /* NUEVO */
    /* El ancho se calcula dinámicamente por JavaScript */
}

.sculpture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(143, 111, 64, 0.3);
}

.sculpture-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #8F6F40;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sculpture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sculpture-card .sculpture-image {
    flex-shrink: 0; /* Mantiene altura fija de imagen */
}

.sculpture-name {
    font-size: 1.4rem;
    color: var(--white);
    padding: 1.3rem 1rem 0.5rem;
    font-weight: 500;
    min-height: 4.2rem; /* NUEVO - Altura mínima fija */
    display: flex; /* NUEVO */
    align-items: center; /* NUEVO */
}

.sculpture-category {
    color: var(--primary-gold);
    font-size: 0.85rem;
    padding: 0 1rem;
    font-style: italic;
    min-height: 1.8rem; /* NUEVO - Altura mínima fija */
    display: flex; /* NUEVO */
    align-items: center; /* NUEVO */
}

.sculpture-price {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    padding: 0.5rem 1rem 1.3rem;
    min-height: 3rem; /* NUEVO - Altura mínima fija */
    display: flex; /* NUEVO */
    align-items: center; /* NUEVO */
}

.sculpture-actions {
    padding: 0 1rem 1.3rem;
    margin-top: auto; /* NUEVO - Empuja el botón al fondo */
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.7rem 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.add-to-cart-btn:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(143, 111, 64, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(143, 111, 64, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ========================================
   RESPONSIVE SCULPTURES SLIDER - OPTIMIZADO
======================================== */

/* Full HD y superiores (1920px+) - 4 productos PERFECTOS */
@media (min-width: 1920px) {
    .sculptures-container {
        max-width: 1700px;
        padding: 0 80px; /* Espacio generoso para flechas */
    }
    
    .sculpture-image {
        height: 320px;
    }
    
    .sculpture-name {
        font-size: 1.45rem;
        padding: 1.4rem 1.1rem 0.5rem;
    }
    
    .sculpture-category {
        font-size: 0.88rem;
        padding: 0 1.1rem;
    }
    
    .sculpture-price {
        font-size: 1.25rem;
        padding: 0.5rem 1.1rem 1.4rem;
    }
    
    .add-to-cart-btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.88rem;
    }
}

/* Desktop/Laptop (769px - 1919px) - 3 productos PERFECTOS */
@media (min-width: 769px) and (max-width: 1919px) {
    .sculptures-container {
        max-width: 1300px;
        padding: 0 70px; /* Espacio adecuado para flechas */
    }
    
    .sculptures-section {
        padding: 100px 2rem;
    }
    
    .section-title {
        font-size: 2.1rem;
        margin-bottom: 3.3rem;
    }
    
    .sculpture-image {
        height: 300px;
    }
    
    .sculpture-name {
        font-size: 1.35rem;
        padding: 1.3rem 1rem 0.5rem;
    }
    
    .sculpture-category {
        font-size: 0.83rem;
        padding: 0 1rem;
    }
    
    .sculpture-price {
        font-size: 1.18rem;
        padding: 0.5rem 1rem 1.3rem;
    }
    
    .add-to-cart-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.83rem;
    }
    
    .sculpture-actions {
        padding: 0 1rem 1.3rem;
    }
    
    .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* Tablet Pequeño/Móvil Grande (601px - 768px) - 1 producto */
@media (min-width: 601px) and (max-width: 768px) {
    .sculptures-section {
        padding: 70px 1.5rem;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }
    
    .sculptures-container {
        padding: 0 48px;
        max-width: 550px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 300px;
    }
    
    .sculpture-name {
        font-size: 1.35rem;
    }
    
    .sculpture-price {
        font-size: 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .nav-arrow {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

/* Móvil Grande (481px - 600px) - 1 producto centrado */
@media (min-width: 481px) and (max-width: 600px) {
    .sculptures-section {
        padding: 65px 1.2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.3rem;
    }
    
    .sculptures-container {
        padding: 0 45px;
        max-width: 500px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 280px;
    }
    
    .sculpture-name {
        font-size: 1.3rem;
        padding: 1.2rem 1rem 0.5rem;
    }
    
    .sculpture-category {
        font-size: 0.8rem;
    }
    
    .sculpture-price {
        font-size: 1.15rem;
        padding: 0.5rem 1rem 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.82rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* Móvil Estándar (376px - 480px) - 1 producto */
@media (min-width: 376px) and (max-width: 480px) {
    .sculptures-section {
        padding: 60px 1rem;
    }
    
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }
    
    .sculptures-container {
        padding: 0 30px;
        max-width: 450px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 250px;
    }
    
    .sculpture-name {
        font-size: 1.25rem;
        padding: 1.1rem 0.9rem 0.5rem;
        min-height: 4.1rem;
    }
    
    .sculpture-category {
        font-size: 0.78rem;
        padding: 0 0.9rem;
        min-height: 1.75rem;
    }
    
    .sculpture-price {
        font-size: 1.1rem;
        padding: 0.5rem 0.9rem 1.1rem;
        min-height: 2.9rem;
    }
    
    .add-to-cart-btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.8rem;
    }
    
    .nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Móvil Pequeño (hasta 375px) - 1 producto */
@media (max-width: 375px) {
    .sculptures-section {
        padding: 55px 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }
    
    .sculptures-container {
        padding: 0 28px;
        max-width: 400px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 240px;
    }
    
    .sculpture-name {
        font-size: 1.2rem;
        padding: 1rem 0.85rem 0.45rem;
        min-height: 4rem; /* AJUSTADO */
    }
    
    .sculpture-category {
        font-size: 0.75rem;
        padding: 0 0.85rem;
        min-height: 1.7rem; /* AJUSTADO */
    }
    
    .sculpture-price {
        font-size: 1.05rem;
        padding: 0.45rem 0.85rem 1rem;
        min-height: 2.8rem; /* AJUSTADO */
    }
    
    .add-to-cart-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.03em;
    }
    
    .sculpture-actions {
        padding: 0 0.85rem 1.1rem;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .slider-indicators {
        gap: 7px;
        margin-top: 1.3rem;
    }
    
    .indicator {
        width: 9px;
        height: 9px;
    }
}

/* FIX TEMPORAL - FORZAR ESTILOS EN MÓVIL */
.sculpture-card {
    background: #1a1a1a !important;
    border: 1px solid rgba(143, 111, 64, 0.2) !important;
}

.sculpture-image {
    background: #8F6F40 !important;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.7rem 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.add-to-cart-btn:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(143, 111, 64, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(143, 111, 64, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.7rem 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.add-to-cart-btn:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(143, 111, 64, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(143, 111, 64, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ========================================
   RESPONSIVE SCULPTURES SLIDER
======================================== */

/* Desktop Grande (1920px+) - 4 productos */
@media (min-width: 1920px) {
    .sculptures-container {
        max-width: 1600px;
        padding: 0 70px;
    }
    
    .sculpture-image {
        height: 320px;
    }
    
    .sculpture-name {
        font-size: 1.5rem;
    }
    
    .sculpture-price {
        font-size: 1.3rem;
    }
}

/* Desktop Estándar (1367px - 1919px) - 4 productos */
@media (min-width: 1367px) and (max-width: 1919px) {
    .sculptures-container {
        max-width: 1400px;
        padding: 0 60px;
    }
    
    .sculpture-image {
        height: 280px;
    }
}

/* Laptop/Desktop Pequeño (901px - 1366px) - 3 productos */
@media (min-width: 901px) and (max-width: 1366px) {
    .sculptures-section {
        padding: 90px 2rem;
    }
    
    .sculptures-container {
        max-width: 1200px;
        padding: 0 55px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .sculpture-image {
        height: 260px;
    }
    
    .sculpture-name {
        font-size: 1.3rem;
        padding: 1.2rem 1rem 0.5rem;
    }
    
    .sculpture-category {
        font-size: 0.8rem;
    }
    
    .sculpture-price {
        font-size: 1.15rem;
        padding: 0.5rem 1rem 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
    }
}

/* Tablet Grande (769px - 900px) - 1 producto centrado */
@media (min-width: 769px) and (max-width: 900px) {
    .sculptures-section {
        padding: 80px 2rem;
    }
    
    .section-title {
        font-size: 1.95rem;
        margin-bottom: 2.8rem;
    }
    
    .sculptures-container {
        padding: 0 50px;
        max-width: 600px; /* Limitar ancho para centrar mejor */
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 320px;
    }
    
    .sculpture-name {
        font-size: 1.4rem;
    }
    
    .sculpture-price {
        font-size: 1.25rem;
    }
    
    .add-to-cart-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
}

/* Tablet Pequeño/Móvil Grande (601px - 768px) - 1 producto */
@media (min-width: 601px) and (max-width: 768px) {
    .sculptures-section {
        padding: 70px 1.5rem;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }
    
    .sculptures-container {
        padding: 0 48px;
        max-width: 550px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 300px;
    }
    
    .sculpture-name {
        font-size: 1.35rem;
    }
    
    .sculpture-price {
        font-size: 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .nav-arrow {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

/* Móvil Grande (481px - 600px) - 1 producto centrado */
@media (min-width: 481px) and (max-width: 600px) {
    .sculptures-section {
        padding: 65px 1.2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.3rem;
    }
    
    .sculptures-container {
        padding: 0 45px;
        max-width: 500px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 280px;
    }
    
    .sculpture-name {
        font-size: 1.3rem;
        padding: 1.2rem 1rem 0.5rem;
    }
    
    .sculpture-category {
        font-size: 0.8rem;
    }
    
    .sculpture-price {
        font-size: 1.15rem;
        padding: 0.5rem 1rem 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.82rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* Móvil Estándar (376px - 480px) - 1 producto */
@media (min-width: 376px) and (max-width: 480px) {
    .sculptures-section {
        padding: 60px 1rem;
    }
    
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }
    
    .sculptures-container {
        padding: 0 30px;
        max-width: 450px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 250px;
    }
    
    .sculpture-name {
        font-size: 1.25rem;
        padding: 1.1rem 0.9rem 0.5rem;
        min-height: 4.1rem;
    }
    
    .sculpture-category {
        font-size: 0.78rem;
        padding: 0 0.9rem;
        min-height: 1.75rem;
    }
    
    .sculpture-price {
        font-size: 1.1rem;
        padding: 0.5rem 0.9rem 1.1rem;
        min-height: 2.9rem;
    }
    
    .add-to-cart-btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.8rem;
    }
    
    .nav-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Móvil Pequeño (hasta 375px) - 1 producto */
@media (max-width: 375px) {
    .sculptures-section {
        padding: 55px 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }
    
    .sculptures-container {
        padding: 0 28px;
        max-width: 400px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-image {
        height: 240px;
    }
    
    .sculpture-name {
        font-size: 1.2rem;
        padding: 1rem 0.85rem 0.45rem;
    }
    
    .sculpture-category {
        font-size: 0.75rem;
        padding: 0 0.85rem;
    }
    
    .sculpture-price {
        font-size: 1.05rem;
        padding: 0.45rem 0.85rem 1rem;
    }
    
    .add-to-cart-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.03em;
    }
    
    .sculpture-actions {
        padding: 0 0.85rem 1.1rem;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .slider-indicators {
        gap: 7px;
        margin-top: 1.3rem;
    }
    
    .indicator {
        width: 9px;
        height: 9px;
    }
}
    .add-to-cart-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        background: transparent;
        color: var(--primary-gold);
        border: 2px solid var(--primary-gold);
        padding: 0.7rem 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.85rem;
    }

    .add-to-cart-btn:hover {
        background: var(--primary-gold);
        color: var(--black);
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(143, 111, 64, 0.2);
        border: 2px solid var(--primary-gold);
        color: var(--primary-gold);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .nav-arrow:hover {
        background: var(--primary-gold);
        color: var(--black);
    }

    .nav-arrow-left {
        left: 0;
    }

    .nav-arrow-right {
        right: 0;
    }

    .slider-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 2rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(143, 111, 64, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: var(--primary-gold);
        transform: scale(1.2);
    }

    /* ========================================
    CUSTOM ORDER SECTION
    ======================================== */
    .custom-order-section {
        padding: 100px 2rem;
        background: var(--black);
    }

    .custom-order-content {
        max-width: 1600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .custom-title {
        font-size: 2.2rem;
        color: var(--primary-gold);
        margin-bottom: 2.5rem;
        font-weight: 600;
    }

    .custom-form {
        max-width: 500px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.3rem;
        margin-bottom: 1.8rem;
    }

    .form-row:first-child,
    .form-row:nth-child(3) {
        grid-template-columns: 1fr;
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .radio-label {
        display: flex;
        align-items: center;
        color: var(--white);
        cursor: pointer;
        font-size: 0.95rem;
    }

    .radio-label input[type="radio"] {
        display: none;
    }

    .radio-custom {
        width: 18px;
        height: 18px;
        border: 2px solid var(--primary-gold);
        border-radius: 50%;
        margin-right: 0.9rem;
        position: relative;
    }

    .radio-label input[type="radio"]:checked + .radio-custom {
        background: var(--primary-gold);
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        color: var(--white);
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-select,
    .form-input {
        background: var(--black);
        border: 2px solid var(--primary-gold);
        color: var(--white);
        padding: 0.7rem 0.9rem;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .form-select option {
        background: var(--black);
        color: var(--white);
    }

    .form-select:focus,
    .form-input:focus {
        outline: none;
        border-color: var(--white);
        box-shadow: 0 0 10px rgba(143, 111, 64, 0.3);
    }

    .form-separator {
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
        margin: 1.8rem 0;
    }

    .submit-btn {
        background: var(--primary-gold);
        color: var(--black);
        border: none;
        padding: 0.9rem 2.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 1.8rem;
        width: 100%;
        font-size: 0.95rem;
    }

    .submit-btn:hover {
        background: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(143, 111, 64, 0.4);
    }

    .custom-order-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sculpture-preview {
        width: 100%;
        max-width: 380px;
    }

    .section-sculpture-image {
        transition: opacity 0.3s ease;
        max-width: 100%;
        height: auto;
    }

    /* ========================================
    CART SIDEBAR
    ======================================== */
    .cart-sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100vh;
        background: var(--card-bg);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        transition: right 0.3s ease;
        border-left: 2px solid var(--primary-gold);
        display: flex;
        flex-direction: column;
    }

    .cart-sidebar.active {
        right: 0;
    }

    .cart-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .cart-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .cart-header {
        padding: 1.8rem;
        border-bottom: 1px solid var(--primary-gold);
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--black);
    }

    .cart-header h3 {
        color: var(--primary-gold);
        font-size: 1.4rem;
        margin: 0;
    }

    .cart-close {
        background: none;
        border: 2px solid var(--primary-gold);
        color: var(--primary-gold);
        width: 38px;
        height: 38px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .cart-close:hover {
        background: var(--primary-gold);
        color: var(--black);
    }

    .cart-content {
        flex: 1;
        overflow-y: auto;
    }

    .cart-items {
        padding: 1rem;
    }

    .cart-item {
        display: flex;
        gap: 1rem;
        padding: 1.2rem;
        border-bottom: 1px solid rgba(143, 111, 64, 0.2);
        transition: all 0.3s ease;
    }

    .cart-item:hover {
        background: rgba(143, 111, 64, 0.05);
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .cart-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cart-item-details {
        flex: 1;
    }

    .cart-item-title {
        color: var(--white);
        font-size: 0.95rem;
        margin: 0 0 0.4rem 0;
        font-weight: 600;
    }

    .cart-item-price {
        color: var(--primary-gold);
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 0.8rem 0;
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .qty-btn {
        background: transparent;
        border: 1px solid var(--primary-gold);
        color: var(--primary-gold);
        width: 26px;
        height: 26px;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 0.75rem;
    }

    .qty-btn:hover {
        background: var(--primary-gold);
        color: var(--black);
    }

    .qty-display {
        color: var(--white);
        font-weight: 600;
        min-width: 28px;
        text-align: center;
        font-size: 0.9rem;
    }

    .cart-item-actions {
        display: flex;
        align-items: center;
    }

    .remove-btn {
        background: transparent;
        border: 1px solid #dc3545;
        color: #dc3545;
        width: 30px;
        height: 30px;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 0.85rem;
    }

    .remove-btn:hover {
        background: #dc3545;
        color: white;
    }

    .cart-empty {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        min-height: 300px;
        padding: 2rem;
        text-align: center;
        color: var(--light-gray);
    }

    .cart-empty i {
        font-size: 2.8rem;
        color: var(--primary-gold);
        margin-bottom: 1rem;
    }

    .cart-footer {
        border-top: 2px solid var(--primary-gold);
        padding: 1.8rem;
        background: var(--black);
    }

    .cart-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.3rem;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--white);
    }

    .checkout-btn {
        width: 100%;
        background: var(--primary-gold);
        color: var(--black);
        border: none;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .checkout-btn:hover:not(:disabled) {
        background: var(--white);
        transform: translateY(-2px);
    }

    .checkout-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Cart Notifications */
    .cart-notification {
        position: fixed;
        top: 90px;
        right: 20px;
        background: var(--card-bg);
        border: 2px solid var(--primary-gold);
        border-radius: 8px;
        padding: 0.9rem 1.3rem;
        color: var(--white);
        z-index: 1002;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        max-width: 280px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        font-size: 0.9rem;
    }

    .cart-notification.show {
        transform: translateX(0);
    }

    .cart-notification.success {
        border-color: #28a745;
    }

    .cart-notification.error {
        border-color: #dc3545;
    }

    .cart-notification.info {
        border-color: #17a2b8;
    }

    .notification-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* ========================================
    FOOTER
    ======================================== */
    .footer {
        background: linear-gradient(135deg, var(--black) 0%, #0a0a0a 100%);
        border-top: 2px solid var(--primary-gold);
        padding: 3.5rem 2rem 0;
        margin-top: 3.5rem;
    }

    .footer-content {
        max-width: 1600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        color: var(--primary-gold);
        margin-bottom: 1.3rem;
        font-family: 'Playfair Display', serif;
        font-weight: 600;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-logo p {
        color: var(--light-gray);
        font-style: italic;
        margin-top: 0.5rem;
        font-size: 0.95rem;
    }

    .footer-description p {
        color: var(--light-gray);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .footer-social {
        display: flex;
        gap: 0.9rem;
        margin-top: 1.5rem;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: transparent;
        border: 2px solid var(--primary-gold);
        color: var(--primary-gold);
        text-decoration: none;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .social-link:hover {
        background: var(--primary-gold);
        color: var(--black);
        transform: translateY(-3px);
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.7rem;
    }

    .footer-links a {
        color: var(--light-gray);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: var(--primary-gold);
    }

    .contact-info p {
        color: var(--light-gray);
        margin-bottom: 0.7rem;
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 0.95rem;
    }

    .contact-info i {
        color: var(--primary-gold);
        width: 16px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(143, 111, 64, 0.2);
        padding: 1.8rem 0;
    }

    .footer-bottom-content {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--light-gray);
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        display: flex;
        gap: 1.8rem;
    }

    .footer-bottom-links a {
        color: var(--light-gray);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
    }

    .footer-bottom-links a:hover {
        color: var(--primary-gold);
    }

    /* ========================================
    RESPONSIVE DESIGN
    ======================================== */

    /* Resolución 1366x768 específica */
    @media (max-width: 1366px) {
        .hero-title {
            font-size: 2.8rem;
        }

        .hero-description {
            font-size: 1.05rem;
        }

        .sculpture-img {
            height: 89vh;
            max-height: 1000px;
        }
        
        .scroll-indicator {
            bottom: 1rem; /* AÑADE ESTA LÍNEA - Baja el botón "Conoce más" */
        }

        .sculptures-section,
        .custom-order-section {
            padding: 90px 2rem;
        }
    }

    /* Móviles (768px) - MENÚ HAMBURGUESA ACTIVADO */
    @media (max-width: 768px) {
        .header {
            padding: 0.9rem 1rem;
        }

        /* HAMBURGUESA - EXTREMO IZQUIERDO */
        .mobile-menu-toggle {
            display: flex;
            order: 1;
            margin-left: 0;
            margin-right: 0.8rem;
            position: relative;
        }

        /* LOGO - AL LADO DEL HAMBURGUESA */
        .logo {
            order: 2;
            font-size: 1.1rem;
            margin-right: auto;
        }

        /* ICONOS - EXTREMO DERECHO */
        .nav-icons {
            order: 3;
            gap: 0.9rem;
            margin-left: auto;
            margin-right: 0;
        }    .nav-icon {
            font-size: 1.05rem;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 70%;
            max-width: 250px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 90px 2rem 2rem;
            gap: 1.8rem;
            transition: left 0.3s ease;
            border-right: 2px solid var(--primary-gold);
            order: 4;
            overflow-y: auto;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu li {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: 1.05rem;
        }

        .dropdown-menu {
            position: static;
            display: none;
            background: transparent;
            border: none;
            box-shadow: none;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        /* Hero */
        .hero {
            padding: 90px 1rem 90px;
            min-height: 85vh;
        }

        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-left {
            display: none;
        }

        .hero-right {
            grid-column: 1;
        }

        .hero-title {
            font-size: 2rem;
            margin-bottom: 1.3rem;
        }

        .hero-description {
            font-size: 1rem;
            margin-bottom: 1.8rem;
        }

        .scroll-indicator {
            bottom: 1.5rem;
            font-size: 0.85rem;
            left: 45%; /* ASEGURAR centrado */
            transform: translateX(-50%);
        }

        /* Sculptures */
        .sculptures-section {
            padding: 70px 1rem;
        }

        .section-title {
            font-size: 1.9rem;
            margin-bottom: 3rem;
        }

        .sculptures-container {
            padding: 0 40px;
        }

        .sculpture-card {
            width: 250px;
            min-width: 250px;
        }

        .sculpture-image {
            height: 260px;
        }

        .nav-arrow {
            width: 38px;
            height: 38px;
            font-size: 0.9rem;
        }

        /* Custom Order */
        .custom-order-section {
            padding: 70px 1rem;
        }

        .custom-order-content {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .custom-title {
            font-size: 1.9rem;
            text-align: center;
        }

        .custom-form {
            margin: 0 auto;
            max-width: 100%;
        }

        .sculpture-preview {
            max-width: 280px;
        }

        /* Cart */
        .cart-sidebar {
            width: 100%;
            right: -100%;
        }

        .cart-notification {
            right: 10px;
            left: 10px;
            max-width: none;
        }

        /* Footer */
        .footer {
            padding: 3rem 1rem 0;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-bottom-content {
            flex-direction: column;
            gap: 1rem;
        }

        .footer-bottom-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
        }
    }

    /* Móviles (480px) */
    @media (max-width: 480px) {
        /* Header */
        .header {
            padding: 0.8rem 0.9rem;
        }

        .logo {
            font-size: 1rem;
        }

        .nav-icons {
            gap: 0.7rem;
            margin-right: 0.8rem;
        }

        .nav-icon {
            font-size: 1rem;
        }

        .cart-badge {
            width: 16px;
            height: 16px;
            font-size: 0.65rem;
            top: -6px;
            right: -6px;
        }

        /* Hero */
        .hero {
            padding: 80px 1rem 70px;
        }

        .hero-title {
            font-size: 1.7rem;
        }

        .hero-description {
            font-size: 0.95rem;
        }

        .cta-button {
            padding: 0.8rem 1.8rem;
            font-size: 0.85rem;
        }

        .scroll-indicator {
            bottom: 1rem;
            font-size: 0.8rem;
            left: 45%; /* FORZAR centrado absoluto */
            margin-left: 0; /* ELIMINAR cualquier margin */
            transform: translateX(-50%);
        }

        /* Sculptures */
        .sculptures-section {
            padding: 60px 0.9rem;
        }

        .section-title {
            font-size: 1.7rem;
            margin-bottom: 2.5rem;
        }

        .sculptures-container {
            padding: 0 10px;
        }

        .sculpture-card {
            width: calc(100vw - 60px);
            max-width: 300px;
            min-width: 280px;
        }

        .sculpture-image {
            height: 240px;
        }

        .sculpture-name {
            font-size: 1.3rem;
        }

        .sculpture-price {
            font-size: 1.1rem;
        }

        .add-to-cart-btn {
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
        }

        .nav-arrow {
            width: 34px;
            height: 34px;
            font-size: 0.85rem;
        }

        /* Custom Order */
        .custom-order-section {
            padding: 60px 0.9rem;
        }

        .custom-title {
            font-size: 1.7rem;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .form-select,
        .form-input {
            padding: 0.65rem 0.85rem;
            font-size: 0.9rem;
        }

        .radio-label {
            font-size: 0.9rem;
        }

        .submit-btn {
            padding: 0.85rem 2rem;
            font-size: 0.9rem;
        }

        /* Cart */
        .cart-sidebar {
            width: 100%;
        }

        .cart-header {
            padding: 1.5rem 1rem;
        }

        .cart-header h3 {
            font-size: 1.2rem;
        }

        .cart-item {
            padding: 1rem;
            flex-wrap: wrap;
        }

        .cart-item-image {
            width: 60px;
            height: 60px;
        }

        .cart-item-title {
            font-size: 0.9rem;
        }

        .cart-item-price {
            font-size: 0.95rem;
        }

        .cart-footer {
            padding: 1.5rem 1rem;
        }

        .cart-total {
            font-size: 1.05rem;
        }

        .checkout-btn {
            padding: 0.85rem 1.5rem;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            padding: 2.5rem 0.9rem 0;
        }

        .footer-section h3 {
            font-size: 1.2rem;
        }

        .footer-section h4 {
            font-size: 1rem;
        }

        .footer-description p,
        .footer-links a,
        .contact-info p {
            font-size: 0.9rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
        }
    }

    /* Móviles muy pequeños (375px) */
    @media (max-width: 375px) {
        .hero-title {
            font-size: 1.5rem;
        }

        .hero-description {
            font-size: 0.9rem;
        }

        .cta-button {
            padding: 0.75rem 1.5rem;
            font-size: 0.8rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .sculpture-card {
            width: calc(100vw - 40px);
            max-width: 280px;
            min-width: 260px;
        }

        .custom-title {
            font-size: 1.5rem;
        }
    }

    /* Animaciones */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }



    /* ========================================
    CHATBOT - CORREGIDO
    ======================================== */
    :root {
        --chatbot-primary: #8F6F40;
        --chatbot-black: #000000;
        --chatbot-white: #FFFFFF;
        --chatbot-light-gray: #BBBBBB;
    }

    .chatbot-widget {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 999; /* Reducido de 1000 para no interferir con header */
        font-family: 'Inter', sans-serif;
    }

    .chatbot-trigger {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--chatbot-primary), #b8925a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 32px rgba(143, 111, 64, 0.4);
        transition: all 0.3s ease;
        border: 3px solid var(--chatbot-black);
    }

    .chatbot-trigger:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 48px rgba(143, 111, 64, 0.6);
    }

    .chatbot-trigger i {
        color: var(--chatbot-white);
        font-size: 1.8rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .chatbot-notification {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 26px;
        height: 26px;
        background: linear-gradient(135deg, #ff4757, #ff3742);
        border-radius: 50%;
        display: none;
        border: 3px solid var(--chatbot-white);
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-8px);
        }
        60% {
            transform: translateY(-4px);
        }
    }

    .chatbot-container {
        position: fixed; /* Cambiado de absolute a fixed */
        bottom: 20px; /* Espacio desde abajo */
        right: 2rem;
        width: 400px;
        max-height: calc(100vh - 120px); /* CRÍTICO: Limitar altura */
        background: var(--chatbot-white);
        border-radius: 24px;
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
        flex-direction: column;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 3px solid var(--chatbot-primary);
        z-index: 999;
    }

    .chatbot-container.active {
        display: flex !important;
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .chatbot-header {
        background: linear-gradient(135deg, var(--chatbot-primary), #b8925a);
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--chatbot-white);
        border-bottom: 3px solid var(--chatbot-black);
        flex-shrink: 0; /* No se comprime */
    }

    .avatar-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 3px solid var(--chatbot-white);
        object-fit: cover;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .message-avatar .avatar-img {
        width: 36px;
        height: 36px;
        border: 2px solid var(--chatbot-primary);
    }

    .user-message .message-avatar .avatar-img {
        border-color: var(--chatbot-black);
    }

    .chatbot-info h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        font-family: 'Playfair Display', serif;
    }

    .chatbot-info .status {
        font-size: 0.8rem;
        opacity: 0.9;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-style: italic;
    }

    .chatbot-info .status::before {
        content: '';
        width: 8px;
        height: 8px;
        background: #2ecc71;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
        }
    }

    .chatbot-close {
        margin-left: auto;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid var(--chatbot-white);
        color: var(--chatbot-white);
        cursor: pointer;
        padding: 0.6rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chatbot-close:hover {
        background: var(--chatbot-white);
        color: var(--chatbot-primary);
        transform: rotate(90deg);
    }

    .chatbot-messages {
        flex: 1;
        padding: 1.5rem;
        overflow-y: auto;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        min-height: 0; /* CRÍTICO para overflow */
    }

    .message {
        display: flex;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .user-message {
        flex-direction: row-reverse;
    }

    .user-message .message-content {
        background: linear-gradient(135deg, var(--chatbot-primary), #b8925a);
        color: var(--chatbot-white);
        border-radius: 20px 20px 6px 20px;
        border: 2px solid var(--chatbot-black);
    }

    .bot-message .message-content {
        background: var(--chatbot-white);
        color: var(--chatbot-black);
        border-radius: 6px 20px 20px 20px;
        border: 2px solid var(--chatbot-primary);
        box-shadow: 0 4px 20px rgba(143, 111, 64, 0.1);
    }

    .message-content {
        max-width: 78%;
        padding: 1rem 1.2rem;
    }

    .message-content p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .message-time {
        font-size: 0.7rem;
        opacity: 0.7;
        margin-top: 0.5rem;
        text-align: right;
    }

    .typing-animation {
        display: flex;
        gap: 5px;
        padding: 12px 0;
        align-items: center;
    }

    .typing-animation span {
        width: 10px;
        height: 10px;
        background: var(--chatbot-primary);
        border-radius: 50%;
        animation: typing 1.4s infinite ease-in-out;
    }

    .typing-animation span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .typing-animation span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes typing {
        0%, 60%, 100% {
            transform: scale(1) translateY(0);
            opacity: 0.4;
        }
        30% {
            transform: scale(1.3) translateY(-8px);
            opacity: 1;
        }
    }

    .chatbot-quick-replies {
        padding: 1rem 1.2rem;
        background: var(--chatbot-white);
        border-top: 2px solid rgba(143, 111, 64, 0.3);
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        flex-shrink: 0;
    }

    .quick-reply {
        background: transparent;
        border: 2px solid var(--chatbot-primary);
        color: var(--chatbot-primary);
        padding: 0.6rem 1rem;
        border-radius: 25px;
        cursor: pointer;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
    }

    .quick-reply:hover {
        background: var(--chatbot-primary);
        color: var(--chatbot-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(143, 111, 64, 0.4);
    }

    .chatbot-input-area {
        padding: 1.2rem;
        background: var(--chatbot-white);
        border-top: 2px solid rgba(143, 111, 64, 0.3);
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-shrink: 0;
    }

    .chatbot-input-area input {
        flex: 1;
        border: 2px solid var(--chatbot-primary);
        padding: 0.9rem 1.2rem;
        border-radius: 25px;
        outline: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
        font-family: 'Inter', sans-serif;
    }

    .chatbot-input-area input:focus {
        border-color: var(--chatbot-black);
        box-shadow: 0 0 0 4px rgba(143, 111, 64, 0.1);
        background: var(--chatbot-white);
    }

    .chatbot-send {
        background: linear-gradient(135deg, var(--chatbot-primary), #b8925a);
        border: 2px solid var(--chatbot-black);
        color: var(--chatbot-white);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 1rem;
        box-shadow: 0 4px 12px rgba(143, 111, 64, 0.3);
        flex-shrink: 0;
    }

    .chatbot-send:hover:not(:disabled) {
        background: var(--chatbot-black);
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    }

    .chatbot-send:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Responsive Chatbot */
    @media (max-width: 768px) {
        .chatbot-widget {
            bottom: 1.2rem;
            right: 1.2rem;
        }

        .chatbot-trigger {
            width: 45px;
            height: 45px;
            border: 2px solid var(--chatbot-black);
            box-shadow: 0 4px 16px rgba(143, 111, 64, 0.3);
        }
        
        .chatbot-trigger i {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .chatbot-widget {
            bottom: 1rem;
            right: 1rem;
        }

        .chatbot-container {
            width: calc(100vw - 2rem);
            max-height: calc(100vh - 100px);
            right: 1rem;
            transform: scale(0.8) translateY(20px);
        }
        
        .chatbot-container.active {
            transform: scale(1) translateY(0);
        }

        .message-content {
            max-width: 85%;
        }
        
        .chatbot-trigger {
            width: 40px;
            height: 40px;
        }
        
        .chatbot-trigger i {
            font-size: 1rem;
        }
    }

    @media (max-width: 375px) {
        .chatbot-trigger {
            width: 38px;
            height: 38px;
        }
        
        .chatbot-trigger i {
            font-size: 0.95rem;
        }
    }

    /* ========================================
    OPTIMIZACIÓN PARA PANTALLAS 
    ======================================== */

    @media (min-width: 1280px) {
        /* Ajustes específicos para Full HD y superiores */
        .nav-container,
        .sculptures-container,
        .custom-order-content,
        .footer-content,
        .footer-bottom-content {
            max-width: 1920px;
        }
        
        .hero-content {
            max-width: 1920px;
        }
        
        .hero-title {
            font-size: 4rem;
        }
        
        .hero-description {
            font-size: 1.35rem;
        }
        
        .sculpture-img {
            max-height: 1100px;
            top: -11px; /* NUEVO - Sube más en Full HD */
        }
    }

    @media (min-width: 1600px) {
        /* Contenedores más anchos */
        .nav-container,
        .sculptures-container,
        .custom-order-content,
        .footer-content,
        .footer-bottom-content {
            max-width: 1800px;
        }
        
        /* Hero Section - Mejor distribución */
        .hero {
            padding: 120px 3rem 120px;
        }
        
        .hero-content {
            max-width: 1800px;
            gap: 4rem;
        }
        
        .sculpture-img {
            height: 95vh;
            max-height: 1000px;
            transform: translateX(-5%);
            top: 39px; /* NUEVO - Sube la imagen en pantallas grandes */
            left: -40px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 2rem;
        }
        
        .hero-description {
            font-size: 1.25rem;
            margin-bottom: 3rem;
        }
        
        .cta-button {
            padding: 1.1rem 2.8rem;
            font-size: 1.05rem;
        }
        
        /* Sculptures Section */
        .sculptures-section {
            padding: 120px 3rem;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 4rem;
        }
        
        .sculpture-card {
            width: 320px;
            min-width: 320px;
        }
        
        .sculpture-image {
            height: 320px;
        }
        
        .sculpture-name {
            font-size: 1.5rem;
            padding: 1.5rem 1.2rem 0.6rem;
        }
        
        .sculpture-category {
            font-size: 0.95rem;
            padding: 0 1.2rem;
        }
        
        .sculpture-price {
            font-size: 1.35rem;
            padding: 0.6rem 1.2rem 1.5rem;
        }
        
        .add-to-cart-btn {
            padding: 0.85rem 1.5rem;
            font-size: 0.95rem;
        }
        
        .nav-arrow {
            width: 55px;
            height: 55px;
            font-size: 1.1rem;
        }
        
        /* Custom Order Section */
        .custom-order-section {
            padding: 120px 3rem;
        }
        
        .custom-order-content {
            gap: 6rem;
        }
        
        .custom-title {
            font-size: 2.8rem;
            margin-bottom: 3rem;
        }
        
        .custom-form {
            max-width: 600px;
        }
        
        .form-row {
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .form-select,
        .form-input {
            padding: 0.9rem 1.2rem;
            font-size: 1rem;
        }
        
        .radio-label {
            font-size: 1.05rem;
        }
        
        .radio-custom {
            width: 20px;
            height: 20px;
            margin-right: 1rem;
        }
        
        .submit-btn {
            padding: 1.1rem 2.5rem;
            font-size: 1.05rem;
        }
        
        .sculpture-preview {
            max-width: 450px;
        }
        
        /* Footer */
        .footer {
            padding: 4.5rem 3rem 0;
        }
        
        .footer-content {
            gap: 4rem;
            padding-bottom: 3.5rem;
        }
        
        .footer-section h3 {
            font-size: 1.6rem;
            margin-bottom: 1.8rem;
        }
        
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.8rem;
        }
        
        .footer-description p,
        .footer-links a,
        .contact-info p {
            font-size: 1.05rem;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            font-size: 1.05rem;
        }
        
        .footer-bottom {
            padding: 2.5rem 0;
        }
        
        .footer-bottom-content {
            font-size: 1rem;
        }
    }

    @media (min-width: 1920px) {
        /* Ajustes específicos para Full HD y superiores */
        .nav-container,
        .sculptures-container,
        .custom-order-content,
        .footer-content,
        .footer-bottom-content {
            max-width: 1920px;
        }
        
        .hero-content {
            max-width: 1920px;
        }
        
        .hero-title {
            font-size: 4rem;
        }
        
        .hero-description {
            font-size: 1.35rem;
        }
        
        .sculpture-img {
            max-height: 1100px;
            top: 37px; /* NUEVO - Sube más en Full HD */
        }
    }

/* FIX TEMPORAL - FORZAR ESTILOS EN MÓVIL */
.sculpture-card {
    background: #1a1a1a !important;
    border: 1px solid rgba(143, 111, 64, 0.2) !important;
}

.sculpture-image {
    background: #8F6F40 !important;
}

/* ========================================
   RESPONSIVE PARA TABLETS - OPTIMIZADO Y COMPLETO
======================================== */

/* TABLETS GRANDES (1024px - Landscape iPads, Surface, etc.) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Header - Menú hamburguesa activado */
    .header {
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        margin-right: 1rem;
    }
    
    .logo {
        order: 2;
        font-size: 1.2rem;
        margin-right: auto;
    }
    
    .nav-icons {
        order: 3;
        gap: 1rem;
        z-index: 1003;
    }
    
    .nav-icon {
        font-size: 1.1rem;
    }
    
    /* Menú lateral */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        max-width: 350px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        border-right: 2px solid var(--primary-gold);
        order: 4;
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.7);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Dropdown en menú móvil */
    .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 2rem 80px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left {
        display: none;
    }
    
    .hero-right {
        grid-column: 1;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
        font-size: 0.95rem;
    }
    
    /* Sculptures Section - CAMBIO PRINCIPAL */
    .sculptures-section {
        padding: 90px 2rem;
    }
    
    .section-title {
        font-size: 2.3rem;
        margin-bottom: 3.5rem;
    }
    
    .sculptures-container {
        max-width: 600px; /* Reducido de 700px */
        padding: 0 60px;
        margin: 0 auto; /* Asegurar centrado */
    }
    
    .sculptures-slider {
        width: 100%;
    }
    
    .sculptures-grid {
        justify-content: center; /* NUEVO: Centrar productos */
    }
    
    /* CAMBIO CLAVE: 1 producto por vez */
    .sculpture-card {
        flex: none;
        width: 100%; /* Cambiado de calc(50% - 1rem) */
        min-width: 320px;
        max-width: 420px; /* Aumentado para aprovechar espacio */
        margin: 0 auto; /* Centrar la tarjeta */
    }
    
    .sculpture-image {
        height: 320px; /* Aumentado de 280px */
    }
    
    .sculpture-name {
        font-size: 1.45rem;
        padding: 1.4rem 1.1rem 0.6rem;
    }
    
    .sculpture-category {
        font-size: 0.9rem;
        padding: 0 1.1rem;
    }
    
    .sculpture-price {
        font-size: 1.3rem;
        padding: 0.6rem 1.1rem 1.4rem;
    }
    
    .add-to-cart-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.05rem;
    }
    
    .slider-indicators {
        margin-top: 2.5rem;
        gap: 12px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }

    /* Custom Order Section */
    .custom-order-section {
        padding: 90px 2rem;
    }
    
    .custom-order-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .custom-order-left {
        order: 1;
    }
    
    .custom-order-right {
        order: 2;
    }
    
    .custom-title {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .custom-form {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .form-row {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-select,
    .form-input {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .radio-label {
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .sculpture-preview {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer {
        padding: 3.5rem 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* TABLETS MEDIANAS (768px - Portrait iPads, Tablets Android) */
@media (min-width: 601px) and (max-width: 768px) {
    /* Header */
    .header {
        padding: 0.9rem 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        margin-right: 0.9rem;
    }
    
    .logo {
        order: 2;
        font-size: 1.15rem;
        margin-right: auto;
    }
    
    .nav-icons {
        order: 3;
        gap: 0.9rem;
    }
    
    .nav-icon {
        font-size: 1.05rem;
    }
    
    /* Menú lateral */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 95px 2rem 2rem;
        gap: 1.8rem;
        transition: left 0.3s ease;
        border-right: 2px solid var(--primary-gold);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 0.7rem 0;
        font-size: 1.05rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 95px 1.5rem 75px;
        min-height: 85vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        display: none;
    }
    
    .hero-right {
        grid-column: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.08rem;
        margin-bottom: 2.3rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        padding: 0.95rem 2.3rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 1.8rem;
        font-size: 0.9rem;
    }
    
    /* Sculptures Section - 1 PRODUCTO CENTRADO */
    .sculptures-section {
        padding: 80px 1.5rem;
    }
    
    .section-title {
        font-size: 2.1rem;
        margin-bottom: 3rem;
    }
    
    .sculptures-container {
        max-width: 500px;
        padding: 0 55px;
    }
    
    .sculptures-grid {
        justify-content: center;
    }
    
    .sculpture-card {
        flex: none;
        width: 100%;
        max-width: 350px;
        min-width: 300px;
    }
    
    .sculpture-image {
        height: 300px;
    }
    
    .sculpture-name {
        font-size: 1.4rem;
        padding: 1.4rem 1.1rem 0.6rem;
    }
    
    .sculpture-category {
        font-size: 0.88rem;
        padding: 0 1.1rem;
    }
    
    .sculpture-price {
        font-size: 1.25rem;
        padding: 0.6rem 1.1rem 1.4rem;
    }
    
    .add-to-cart-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.88rem;
    }
    
    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
    
    /* Custom Order Section */
    .custom-order-section {
        padding: 80px 1.5rem;
    }
    
    .custom-order-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .custom-title {
        font-size: 2.1rem;
        margin-bottom: 2.3rem;
        text-align: center;
    }
    
    .custom-form {
        max-width: 100%;
    }
    
    .form-row {
        gap: 1.3rem;
        margin-bottom: 1.8rem;
    }
    
    .form-select,
    .form-input {
        padding: 0.75rem 0.95rem;
        font-size: 0.95rem;
    }
    
    .radio-label {
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.95rem 2.3rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .sculpture-preview {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.3rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        width: 85%;
        max-width: 400px;
    }
}

/* AJUSTES ESPECÍFICOS PARA iPAD PRO 12.9" (1024x1366) */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1300px) {
    .hero {
        min-height: 70vh;
    }
    
    .sculptures-section,
    .custom-order-section {
        padding: 100px 2rem;
    }
}

/* AJUSTES ESPECÍFICOS PARA iPAD (768x1024) */
@media (min-width: 768px) and (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 60vh;
        padding: 90px 2rem 70px;
    }
    
    .sculptures-container {
        max-width: 550px;
    }
    
    .custom-order-content {
        max-width: 650px;
    }
}

/* OPTIMIZACIÓN PARA TABLETS EN LANDSCAPE */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 90px 2rem 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .sculptures-section {
        padding: 80px 2rem;
    }
    
    .custom-order-section {
        padding: 80px 2rem;
    }
    
    .custom-order-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 900px;
    }
    
    .custom-order-left {
        order: 1;
    }
    
    .custom-order-right {
        order: 2;
    }
    
    .custom-title {
        text-align: left;
        font-size: 2rem;
    }
}

/* OPTIMIZACIÓN PARA TABLETS EN PORTRAIT */
@media (min-width: 601px) and (max-width: 900px) and (orientation: portrait) {
    .hero {
        min-height: 70vh;
    }
    
    .sculptures-container {
        max-width: 500px;
    }
    
    /* Asegurar 1 producto centrado */
    .sculpture-card {
        width: 100%;
        max-width: 380px;
    }
}

/* FIX PARA EVITAR CONFLICTOS CON MÓVILES */
@media (max-width: 600px) {
    /* Los estilos de móvil toman precedencia */
    .sculptures-container {
        padding: 0 45px;
    }
    
    .sculpture-card {
        width: calc(100vw - 100px);
        max-width: 350px;
        min-width: 280px;
    }
}

/* AJUSTES FINALES PARA MENÚ OVERLAY */
@media (max-width: 1024px) {
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* ========================================
   CORRECCIONES QUIRÚRGICAS - SOLO RESOLUCIONES ESPECÍFICAS
   Añadir AL FINAL de styles.css (después de TODO el código existente)
   
   IMPORTANTE: Estas reglas NO afectarán ninguna otra resolución
======================================== */

/* ========================================
   1440 × 900 EXACTO (MacBook Pro 15", Laptops comunes)
   Solo se aplica cuando width Y height coinciden exactamente
======================================== */
@media only screen 
  and (min-width: 1440px) 
  and (max-width: 1440px) 
  and (min-height: 900px) 
  and (max-height: 900px) {
    
    /* HEADER */
    .header {
        padding: 1rem 2.5rem !important;
    }
    
    .nav-container {
        max-width: 1380px !important;
    }
    
    .logo {
        font-size: 1.25rem !important;
    }
    
    .nav-menu {
        gap: 1.8rem !important;
    }
    
    .nav-link {
        font-size: 0.93rem !important;
    }
    
    .nav-icon {
        font-size: 1.05rem !important;
    }
    
    /* HERO SECTION */
    .hero {
        min-height: 100vh !important;
        max-height: 900px !important;
        padding: 90px 2.5rem 80px !important;
    }
    
    .hero-content {
        max-width: 1380px !important;
        grid-template-columns: 1fr 1.3fr !important;
        gap: 2rem !important;
    }
    
    .hero-image {
        padding-left: 2.5rem !important;
    }
    
    .sculpture-img {
        height: 82vh !important;
        max-height: 750px !important;
        transform: translateX(-8%) !important;
        top: -10px !important; /* AJUSTADO: Sube para rozar el menú */
    }
    
    .hero-right {
        padding-top: 5vh !important;
    }
    
    .hero-title {
        font-size: 2.6rem !important;
        margin-bottom: 1.3rem !important;
        line-height: 1.15 !important;
    }
    
    .hero-description {
        font-size: 1.05rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.7 !important;
    }
    
    .cta-button {
        padding: 0.85rem 2rem !important;
        font-size: 0.93rem !important;
    }
    
    .scroll-indicator {
        bottom: 1.5rem !important;
        font-size: 0.88rem !important;
    }
}

/* ========================================
   2560 × 1440 EXACTO (2K/QHD - Monitors gaming, diseño)
   Solo se aplica cuando width Y height coinciden exactamente
======================================== */
@media only screen 
  and (min-width: 2560px) 
  and (max-width: 2560px) 
  and (min-height: 1440px) 
  and (max-height: 1440px) {
    
    /* HEADER */
    .header {
        padding: 1.3rem 3.5rem !important;
    }
    
    .nav-container {
        max-width: 2400px !important;
    }
    
    .logo {
        font-size: 1.5rem !important;
    }
    
    .logo .art {
        letter-spacing: 0.08em !important;
    }
    
    .nav-menu {
        gap: 2.8rem !important;
    }
    
    .nav-link {
        font-size: 1.1rem !important;
        letter-spacing: 0.02em !important;
    }
    
    .nav-icon {
        font-size: 1.3rem !important;
    }
    
    .cart-badge {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.8rem !important;
        top: -9px !important;
        right: -9px !important;
    }
    
    /* HERO SECTION */
    .hero {
        min-height: 100vh !important;
        max-height: 1400px !important;
        padding: 140px 3.5rem 120px !important;
    }
    
    .hero-content {
        max-width: 2400px !important;
        grid-template-columns: 1fr 1.5fr !important;
        gap: 4rem !important;
    }
    
    .hero-image {
        padding-left: 3.5rem !important;
        justify-content: flex-start !important;
    }
    
    .sculpture-img {
        height: 92vh !important;
        max-height: 1300px !important;
        transform: translateX(-12%) !important;
        top: 0px !important; /* AJUSTADO: Sube para rozar el menú */
        left: -50px !important;
        filter: drop-shadow(0 0 50px rgba(143, 111, 64, 0.4)) !important;
    }
    
    .hero-right {
        padding-top: 8vh !important;
        max-width: 1000px !important;
    }
    
    .hero-title {
        font-size: 4.5rem !important;
        margin-bottom: 2.5rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.01em !important;
    }
    
    .hero-description {
        font-size: 1.4rem !important;
        margin-bottom: 3.5rem !important;
        line-height: 1.8 !important;
        max-width: 850px !important;
    }
    
    .cta-button {
        padding: 1.2rem 3rem !important;
        font-size: 1.1rem !important;
        letter-spacing: 0.08em !important;
        border-width: 3px !important;
    }
    
    .scroll-indicator {
        bottom: 3rem !important;
        font-size: 1.05rem !important;
    }
    
    .scroll-indicator i {
        font-size: 1.2rem !important;
        margin-top: 0.7rem !important;
    }
}

/* ========================================
   3840 × 2160 EXACTO (4K/UHD - Monitors profesionales)
   Solo se aplica cuando width Y height coinciden exactamente
======================================== */
@media only screen 
  and (min-width: 3840px) 
  and (max-width: 3840px) 
  and (min-height: 2160px) 
  and (max-height: 2160px) {
    
    /* HEADER */
    .header {
        padding: 1.8rem 5rem !important;
        border-bottom-width: 3px !important;
    }
    
    .nav-container {
        max-width: 3600px !important;
    }
    
    .logo {
        font-size: 2rem !important;
    }
    
    .logo .art {
        letter-spacing: 0.1em !important;
    }
    
    .nav-menu {
        gap: 4rem !important;
    }
    
    .nav-link {
        font-size: 1.5rem !important;
        letter-spacing: 0.03em !important;
    }
    
    .nav-link::after {
        height: 3px !important;
        bottom: -7px !important;
    }
    
    .nav-icon {
        font-size: 1.8rem !important;
    }
    
    .cart-badge {
        width: 28px !important;
        height: 28px !important;
        font-size: 1rem !important;
        top: -12px !important;
        right: -12px !important;
        font-weight: 700 !important;
    }
    
    /* HERO SECTION */
    .hero {
        min-height: 100vh !important;
        max-height: 2100px !important;
        padding: 200px 5rem 180px !important;
    }
    
    .hero-content {
        max-width: 3600px !important;
        grid-template-columns: 1fr 1.6fr !important;
        gap: 6rem !important;
    }
    
    .hero-image {
        padding-left: 5rem !important;
        justify-content: flex-start !important;
    }
    
    .sculpture-img {
        height: 94vh !important;
        max-height: 2000px !important;
        transform: translateX(-15%) !important;
        top: 20px !important; /* AJUSTADO: Sube para rozar el menú */
        left: -80px !important;
        filter: drop-shadow(0 0 70px rgba(143, 111, 64, 0.5)) !important;
        opacity: 0.85 !important;
    }
    
    .hero-right {
        padding-top: 12vh !important;
        max-width: 1600px !important;
    }
    
    .hero-title {
        font-size: 6.5rem !important;
        margin-bottom: 3.5rem !important;
        line-height: 1.15 !important;
        letter-spacing: 0.02em !important;
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8) !important;
    }
    
    .hero-description {
        font-size: 2rem !important;
        margin-bottom: 5rem !important;
        line-height: 1.9 !important;
        max-width: 1300px !important;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6) !important;
    }
    
    .highlight {
        font-weight: 600 !important;
        text-shadow: 0 2px 4px rgba(143, 111, 64, 0.3) !important;
    }
    
    .cta-button {
        padding: 1.6rem 4rem !important;
        font-size: 1.5rem !important;
        letter-spacing: 0.1em !important;
        border-width: 4px !important;
    }
    
    .cta-button:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 35px rgba(143, 111, 64, 0.5) !important;
    }
    
    .scroll-indicator {
        bottom: 4rem !important;
        font-size: 1.4rem !important;
    }
    
    .scroll-indicator p {
        margin-bottom: 0.5rem !important;
    }
    
    .scroll-indicator i {
        font-size: 1.6rem !important;
        margin-top: 1rem !important;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-15px);
        }
        60% {
            transform: translateX(-50%) translateY(-8px);
        }
    }
}

/* ========================================
   VERIFICACIÓN DE NO INTERFERENCIA
   Estas reglas aseguran que NADA más se vea afectado
======================================== */

/* Protección para 1920×1080 (NO debe cambiar) */
@media only screen 
  and (min-width: 1920px) 
  and (max-width: 1920px) 
  and (min-height: 1080px) 
  and (max-height: 1080px) {
    /* Mantener estilos originales - NO hacer cambios */
}

/* Protección para 1366×768 (NO debe cambiar) */
@media only screen 
  and (min-width: 1366px) 
  and (max-width: 1366px) 
  and (min-height: 768px) 
  and (max-height: 768px) {
    /* Mantener estilos originales - NO hacer cambios */
}

/* Protección para 1600×900 (NO debe cambiar) */
@media only screen 
  and (min-width: 1600px) 
  and (max-width: 1600px) 
  and (min-height: 900px) 
  and (max-height: 900px) {
    /* Mantener estilos originales - NO hacer cambios */
}

