/* ==========================================
   ENSUEÑAME DETALLES - HOJA DE ESTILOS BASE
   Paleta: Warm Ivory & Rose Gold Accent
   ========================================== */

:root {
    --bg-warm-ivory: #FAF6F2;
    --rose-gold: #C59B8E;
    --rose-gold-dark: #A87E72;
    --rose-gold-hover: #8C655B;
    --soft-blush: #EAD5D0;
    --text-dark: #4A3E3C;
    --white: #FFFFFF;
    --shadow-subtle: 0 8px 30px rgba(197, 155, 142, 0.12);
}

/* Base Reset & Tipografía */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-warm-ivory);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Franja Logística Superior */
.logistics-banner {
    position: relative;
    z-index: 1001;
    background-color: var(--soft-blush);
    color: var(--text-dark);
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(197, 155, 142, 0.2);
}

/* Header Flotante & Navegación (Solución al Wrapper Inyectado) */
#header-placeholder,
header, 
.main-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    display: block;
    width: 100%;
}

header, .main-header {
    background-color: rgba(250, 246, 242, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 155, 142, 0.15);
    box-shadow: 0 4px 20px rgba(74, 62, 60, 0.08);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    line-height: 1;
}

.brand-sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--rose-gold-dark);
    display: block;
    margin-top: 3px;
}

.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

nav ul, #navMenu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

nav ul a:not(.btn-cotizar-header),
#navMenu ul a:not(.btn-cotizar-header) {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

nav ul a:not(.btn-cotizar-header)::after,
#navMenu ul a:not(.btn-cotizar-header)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--rose-gold-dark);
    transition: width 0.3s ease;
}

nav ul a:not(.btn-cotizar-header):hover::after,
#navMenu ul a:not(.btn-cotizar-header):hover::after {
    width: 100%;
}

nav ul a:not(.btn-cotizar-header):hover,
#navMenu ul a:not(.btn-cotizar-header):hover {
    color: var(--rose-gold-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-image: url('../../assets/images/events/mesa-principal-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(250, 246, 242, 0.88) 0%,
        rgba(250, 246, 242, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.hero h1 em {
    font-style: italic;
    color: var(--rose-gold-dark);
}

.hero p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 35px auto;
    font-weight: 400;
    color: var(--text-dark);
}

/* Botones CTA y Cotización Destacados */
.cta-btn,
.btn-cotizar-header,
.btn-cotizar-card {
    position: relative;
    background-color: var(--rose-gold-dark) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(168, 126, 114, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

.cta-btn::before,
.btn-cotizar-header::before,
.btn-cotizar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    animation: shineEffect 4s infinite ease-in-out;
}

@keyframes shineEffect {
    0% { transform: rotate(45deg) translateX(-150%); }
    20%, 100% { transform: rotate(45deg) translateX(150%); }
}

.cta-btn,
.btn-cotizar-header,
.btn-cotizar-card:not(.btn-disabled) {
    animation: pulseGlow 2.5s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 15px rgba(168, 126, 114, 0.35);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(168, 126, 114, 0.65);
        transform: scale(1.03);
    }
}

.cta-btn:hover,
.btn-cotizar-header:hover,
.btn-cotizar-card:hover:not(.btn-disabled) {
    background-color: var(--rose-gold-hover) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(168, 126, 114, 0.5);
}

/* Carrusel de Eventos */
.carousel-section {
    padding: 80px 0 40px 0;
    background-color: var(--white);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white);
}

.carousel-img-wrapper {
    height: 480px;
    width: 100%;
    background-color: var(--bg-warm-ivory);
    border-right: 1px solid rgba(197, 155, 142, 0.15);
    overflow: hidden;
}

.carousel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-slide:hover .carousel-img-wrapper img {
    transform: scale(1.03);
}

.carousel-info {
    padding: 50px 65px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FAF6F2;
}

.carousel-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.carousel-info p {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid rgba(197, 155, 142, 0.3);
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--rose-gold-dark);
    color: var(--white);
    border-color: var(--rose-gold-dark);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--soft-blush);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--rose-gold-dark);
}

/* Catálogo & Bloques de Categoría */
.catalog-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--rose-gold-dark);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.category-block {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(197, 155, 142, 0.15);
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.category-block:hover {
    border-color: rgba(197, 155, 142, 0.3);
    box-shadow: 0 12px 45px rgba(197, 155, 142, 0.15);
}

.category-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose-gold-dark), transparent);
    margin: 50px auto;
    width: 60%;
    opacity: 0.6;
}

.category-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--rose-gold-dark);
    border-left: 4px solid var(--rose-gold-dark);
    padding-left: 15px;
    font-weight: 500;
}

.category-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 30px;
    margin-left: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-warm-ivory);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 155, 142, 0.08);
}

.product-card:hover:not(.coming-soon-card) {
    transform: translateY(-5px);
    background-color: var(--white);
    box-shadow: var(--shadow-subtle);
    border-color: rgba(197, 155, 142, 0.2);
}

.product-image {
    height: 280px;
    background-color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(197, 155, 142, 0.08);
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(250, 246, 242, 0.95);
    color: var(--rose-gold-dark);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--rose-gold-dark);
    letter-spacing: 0.5px;
    z-index: 2;
}

.coming-soon-card {
    opacity: 0.75;
    filter: grayscale(20%);
}

.coming-soon-badge {
    background-color: var(--rose-gold-dark) !important;
    color: var(--white) !important;
    border-color: var(--rose-gold-dark) !important;
}

.btn-disabled {
    background-color: #d3d3d3 !important;
    color: #777777 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    animation: none !important;
    box-shadow: none !important;
}

.btn-disabled::before {
    display: none !important;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.product-desc {
    font-size: 0.85rem;
    color: rgba(74, 62, 60, 0.9);
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 300;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(197, 155, 142, 0.1);
}

.min-order {
    font-size: 0.8rem;
    color: var(--rose-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sección de Políticas */
.policies-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid rgba(197, 155, 142, 0.15);
    border-bottom: 1px solid rgba(197, 155, 142, 0.15);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.policy-card {
    text-align: center;
    padding: 20px;
}

.policy-icon {
    font-size: 2.2rem;
    color: var(--rose-gold-dark);
    margin-bottom: 20px;
}

.policy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-card p {
    font-size: 0.85rem;
    color: rgba(74, 62, 60, 0.9);
    font-weight: 300;
}

/* Modal de Cotizaciones */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 62, 60, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(197, 155, 142, 0.2);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.modal-header {
    background-color: var(--bg-warm-ivory);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(197, 155, 142, 0.15);
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--rose-gold-dark);
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--rose-gold-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(197, 155, 142, 0.3);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--bg-warm-ivory);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--rose-gold-dark);
    background-color: var(--white);
    box-shadow: 0 0 8px rgba(197, 155, 142, 0.25);
}

.modal-alert {
    background-color: #FAF2F2;
    border-left: 4px solid var(--rose-gold-dark);
    padding: 12px;
    font-size: 0.8rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    display: none;
}

/* Banner Cookies */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border: 1px solid rgba(197, 155, 142, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 15px 25px;
    width: calc(100% - 40px);
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 1999;
    transition: all 0.4s ease;
}

.cookie-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 300;
}

.cookie-btn {
    background-color: var(--rose-gold-dark);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

/* Botón Flotante de WhatsApp */
.whatsapp-float-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-tooltip {
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(197, 155, 142, 0.25);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.whatsapp-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-btn-float {
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.whatsapp-btn-float:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.whatsapp-btn-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Botón Flotante Scroll To Top */
.scroll-top-btn {
    position: fixed;
    bottom: 95px;
    right: 31px;
    width: 46px;
    height: 46px;
    background-color: var(--white);
    color: var(--rose-gold-dark);
    border: 1px solid rgba(197, 155, 142, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 62, 60, 0.12);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.scroll-top-btn:hover {
    background-color: var(--rose-gold-dark);
    color: var(--white);
    border-color: var(--rose-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 126, 114, 0.35);
}

/* Footer */
footer {
    background-color: var(--bg-warm-ivory);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(197, 155, 142, 0.15);
    font-size: 0.85rem;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--rose-gold-dark);
    font-size: 1.2rem;
    transition: color 0.3s;
}

/* Lightbox PhotoSwipe */
.lightbox-trigger {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.lightbox-trigger img {
    pointer-events: none;
}

.pswp {
    z-index: 4000 !important;
}

.pswp__bg {
    background-color: rgba(30, 25, 24, 0.92) !important;
}

/* Fechas Bloqueadas Flatpickr */
.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    color: #c5b8b5 !important;
    background: #fdf8f7 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
}

/* Optimización Móvil & Hamburguesa (< 768px) */
@media (max-width: 768px) {
    /* 1. Header & Menú Hamburguesa */
    .hamburger-toggle {
        display: block !important;
        z-index: 1010;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    nav, #navMenu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: rgba(250, 246, 242, 0.98) !important;
        box-shadow: 0 10px 25px rgba(74, 62, 60, 0.15) !important;
        border-top: 1px solid rgba(197, 155, 142, 0.2);
        z-index: 1005 !important;
    }

    nav.active, #navMenu.active {
        display: block !important;
    }

    nav ul, #navMenu ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 10px 0 !important;
        width: 100%;
    }

    nav ul li, #navMenu ul li {
        width: 100%;
    }

    nav ul li a:not(.btn-cotizar-header),
    #navMenu ul a:not(.btn-cotizar-header) {
        display: block !important;
        padding: 12px 25px !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(197, 155, 142, 0.1);
        text-align: left;
    }

    nav ul li a:not(.btn-cotizar-header)::after,
    #navMenu ul a:not(.btn-cotizar-header)::after {
        display: none;
    }

    .mobile-cta-item {
        padding: 15px 25px;
        width: 100%;
    }

    .btn-cotizar-header {
        width: auto !important;
        text-align: center;
        font-size: 0.8rem !important;
        padding: 0.4rem 0.75rem !important;
        white-space: nowrap;
    }

    /* 2. Hero & Carrusel */
    .hero h1 {
        font-size: 2.2rem;
    }
    .carousel-slide {
        grid-template-columns: 1fr;
    }
    .carousel-img-wrapper {
        height: 320px;
        border-right: none;
        border-bottom: 1px solid rgba(197, 155, 142, 0.15);
    }
    .carousel-info {
        padding: 30px;
    }

    /* 3. Catálogo & Tarjetas */
    .category-block {
        padding: 25px 15px;
        margin-bottom: 35px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(197, 155, 142, 0.08);
    }
    .category-title {
        font-size: 1.4rem;
    }
    .category-subtitle {
        font-size: 0.85rem;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .products-grid {
        gap: 20px;
    }
    .product-image {
        height: 230px;
    }
    .product-info {
        padding: 15px;
    }
    .product-name {
        font-size: 1.15rem;
    }
    .product-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    /* 4. Banner Cookies & Elementos Flotantes */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .whatsapp-float-container {
        bottom: 20px;
        right: 18px;
    }
    .scroll-top-btn {
        bottom: 85px;
        right: 24px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
    .whatsapp-btn-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}