/* variables DE DISEÑO PREMIUM (Sincronizado con colores de PDF y diseño 3D) */
:root {
    --primary: #CCA352;           /* Ochre Gold / Mostaza del PDF Oficial */
    --primary-hover: #B28C43;
    --primary-light: rgba(204, 163, 82, 0.08); /* Arena Dorada Translúcida */
    --primary-solid-light: #F7F3EB; /* Arena Clara */
    --secondary: #1A1613;         /* Espresso Premium / Casi Negro */
    --accent: #CCA352;            /* Oro del PDF */
    --accent-hover: #B28C43;
    --bg-light: #FBF9F6;          /* Fondo Cálido Suave */
    --white: #FFFFFF;
    
    /* Variables de Texto */
    --text-dark: #2A2421;         
    --text-muted: #84776F;        
    --border-color: #EDE7E0;      
    
    /* Variables de Profundidad (Sombras 3D Elevedas) */
    --shadow-flat: 0 1px 3px rgba(26, 22, 19, 0.05);
    --shadow-sm: 0 4px 12px rgba(26, 22, 19, 0.03);
    --shadow-md: 0 12px 32px rgba(26, 22, 19, 0.06), 0 2px 8px rgba(26, 22, 19, 0.02);
    --shadow-lg: 0 24px 64px rgba(26, 22, 19, 0.1), 0 4px 16px rgba(26, 22, 19, 0.04);
    --shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);
    
    /* Tipografías */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Bordes */
    --border-radius-sm: 6px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
}

/* RESET GENERAL Y ESTILOS BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Map legacy material-icons-round class to modern Material Symbols Rounded with full ligature rendering properties */
.material-icons-round {
    font-family: 'Material Symbols Rounded' !important;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

ul {
    list-style: none;
}

/* CONTENEDOR COMÚN */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

/* EFECTO GLOW AMBIENTAL (EVITA QUE SEA PLANO) */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 163, 82, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* BOTONES PREMIUM CON PROFUNDIDAD */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(204, 163, 82, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(204, 163, 82, 0.45);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background-color: var(--white);
    color: var(--secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-checkout {
    background-color: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-checkout:hover {
    background-color: #20BA56;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* ETIQUETAS Y CABECERAS DE SECCIÓN */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

/* BARRA SUPERIOR (TOP BAR) - Fondo oscuro con texto blanco (diseño original) */
.top-bar {
    background-color: var(--secondary); /* Espresso oscuro #1A1613 - diseño original */
    color: var(--white);
    font-size: 0.82rem;
    padding: 10px 0;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 101;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 28px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
}

.info-item .material-icons-round {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
    transition: var(--transition-fast);
}

.social-icon-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1.5px);
}

/* ENCABEZADO PRINCIPAL - LAYOUT FILA ÚNICA */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(251, 249, 246, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(237, 231, 224, 0.8);
    box-shadow: 0 4px 30px rgba(26, 22, 19, 0.06);
    transition: var(--transition-fast);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo imagen 3D */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-img-3d, .footer-logo-img-3d {
    height: 105px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 12px rgba(26, 22, 19, 0.15));
}

.logo-img-3d:hover, .footer-logo-img-3d:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 18px rgba(204, 163, 82, 0.35));
}

/* Acciones en la cabecera */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mantener compatibilidad con .logo-img original */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(26, 22, 19, 0.08));
}

.logo-img:hover {
    transform: scale(1.03) rotate(-1deg);
}

/* NAVEGACIÓN ESCRITORIO */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-desktop > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    border-radius: 30px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-hover);
    background-color: var(--primary-light);
}

.nav-link .material-icons-round {
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link .material-icons-round {
    transform: rotate(180deg);
}

/* DROPDOWN MENU ELEVADO */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 105;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.dropdown-menu li {
    margin-bottom: 4px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    padding-left: 20px;
}

.dropdown-menu li a.special-link {
    color: var(--white);
    font-weight: 600;
    background-color: var(--primary);
    margin-top: 8px;
    box-shadow: 0 4px 10px rgba(204,163,82,0.2);
}

.dropdown-menu li a.special-link:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    padding-left: 16px;
}

/* ACCIONES DE CABECERA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.action-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.hamburger-btn {
    display: none;
    position: relative;
    z-index: 600;
}

/* BARRA DE BÚSQUEDA DESPLEGABLE */
.search-dropdown-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(251, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition-smooth);
}

.search-dropdown-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 6px 20px;
    box-shadow: var(--shadow-inset);
}

.search-bar-icon {
    color: var(--primary);
    margin-right: 12px;
}

.search-container input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 4px;
    outline: none;
    font-size: 1rem;
}

/* SECCIÓN HÉROE (HERO CON CONTRASTE ELEVADO Y 3D - CENTRADO) */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(26, 22, 19, 0.1), rgba(26, 22, 19, 0.1)), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(26,22,19,0.15) 95%);
}

.hero-content {
    position: relative;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 5;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeInDown 0.8s var(--transition-smooth);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 4px 30px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.1s both;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 auto 40px auto;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 650px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.3s both;
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    z-index: 5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* SECCIÓN CARACTERÍSTICAS (OVERLAPPING LAYERED DESIGN) */
.features-section {
    padding: 0 0 60px 0;
    margin-top: -60px; /* Overlap en Hero */
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(237, 231, 224, 0.6);
    position: relative;
    cursor: pointer;
    user-select: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    width: calc(100% - 60px);
}

.feature-icon-wrapper {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(204, 163, 82, 0.15);
}

.feature-icon-wrapper .material-icons-round {
    font-size: 2rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.feature-expand-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-expand-icon {
    color: var(--primary);
}

.feature-card.active .feature-expand-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.feature-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-top: 1px dashed rgba(204, 163, 82, 0.25);
    padding-top: 0;
}

.feature-card.active .feature-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 18px;
    padding-top: 15px;
}

/* SECCIÓN CATÁLOGO DINÁMICO */
.catalog-section {
    padding: 100px 0;
    position: relative;
}

.catalog-filters {
    margin-bottom: 44px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-tab {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    background-color: var(--white);
    transition: var(--transition-fast);
}

.filter-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.filter-tab.active {
    background-color: var(--primary); /* Gold sólido del PDF */
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(204, 163, 82, 0.3);
}

/* Subcategorías */
.subcategories-panel {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding: 10px 0;
}

.subcat-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    color: var(--text-muted);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.subcat-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.subcat-btn.active {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    border-color: var(--primary);
}

.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.sort-wrapper select {
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--secondary);
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    outline: none;
    font-weight: 600;
}
.sort-wrapper select option {
    color: var(--secondary);
    background-color: var(--white);
}

/* GRID DE PRODUCTOS EN 3D */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 36px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(237, 231, 224, 0.5);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(204, 163, 82, 0.25);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    border-left: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    background-color: #F8F6F3;
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* Controles de Tarjeta 3D */
.product-overlay-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,22,19,0.4) 0%, transparent 80%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    padding-bottom: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay-actions {
    opacity: 1;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.overlay-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1) translateY(0);
}

.product-card:hover .overlay-btn:nth-child(1) {
    transform: translateY(0);
}

.product-card:hover .overlay-btn:nth-child(2) {
    transform: translateY(0);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
    border-top: 1px solid rgba(237, 231, 224, 0.3);
}

.product-cat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SECCIÓN ANCHETA BUILDER */
.builder-section {
    padding: 100px 0;
    background-color: var(--primary-solid-light); /* Fondo Arena Cálida */
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.builder-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.builder-selector {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.builder-step {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    opacity: 0.65;
    transition: var(--transition-smooth);
    position: relative;
}

.builder-step.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateZ(10px);
}

.builder-step::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 100%;
    width: 2px;
    height: 30px;
    background-color: var(--border-color);
    z-index: 1;
}

.builder-step:last-child::before {
    display: none;
}

.builder-step.active::before {
    background-color: var(--primary);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.step-num {
    background-color: var(--text-muted);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.builder-step.active .step-num {
    background-color: var(--primary);
}

.step-header h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--secondary);
}

.step-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.step-options-grid.mini {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Tarjetas de Selección en Configurador (Estilo 3D) */
.option-select-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.option-select-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.option-select-card.selected {
    border-color: var(--primary);
    background-color: rgba(204, 163, 82, 0.04);
    box-shadow: 0 4px 15px rgba(204, 163, 82, 0.15);
}

.option-icon-frame {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.option-select-card.selected .option-icon-frame {
    color: var(--primary);
    transform: scale(1.1);
}

.option-select-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.option-select-card .price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-hover);
    margin-top: auto;
}

.category-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.chip {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.chip:hover {
    color: var(--secondary);
    border-color: var(--primary);
}

.chip.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Panel Vista Previa de Ancheta (Maqueta de Regalo) */
.builder-preview-panel {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 120px;
    height: fit-content;
    transform: translateZ(20px);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.preview-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--secondary);
}

.ancheta-visual-box {
    background-color: var(--bg-light);
    border: 2px dashed var(--primary); /* Borde punteado en Oro */
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-inset);
    position: relative;
}

.ancheta-visual-box::before {
    content: '🎁';
    position: absolute;
    top: -16px;
    font-size: 1.8rem;
    background-color: var(--white);
    padding: 0 10px;
}

.visual-canvas {
    width: 100%;
}

.visual-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 230px;
    margin: 0 auto;
}

.ancheta-canvas-filled {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.canvas-element-tag {
    background-color: var(--white);
    border: 1px solid var(--primary);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.4s var(--transition-smooth);
}

.canvas-element-tag.base-tag {
    background-color: var(--primary);
    color: var(--white);
}

.ancheta-summary-list {
    margin-bottom: 24px;
}

.ancheta-summary-list h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.ancheta-summary-list ul {
    max-height: 150px;
    overflow-y: auto;
}

.ancheta-summary-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(26, 22, 19, 0.04);
}

.ancheta-price-section {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.price-row.total {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 16px;
}

/* SECCIÓN STORYTELLING (DISEÑO ASIMÉTRICO MODERNO) */
.story-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.story-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 550px;
}

.story-image-area {
    background-image: url('assets/story-macrame.png');
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: inset 10px 0 30px rgba(0,0,0,0.1);
}

.stamp-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 5px solid var(--primary);
}

.stamp-badge .material-icons-round {
    font-size: 2.2rem;
    color: var(--primary);
}

.stamp-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.story-content-area {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.story-content-area h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.25;
}

.story-content-area p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-badges {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.story-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.story-badge-item .material-icons-round {
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.story-badge-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.story-badge-item.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.story-badge-item.active .material-icons-round {
    color: var(--white);
}

.story-badge-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
    background-color: var(--primary-solid-light);
    padding: 0 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.story-badge-details.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
    padding: 18px 24px;
    border-color: rgba(204, 163, 82, 0.15);
}

/* SECCIÓN CONTACTO Y FORMULARIO (CAPAS ELEVADAS) */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-panel > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.channel-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.channel-card:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.channel-card .material-icons-round {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.channel-card h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.channel-card p {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
}

.contact-form-panel {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    border: 1px solid var(--border-color);
    position: relative;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    pointer-events: none;
}

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 1px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-light);
    color: var(--secondary);
    transition: var(--transition-fast);
    outline: none;
    font-size: 0.95rem;
    box-shadow: var(--shadow-inset);
    width: 100%;
}
.form-group select option {
    color: var(--secondary);
    background-color: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(204, 163, 82, 0.15);
}

/* FOOTER CON CONTRASTE */
.main-footer {
    background-color: var(--secondary);
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    border-top: 4px solid var(--primary); /* Franja dorada del PDF */
}

.footer-top {
    padding: 100px 0 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
}

.brand-col .logo-title {
    color: var(--white);
}

.brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 20px 0 28px 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-circle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
    transition: var(--transition-fast);
}

.social-circle:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(204, 163, 82, 0.25);
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    margin-top: 8px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.newsletter-col p {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 18px;
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: scale(1.05);
}

.footer-bottom {
    padding: 30px 0;
    font-size: 0.85rem;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* DRAWER DEL CARRITO DE COMPRAS SLIDEOUT */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 22, 19, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 460px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1010;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 28px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-light);
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-title h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--secondary);
}

.cart-badge-qty {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(204,163,82,0.2);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}

/* Carrito Vacío */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.empty-cart-icon {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.cart-empty-state h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.cart-empty-state p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
    max-width: 270px;
}

/* Artículos del Carrito */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.35;
}

.cart-item-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: auto;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #DE6B6B;
    transform: scale(1.1);
}

.qty-counter {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-inset);
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.qty-val {
    width: 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Footer del Carrito */
.cart-drawer-footer {
    padding: 28px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.02);
}

.cart-summary {
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: 12px;
}

.cart-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

.cart-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* MODAL DE DETALLE DE PRODUCTO QUICKVIEW (PREMIUM FLUIDO) */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 22, 19, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 920px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transform: scale(0.94);
    transition: var(--transition-smooth);
    border: 1px solid rgba(237, 231, 224, 0.5);
}

.product-modal-overlay.active .product-modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    background-color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: rotate(90deg);
}

.product-quickview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quickview-gallery {
    background-color: var(--bg-light);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-right: 1px solid var(--border-color);
    box-shadow: inset -10px 0 20px rgba(0,0,0,0.01);
}

.quickview-main-image-wrapper {
    width: 100%;
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.quickview-main-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.quickview-main-img:hover {
    transform: scale(1.04);
}

.quickview-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.quickview-thumb {
    width: 65px;
    height: 65px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-flat);
    background-color: var(--white);
}

.quickview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quickview-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(204, 163, 82, 0.4);
}

.quickview-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(204, 163, 82, 0.25);
    transform: scale(1.05);
}

.quickview-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.quickview-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.quickview-price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-hover);
    margin-bottom: 24px;
}

.quickview-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.quickview-details {
    margin-bottom: 32px;
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.detail-line {
    display: flex;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.detail-line:last-child {
    margin-bottom: 0;
}

.detail-line span:nth-child(1) {
    font-weight: 700;
    width: 110px;
    color: var(--secondary);
}

.quickview-actions {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.quickview-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quickview-qty-wrapper span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* NOTIFICACIÓN TOAST ELEVADA */
.toast-notification {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 3000;
    background-color: var(--secondary);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    transform: translateY(150%);
    opacity: 0;
    transition: var(--transition-smooth);
    border-left: 5px solid var(--primary);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--primary);
}

/* ANIMACIONES */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-link {
        padding: 8px 12px;
        font-size: 0.82rem;
    }
    .logo-img-3d {
        height: 85px;
    }
    .header-container {
        padding: 8px 16px;
    }
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .header-nav-row {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .builder-grid {
        grid-template-columns: 1fr;
    }
    
    .builder-preview-panel {
        position: static;
        margin-top: 20px;
    }
    
    .logo-img-3d, .footer-logo-img-3d {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0 80px 0;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 30px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .features-section {
        margin-top: -30px;
        padding: 0 0 40px 0;
    }
    
    .story-container {
        grid-template-columns: 1fr;
    }
    
    .story-image-area {
        height: 300px;
    }
    
    .story-content-area {
        padding: 50px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-panel {
        padding: 30px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-quickview-grid {
        grid-template-columns: 1fr;
    }
    
    .quickview-gallery {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .quickview-info {
        padding: 30px 24px;
    }
    
    .quickview-main-image-wrapper {
        height: 280px;
    }
    
    .product-modal-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 16px;
    }
    
    .product-modal-content {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .top-bar {
        display: none !important;
    }
}

/* NAVEGACIÓN MÓVIL SIDEBAR & OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 22, 19, 0.4);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 8px 0 40px rgba(0,0,0,0.12);
    z-index: 510;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.mobile-nav-list > li {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(26,22,19,0.03);
    padding-bottom: 16px;
}

.mobile-nav-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-nav-main-row a.mobile-cat-filter {
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    flex: 1;
    display: block;
    padding: 8px 0;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    padding: 8px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-submenu-toggle .material-icons-round {
    transition: var(--transition-fast);
}

.mobile-submenu-toggle.active .material-icons-round {
    transform: rotate(180deg);
}

.mobile-sublist {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding-left: 16px;
}

.mobile-sublist.active {
    max-height: 350px;
    margin-top: 10px;
}

.mobile-sublist a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mobile-sublist a:hover {
    color: var(--primary);
}

.mobile-nav-link {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    padding: 8px 0;
}

.mobile-sidebar .special-link {
    color: var(--white);
    font-weight: 700;
    background-color: var(--primary);
    padding: 10px 16px;
    border-radius: 30px;
    display: block;
    margin-top: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(204,163,82,0.2);
}

/* mobile sidebar footer */
.sidebar-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 24px 0 20px 0;
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.sidebar-contact-item .material-icons-round {
    font-size: 1.25rem;
    color: var(--primary);
}

.sidebar-socials {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.sidebar-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(204, 163, 82, 0.15);
}

.sidebar-social-link svg {
    fill: currentColor;
    transition: var(--transition-fast);
}

.sidebar-social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* LIGHTBOX DE LOGOTIPO Y PRODUCTO (ZOOM NAVIGABLE) */
.logo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 22, 19, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    cursor: zoom-out;
}

.logo-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.logo-lightbox img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.6));
    z-index: 2110;
}

/* BOTONES DE NAVEGACIÓN Y CIERRE DE LIGHTBOX */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2120;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-nav-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(204, 163, 82, 0.3);
}

.lightbox-nav-btn.prev-btn {
    left: 40px;
}

.lightbox-nav-btn.next-btn {
    right: 40px;
}

.lightbox-nav-btn .material-icons-round {
    font-size: 2.2rem;
    font-variation-settings: 'FILL' 0 !important; /* Outlined chevron */
}

.lightbox-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2120;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-close-btn:hover {
    background-color: #DE6B6B;
    border-color: #DE6B6B;
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 24px rgba(222, 107, 107, 0.3);
}

.lightbox-close-btn .material-icons-round {
    font-size: 1.8rem;
}

/* Adaptación responsiva para botones de Lightbox */
@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 48px;
        height: 48px;
    }
    .lightbox-nav-btn.prev-btn {
        left: 16px;
    }
    .lightbox-nav-btn.next-btn {
        right: 16px;
    }
    .lightbox-nav-btn .material-icons-round {
        font-size: 1.8rem;
    }
    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .lightbox-close-btn .material-icons-round {
        font-size: 1.5rem;
    }
}

.logo-lightbox.active img {
    transform: scale(1.15);
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float-icon {
        width: 28px;
        height: 28px;
    }
    .whatsapp-float-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .quickview-gallery {
        padding: 20px 16px;
    }
    .quickview-thumb {
        width: 55px;
        height: 55px;
    }
    .quickview-main-image-wrapper {
        height: 220px;
    }
}

/* ESTILOS PARA TRATAMIENTO DE DATOS / POLÍTICA DE PRIVACIDAD */
.newsletter-policy {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.policy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.newsletter-policy input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.newsletter-policy a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.newsletter-policy a:hover {
    color: var(--primary-hover);
}

.policy-modal-content {
    max-width: 800px !important;
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.policy-modal-body {
    text-align: left;
    color: var(--text-dark);
}

.policy-modal-body h2 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
    line-height: 1.3;
}

.policy-modal-body h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-modal-body h4 {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.policy-modal-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.policy-modal-body ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.policy-modal-body li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-modal-body hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

.policy-meta {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.policy-meta p {
    margin-bottom: 6px;
    font-size: 0.82rem;
}

.policy-meta p strong {
    color: var(--secondary);
}

.policy-meta p a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-modal-content {
        padding: 30px 20px;
        max-height: 90vh;
        width: 95%;
    }
    .policy-modal-body h2 {
        font-size: 1.3rem;
    }
    .policy-modal-body h3 {
        font-size: 1.05rem;
    }
}

/* SECCIÓN BLOG STYLING */
.blog-card {
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md) !important;
}

.blog-card .btn-outline {
    transition: var(--transition-fast);
}

.blog-card .btn-outline:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0 !important;
    }
    .blog-section h2 {
        font-size: 2rem !important;
    }
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Corrección de desplazamiento para evitar superposición del header sticky en secciones */
section[id], div[id].top-bar {
    scroll-margin-top: 110px;
}

/* SECCIÓN PREGUNTAS FRECUENTES (FAQ ACCORDION) */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    border-top: 1px solid var(--border-color);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(204, 163, 82, 0.35);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--secondary);
    text-align: left;
    gap: 16px;
    transition: var(--transition-fast);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-question span {
    line-height: 1.4;
}
.faq-icon {
    color: var(--text-muted);
    transition: transform 0.35s ease, color 0.3s ease;
}
.faq-item.active .faq-icon {
    color: var(--primary);
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* RESPONSIVE PREGUNTAS FRECUENTES */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.92rem;
    }
    .faq-answer-content {
        padding: 0 20px 16px 20px;
        font-size: 0.88rem;
    }
}
