/* VARIABLES MEJORADAS - PALETA PERFUMERÍA ELEGANTE */
:root {
    /* Colores base de la marca - DORADOS SUAVES */
    --gold: #c9a24d;
    --gold-light: #deb887;
    --gold-dark: #9d8344;
    --gold-accent: #d4a574;
    
    /* Fondos oscuros elegantes - más suaves */
    --bg-dark: #1a1817;
    --bg-darker: #0f0d0b;
    --bg-surface: #2a2723;
    --bg-card: #3a3531;
    
    /* Fondos claros elegantes */
    --ivory: #faf8f3;
    --cream: #f5f0e6;
    --linen: #faf3e0;
    
    /* Familia Floral */
    --rose-gold: #c9a5a5;
    --jasmine: #e8d4b0;
    --orchid: #d9a8d9;
    
    /* Familia Fresca */
    --aqua: #7db8b0;
    --mint: #89bfb2;
    --sky: #8fbdd1;
    
    /* Familia Amaderada */
    --sandalwood: #8d6b5a;
    --cedar: #8b8270;
    --amber: #c9a574;
    
    /* Familia Oriental */
    --spice: #b8704d;
    --vanilla: #f0dba8;
    --musk: #8b8878;
    
    /* Textos y neutrales */
    --charcoal: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #f7f7f7;
    --slate: #4a5568;
    --white: #ffffff;
    
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(201, 162, 77, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(201, 162, 77, 0.4), 0 0 30px rgba(201, 162, 77, 0.2);
    }
}

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

@keyframes droplet {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes perfumeBubble {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.2;
    }
}

/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

/* BODY CON FONDO ELEGANTE DE PERFUMERÍA - PREMIUM BLANCO Y NEGRO */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

/* ===== HEADER ELEGANTE DE PERFUMERÍA ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0f0d0b 0%, #1a1817 50%, #0f0d0b 100%);
    border-bottom: 3px solid var(--gold);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    animation: fadeInDown 1s ease;
    box-shadow: 0 12px 40px rgba(201, 162, 77, 0.15),
                0 0 30px rgba(0, 0, 0, 0.3);
}


.header-left {
    display: flex;
    align-items: center;
}

/* LOGO CON MARCO DORADO PREMIUM */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    position: relative;
    padding: 8px 18px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(201, 162, 77, 0.8);
    box-shadow:
        0 0 0 1px rgba(201, 162, 77, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 2px rgba(201, 162, 77, 0.5),
        0 12px 30px rgba(201, 162, 77, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(201, 162, 77, 0.35),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo:hover::after {
    opacity: 1;
}

.logo-jn {
    color: var(--gold);
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--vanilla));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.logo-img {
    height: 55px;
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
    animation: logoReveal 1.2s ease forwards;
    filter: drop-shadow(0 2px 8px rgba(229, 181, 103, 0.4));
    transition: var(--transition);
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(201, 162, 77, 0.5));
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(0);
}

.nav-link:hover {
    color: var(--gold);
}

/* ===== MENÚ HAMBURGUESA Y DROPDOWN ===== */
.logo-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

.hamburger:hover span {
    background: var(--gold-light);
    box-shadow: 0 0 10px rgba(201, 162, 77, 0.4);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(26, 24, 23, 0.95) 0%, rgba(42, 39, 35, 0.95) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    min-width: 200px;
    padding: 0.8rem 0;
    margin-top: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scaleY(0.95);
    transition: var(--transition);
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 162, 77, 0.2);
    backdrop-filter: blur(12px);
}

.dropdown-item {
    display: block;
    padding: 0.9rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(201, 162, 77, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-item:hover {
    color: var(--gold-light);
    border-left-color: var(--gold);
    background: rgba(201, 162, 77, 0.08);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.dropdown-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* BUTTONS ELEGANTES CON TEMÁTICA PERFUME */
.btn {
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-gold {
    background: linear-gradient(135deg, 
        var(--gold) 0%, 
        var(--amber) 100%);
    color: var(--white);
    box-shadow: 
        0 4px 15px rgba(201, 162, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Efecto de gota cayendo */
.btn-gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 10%, 
        transparent 20%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(201, 162, 119, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover::before {
    opacity: 1;
    animation: droplet 0.6s ease-out;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.4);
}

/* LÍNEA DORADA ANIMADA */
.gold-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        var(--gold-light),
        var(--spice),
        transparent
    );
    background-size: 200% 100%;
    animation: goldMove 3s ease-in-out infinite;
}

/* ===== HERO CON FONDO DE PERFUMERÍA ELEGANTE ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 3rem;
    padding-top: calc(3rem + 80px);
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    z-index: 1;
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
}

/* Textura elegante de fondo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a24d' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.3;
}

.hero-content {
    max-width: 700px;
    animation: slideInLeft 1.2s ease;
    position: relative;
    z-index: 2;
}

.hero-content.visible {
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;

    background: linear-gradient(
        135deg,
        #a58035 0%,
        #c9a24d 50%,
        #deb887 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.hero p {
    color: #050404;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero strong {
    color: #c9a24d;
    font-weight: 700;
    background: linear-gradient(45deg, #c9a24d, #deb887);
    -webkit-background-clip: text;
    background-clip: text;
    padding: 0 2px;
}

/* ===== HERO FLIP CARDS 3D ===== */
.hero-flip-cards {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    padding-top: calc(4rem + 80px);
    background: linear-gradient(135deg, #fffcfc 0%, #ffffff 50%, #ece7e7 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
}

.hero-flip-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 77, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 77, 0.03) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
}

.hero-flip-content {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 30px; /* ← Espacio interno superior */
}

.flip-cards-header {
    text-align: center;
    margin-bottom: 1.5rem; /* Reducido de 3rem */
    margin-top: -1rem; /* Opcional: sube todo el bloque */
    animation: fadeInDown 0.8s ease;
}

.flip-cards-header h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #a58035 0%, #c9a24d 50%, #deb887 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem; /* Reducido de 1rem */
    font-weight: 800;
}

.flip-cards-header p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.flip-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0;
    perspective: 1000px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .flip-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1320px;
    }

    .flip-card-back {
        padding: 1.8rem;
    }

    .flip-card-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .flip-card-final-price {
        font-size: 1.55rem;
    }
}

/* FLIP CARD 3D */
.flip-card {
    height: auto;
    min-height: 380px;
    cursor: pointer;
    position: relative;
    animation: flipCardEnter 0.8s ease forwards;
    opacity: 0;
}

@keyframes flipCardEnter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
    background: white;
    transform: rotateY(0deg);
}

.flip-card-back {
    background: linear-gradient(135deg, #faf8f3 0%, #f5ede2 100%);
    transform: rotateY(180deg);
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
    gap: 0.8rem;
}

/* IMAGEN DEL PRODUCTO */
.flip-card-image-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f6f0 0%, #faf8f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    padding: 0.5rem;
}

.flip-card:hover .flip-card-image {
    transform: scale(1.08);
}

.flip-card-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #c9a24d, #deb887);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.4);
    z-index: 10;
}

/* CONTENIDO DEL FRENTE */
.flip-card-front-content {
    padding: 1rem;
    background: white;
    text-align: center;
}

.flip-card-front-content h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;  /* ← PRIMERO */
    -webkit-line-clamp: 2;         /* ← DESPUÉS */
    line-clamp: 2; /* ← PROPIEDAD ESTÁNDAR AÑADIDA */
    overflow: hidden;
}

/* CONTENIDO DEL REVERSO */
.flip-card-back-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flip-card-back-content h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.flip-card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    min-height: 40px;
}

.flip-card-prices {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.flip-card-original-price {
    color: #999;
    font-size: 0.9rem;
    text-decoration: line-through;
}

.flip-card-final-price {
    color: #c9a24d;
    font-size: 1.45rem;
    font-weight: 800;
}

.flip-card-btn {
    background: linear-gradient(135deg, #c9a24d, #deb887);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
    border: none;
    cursor: pointer;
}

.flip-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
    background: linear-gradient(135deg, #deb887, #e5b15f);
}



/* ===== MODAL PROMOCIONAL 2x150.000 ===== */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.promo-modal-overlay.active {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
}

.promo-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: promoModalSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
}

@keyframes promoModalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.promo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-close:hover {
    color: #c9a24d;
}

.promo-modal-header {
    background: linear-gradient(135deg, #c9a24d, #deb887);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.promo-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
    animation: promoGift 0.6s ease infinite;
}

@keyframes promoGift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.promo-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.promo-modal-body {
    padding: 2.5rem 2rem;
}

.promo-intro {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.promo-intro .highlight {
    color: #c9a24d;
    font-weight: 800;
    font-size: 1.1rem;
}

.promo-offer {
    background: linear-gradient(135deg, #faf8f3 0%, #f5ede2 100%);
    border: 2px solid #c9a24d;
    border-radius: 15px;
    padding: 1.8rem;
    margin-bottom: 1.8rem;
    text-align: center;
}

.promo-offer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.promo-qty {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.promo-price {
    background: linear-gradient(135deg, #c9a24d, #deb887);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.2rem;
    font-weight: 900;
}

.promo-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.promo-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #c9a24d;
    font-size: 1.1rem;
    min-width: 20px;
}

.promo-cta-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #c9a24d, #deb887);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.3);
}

.promo-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 162, 77, 0.4);
    background: linear-gradient(135deg, #deb887, #e5b15f);
}

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

/* ===== RESPONSIVE AUTOMÁTICO MODAL PROMO ===== */
/* ===== MODAL PROMO SIN SCROLL (AUTO-RESPONSIVE) ===== */

.promo-modal {
    width: min(92vw, 520px);
    height: auto;
    max-height: none;
    border-radius: 20px;
}

/* 📱 MÓVILES PEQUEÑOS */
@media (max-height: 700px), (max-width: 480px) {
    .promo-modal-header {
        padding: 1.8rem 1.4rem;
    }

    .promo-modal-header h2 {
        font-size: 1.35rem;
    }

    .promo-icon {
        font-size: 1.9rem;
        margin-bottom: 0.5rem;
    }

    .promo-modal-body {
        padding: 1.6rem 1.4rem;
    }

    .promo-offer {
        padding: 1.2rem;
        margin-bottom: 1.3rem;
    }

    .promo-offer-main {
        flex-direction: column;
        gap: 0.4rem;
    }

    .promo-price {
        font-size: 1.8rem;
    }

    .promo-qty {
        font-size: 1rem;
    }

    .promo-benefits {
        gap: 0.6rem;
        margin-bottom: 1.4rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .promo-cta-btn {
        font-size: 1rem;
        padding: 0.85rem;
    }
}

/* 📱 MÓVILES MUY BAJOS (casos extremos) */
@media (max-height: 600px) {
    .promo-modal-header {
        padding: 1.4rem 1.2rem;
    }

    .promo-modal-body {
        padding: 1.2rem;
    }

    .promo-benefits {
        display: none; /* se ocultan beneficios para que TODO entre */
    }
}

/* 💻 DESKTOP */
@media (min-width: 1024px) {
    .promo-modal {
        width: 520px;
    }
}




.featured-flip-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Ajuste visual para esta sección */
.featured .flip-card {
    height: 320px;
}

.featured .flip-card-image {
    height: 100%;
    object-fit: cover;
}

.featured h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ===== CARRUSEL HORIZONTAL ===== */
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    width: 100%;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    max-width: 1200px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    width: 100%;
}

.carousel-slide {
    min-width: calc(50% - 1rem);
    flex-shrink: 0;
}

.carousel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 162, 77, 0.2);
}

.carousel-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f6f0 0%, #faf8f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.carousel-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    min-height: 150px;
}

.carousel-content h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    line-height: 1.3;
    max-height: 2.6em;
}

.carousel-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-price {
    color: #c9a24d;
    font-size: 1.4rem;
    font-weight: 800;
}

.carousel-btn-detail {
    background: linear-gradient(135deg, #c9a24d, #deb887);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
    align-self: center;
    font-size: 0.9rem;
}

.carousel-btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
}

/* Botones de navegación */
.carousel-btn {
    background: linear-gradient(135deg, #c9a24d, #deb887);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
}

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

/* Indicadores */
.carousel-indicators {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #c9a24d;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background: #c9a24d;
    transform: scale(1.3);
}



/* ===== SECCIÓN DE PRODUCTOS DESTACADOS - FAMILIAS OLFATIVAS ===== */
.featured {
    padding: 6rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, 
        #1a1817 0%,
        #0f0d0b 50%,
        #1a1a1a 100%
    );
    position: relative;
    z-index: 2;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(201, 162, 77, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(184, 112, 77, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(201, 162, 119, 0.04) 0%, transparent 40%);
    z-index: -1;
}

.featured h2 {
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.featured h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #c85a3a, #88d3ce, #d4a574);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #c9a24d;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(201, 162, 77, 0.15),
        0 0 0 1px rgba(201, 162, 77, 0.2);
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.6s;
}

.product-card:hover::after {
    left: 100%;
}

.product-card.visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* Cada tarjeta representa una familia olfativa diferente */
.product-card:nth-child(1) {
    /* Floral */
    border-top: 5px solid #c9a24d;
    background: linear-gradient(135deg, 
        rgba(26, 24, 23, 0.95) 0%, 
        rgba(58, 53, 49, 0.98) 100%);
}

.product-card:nth-child(1)::before {
    background: linear-gradient(90deg, #c9a24d, #deb887);
}

.product-card:nth-child(2) {
    /* Fresco/Acuático */
    border-top: 5px solid var(--aqua);
    background: linear-gradient(135deg, 
        rgba(26, 24, 23, 0.95) 0%, 
        rgba(58, 53, 49, 0.98) 100%);
}

.product-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--aqua), var(--mint));
}

.product-card:nth-child(3) {
    /* Amaderado */
    border-top: 5px solid #b8704d;
    background: linear-gradient(135deg, 
        rgba(26, 24, 23, 0.95) 0%, 
        rgba(58, 53, 49, 0.98) 100%);
}

.product-card:nth-child(3)::before {
    background: linear-gradient(90deg, #b8704d, #c9a574);
}

.product-card:nth-child(4) {
    /* Oriental */
    border-top: 5px solid var(--amber);
    background: linear-gradient(135deg, 
        rgba(26, 24, 23, 0.95) 0%, 
        rgba(58, 53, 49, 0.98) 100%);
}

.product-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--amber), #f0dba8);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(201, 162, 77, 0.12),
        inset 0 0 0 1px rgba(201, 162, 77, 0.25);
    border-color: #c9a24d;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.product-card:nth-child(1) .product-icon {
    background: linear-gradient(45deg, var(--rose-gold), var(--orchid));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-card:nth-child(2) .product-icon {
    background: linear-gradient(45deg, var(--aqua), var(--sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-card:nth-child(3) .product-icon {
    background: linear-gradient(45deg, var(--sandalwood), var(--cedar));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-card:nth-child(4) .product-icon {
    background: linear-gradient(45deg, var(--amber), var(--vanilla));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-card:hover .product-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

.product-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-card p {
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.6;
}


/* ===== VIDEO SECTION - ELEGANCIA MINIMALISTA ===== */
/* ===== VIDEO SECTION - ELEGANCIA MINIMALISTA ===== */
.video-section {
    padding: 7rem 3rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, 
        #1a1a1a 0%,
        #0f0f0f 50%,
        #1a1a1a 100%
    );
    z-index: 2;
    border-top: 1px solid rgba(201, 162, 77, 0.1);
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 162, 77, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(184, 112, 77, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(217, 168, 217, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.video-section.visible {
    animation: fadeInUp 1s ease forwards;
}

.video-section h2 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
    font-weight: 800;

    background: linear-gradient(135deg, #a58035 0%, #c9a24d 50%, #deb887 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    animation: fadeInDown 0.8s ease;
}

/* VIDEO PLACEHOLDER - ESTILO BASE */
.video-placeholder {
    max-width: 800px;
    min-height: 200px; /* Cambiado de height fijo a min-height */
    margin: auto;
    border: 2px solid #c9a24d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a24d;
    font-size: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        #2a2a2a 0%,
        #1a1a1a 100%
    );
    position: relative;
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(201, 162, 77, 0.15);
}

/* Cuando tiene contenido dinámico */
.video-placeholder:has(.youtube-short-container),
.video-placeholder:has(.instagram-wrapper),
.video-placeholder:has(.drive-video-container) {
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: auto;
    height: auto;
    padding: 20px;
}

/* Ocultar el borde animado cuando hay video */
.video-placeholder:has(.youtube-short-container)::before,
.video-placeholder:has(.instagram-wrapper)::before,
.video-placeholder:has(.drive-video-container)::before {
    display: none;
}

/* Borde dorado animado (solo para placeholder vacío) */
.video-placeholder:not(:has(.youtube-short-container)):not(:has(.instagram-wrapper)):not(:has(.drive-video-container))::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        var(--gold), 
        var(--amber), 
        var(--rose-gold), 
        var(--aqua),
        transparent
    );
    z-index: -1;
    border-radius: 22px;
    animation: shimmer 2s linear infinite;
}

.video-placeholder:not(:has(.youtube-short-container)):not(:has(.instagram-wrapper)):not(:has(.drive-video-container)):hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        inset 0 0 0 2px rgba(201, 162, 77, 0.3);
    border-color: #deb887;
}

.video-placeholder span {
    z-index: 2;
    background: rgba(0, 0, 0, 0.05);
    padding: 1.5rem 3rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    border: 1px solid rgba(201, 162, 77, 0.2);
    color: var(--text-light);
    backdrop-filter: blur(5px);
}

/* ===== ESTILOS PARA YOUTUBE SHORTS ===== */
.youtube-short-container {
    animation: fadeInUp 0.8s ease;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Contenedor interno del short */
.youtube-short-container > div {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Iframe del short */
.youtube-short-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ===== INSTAGRAM EMBEDS ===== */
/* ===== RESPONSIVE PARA VIDEO SECTION ===== */
@media (max-width: 768px) {
    .video-section {
        padding: 4rem 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        overflow-x: hidden !important; /* Evita desbordamiento horizontal */
    }
    
    .video-section .container {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .video-placeholder {
        height: auto !important;
        min-height: 300px !important;
        padding: 15px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .video-section h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .youtube-short-container > div {
        max-width: 320px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .instagram-wrapper {
        max-width: 360px !important;
        padding: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .instagram-wrapper .instagram-media {
        display: inline-block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .drive-video-container {
        max-width: 100% !important;
        border-radius: 16px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    /* Regla adicional para cualquier contenido dentro de video-section */
    .video-section > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .youtube-short-container > div {
        max-width: 280px !important;
    }
    
    .video-placeholder {
        min-height: 250px !important;
        padding: 10px !important;
    }

    .instagram-wrapper {
        max-width: 320px !important;
        padding: 0.8rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    .instagram-wrapper .instagram-media {
        display: inline-block !important;
        margin: 0 !important;
    }

    .drive-video-container {
        border-radius: 14px !important;
    }
}

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===== ESTILOS DE CARGA ===== */
.video-placeholder .loading-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #c9a24d;
    font-size: 1.2rem;
    height: 100%;
    min-height: 200px;
}

.loading-video i {
    font-size: 2.5rem;
    animation: spin 1s linear infinite;
}

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

/* Ocultar loading cuando haya video */
.video-placeholder:has(.youtube-short-container) .loading-video,
.video-placeholder:has(.instagram-wrapper) .loading-video,
.video-placeholder:has(.drive-video-container) .loading-video {
    display: none;
}

/* ===== ESTILOS PARA DIFERENTES FORMATOS DE VIDEO ===== */

/* Contenedor para videos normales (16:9) */
.youtube-video-container {
    max-width: 650px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Contenedor para videos de Google Drive */
.drive-video-container {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
    aspect-ratio: 16 / 9;
    min-height: 280px;
}

.drive-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: inherit;
    display: block;
}

@supports not (aspect-ratio: 16 / 9) {
    .drive-video-container {
        min-height: 0;
        padding-top: 56.25%;
    }

    .drive-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Contenedor para shorts (9:16) */
.youtube-short-container {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Asegurar que el placeholder se adapte */
.video-placeholder:has(.youtube-video-container),
.video-placeholder:has(.youtube-short-container),
.video-placeholder:has(.instagram-wrapper),
.video-placeholder:has(.drive-video-container) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px !important;
    height: auto !important;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .youtube-video-container {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .youtube-short-container {
        max-width: 320px;
    }

    .instagram-wrapper {
        max-width: 360px;
        padding: 1rem;
    }

    .drive-video-container {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .video-placeholder {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .youtube-short-container {
        max-width: 280px;
    }

    .instagram-wrapper {
        max-width: 320px;
        padding: 0.75rem;
    }

    .drive-video-container {
        border-radius: 14px;
    }
    
    .video-placeholder {
        padding: 10px !important;
        min-height: 180px;
    }
}
/* ===== FOOTER ELEGANTE ===== */
.footer {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(
        135deg,
        #1a1817 0%,
        #0f0d0b 100%
    );
    color: var(--white);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    border-top: 2px solid rgba(201, 162, 77, 0.4);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.7);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        var(--amber),
        var(--rose-gold),
        transparent
    );
}

.footer p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.4px;
}

/* ===== EFECTOS DE PARTÍCULAS - BURBUJAS DE PERFUME ===== */
.floating-particle {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(1px);
    opacity: 0.1;
    mix-blend-mode: overlay;
    animation: perfumeBubble 8s ease-in-out infinite;
}
/* Estilos por defecto - Hamburguesa visible en todas las pantallas */
.hamburger {
    display: flex !important;
}

.dropdown-menu {
    display: none;
}

.dropdown-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
}

.logo-link {
    cursor: pointer;
    text-decoration: none;
}

/* ===== RESPONSIVE AUTOMÁTICO Y COHERENTE ===== */

/* 🖥️ DESKTOP (1200px+) - BASE */
@media (min-width: 1200px) {
    .header {
        padding: 1rem 3rem;
    }
    
    .nav {
        gap: 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 0 3rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-flip-cards {
        padding: 4rem 2rem;
    }
    
    .flip-cards-header h1 {
        font-size: 2.8rem;
    }
    
    .flip-cards-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .flip-card {
        height: 380px;
    }
    
    .featured, .about, .video-section {
        padding: 6rem 3rem;
    }
    
    .featured h2, .about h2, .video-section h2 {
        font-size: 2.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .video-placeholder {
        height: 450px;
    }
}

/* 📱 TABLETS MEDIANOS (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .header {
        padding: 1rem 2rem;
    }
    
    .hero {
        padding: 0 2rem;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-flip-cards {
        padding: 3.5rem 1.5rem;
    }
    
    .flip-cards-header h1 {
        font-size: 2.4rem;
    }
    
    .flip-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .flip-card {
        height: 350px;
    }
    
    .featured, .about, .video-section {
        padding: 5rem 2rem;
    }
    
    .featured h2, .about h2, .video-section h2 {
        font-size: 2.4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .video-placeholder {
        height: 400px;
    }
}

/* 📱 TABLETS (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .header {
        padding: 0.9rem 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav {
        display: flex;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 2rem 1.5rem;
        text-align: center;
        min-height: calc(100vh - 65px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .hero-flip-cards {
        padding: 2.5rem 1rem;
        min-height: auto;
    }
    
    .flip-cards-header h1 {
        font-size: 2rem;
    }
    
    .flip-cards-header p {
        font-size: 0.95rem;
    }
    
    .flip-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .flip-card {
        height: 320px;
    }
    
    .flip-card-front-content {
        padding: 1rem;
    }
    
    .flip-card-front-content h3 {
        font-size: 1.2rem;
    }
    
    .flip-card-back {
        padding: 1.2rem;
        gap: 0.7rem;
    }
    
    .flip-card-back-content h3 {
        font-size: 1.1rem;
    }
    
    .flip-card-description {
        font-size: 0.9rem;
        line-height: 1.5;
        min-height: auto;
    }
    
    .flip-card-final-price {
        font-size: 1.3rem;
    }
    
    .flip-card-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .featured, .about, .video-section {
        padding: 4rem 1.5rem;
    }
    
    .featured h2, .about h2, .video-section h2 {
        font-size: 2.2rem;
    }

    /* Carrusel en tablets */
    .carousel-wrapper {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .carousel-slide {
        min-width: calc(50% - 1.5rem);
    }

    .carousel-image {
        height: 260px;
    }

    .carousel-content {
        padding: 1.3rem;
        min-height: 160px;
    }

    .carousel-content h3 {
        font-size: 1.15rem;
    }

    .carousel-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .carousel-price {
        font-size: 1.3rem;
    }

    .carousel-btn-detail {
        padding: 0.75rem 1.3rem;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        gap: 0.75rem;
        margin-top: 2.5rem;
    }

    .carousel-indicator {
        width: 12px;
        height: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .video-placeholder {
        height: 350px;
        max-width: 600px;
    }
    
    .video-placeholder span {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .promo-modal {
        max-width: 90%;
        width: 100%;
    }
    
    .promo-modal-header {
        padding: 2rem 1.5rem;
    }
    
    .promo-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .promo-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .promo-price {
        font-size: 1.8rem;
    }
}

/* 📱 CELULAR GRANDE (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .header {
        padding: 0.8rem 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav {
        display: flex;
        gap: 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
        text-align: center;
        min-height: calc(100vh - 60px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-flip-cards {
        padding: 2rem 1rem;
    }
    
    .flip-cards-header h1 {
        font-size: 1.7rem;
        margin-bottom: 0.5rem;
    }
    
    .flip-cards-header p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .flip-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .flip-card {
        height: 300px;
    }
    
    .featured, .about, .video-section {
        padding: 3rem 1rem;
    }
    
    .featured h2, .about h2, .video-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    /* Carrusel en celular grande */
    .carousel-wrapper {
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .carousel-btn {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .carousel-slide {
        min-width: calc(50% - 1.2rem);
    }

    .carousel-image {
        height: 240px;
    }

    .carousel-content {
        padding: 1.2rem;
        min-height: 140px;
    }

    .carousel-content h3 {
        font-size: 1.05rem;
    }

    .carousel-content p {
        font-size: 0.87rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .carousel-price {
        font-size: 1.25rem;
    }

    .carousel-btn-detail {
        padding: 0.72rem 1.25rem;
        font-size: 0.88rem;
    }

    .carousel-indicators {
        gap: 0.7rem;
        margin-top: 2rem;
    }

    .carousel-indicator {
        width: 11px;
        height: 11px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .product-card {
        padding: 1.5rem 1rem;
    }
    
    .product-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .video-placeholder {
        height: 300px;
        max-width: 100%;
    }
    
    .video-placeholder span {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .promo-modal {
        width: min(95vw, 450px);
    }
    
    .promo-modal-header {
        padding: 1.8rem 1.4rem;
    }
    
    .promo-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .promo-modal-body {
        padding: 1.6rem 1.4rem;
    }
    
    .promo-price {
        font-size: 1.6rem;
    }
}

/* 📱 CELULAR PEQUEÑO (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .header {
        padding: 0.75rem 0.8rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav {
        display: flex;
        gap: 0.6rem;
        font-size: 0.75rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.6rem;
    }
    
    .hero {
        padding: 1.2rem 0.8rem;
        text-align: center;
        min-height: calc(100vh - 55px);
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-flip-cards {
        padding: 1.5rem 0.8rem;
    }
    
    .flip-cards-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .flip-cards-header p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .flip-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
    }
    
    .flip-card {
        height: 320px;
        min-height: 320px;
    }
    
    .flip-card-front-content {
        padding: 0.8rem 0.6rem;
    }
    
    .flip-card-front-content h3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .flip-card-back {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .flip-card-back-content {
        gap: 0.5rem;
    }
    
    .flip-card-back-content h3 {
        font-size: 0.95rem;
        margin: 0;
    }
    
    .flip-card-description {
        font-size: 0.85rem;
        line-height: 1.4;
        min-height: auto;
    }
    
    .flip-card-prices {
        gap: 0.2rem;
    }
    
    .flip-card-original-price {
        font-size: 0.8rem;
    }
    
    .flip-card-final-price {
        font-size: 1.15rem;
    }
    
    .flip-card-btn {
        padding: 0.6rem 0.9rem;
        font-size: 0.75rem;
    }
    .flip-card-description {
        font-size: 0.8rem;
        line-height: 1.35;
        min-height: 25px;
        margin: 0;
    }
    
    .flip-card-front-content h3 {
        font-size: 1.1rem;
    }
    
    .flip-card-prices {
        gap: 0.2rem;
    }
    
    .flip-card-original-price {
        font-size: 0.8rem;
    }
    
    .flip-card-final-price {
        font-size: 1.2rem;
    }
    
    .flip-card-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .featured, .about, .video-section {
        padding: 2.5rem 0.8rem;
    }
    
    .featured h2, .about h2, .video-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        padding: 1.2rem 0.8rem;
    }
    
    .product-icon {
        font-size: 2.2rem;
    }
    
    .product-card h3 {
        font-size: 1rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .video-placeholder span {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 1.5rem 0.8rem;
    }
    
    .promo-modal {
        width: min(96vw, 380px);
    }
    
    .promo-modal-header {
        padding: 1.5rem 1.2rem;
    }
    
    .promo-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .promo-modal-body {
        padding: 1.4rem 1.2rem;
    }
    
    .promo-price {
        font-size: 1.4rem;
    }
    
    .promo-benefits {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
}

/* 📱 CELULAR EXTRA PEQUEÑO (< 480px) */
@media (max-width: 479px) {
    .header {
        padding: 0.6rem 0.6rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav {
        display: flex;
        gap: 0.4rem;
        font-size: 0.7rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.4rem;
    }
    
    .hero {
        padding: 1rem 0.6rem;
        text-align: center;
        min-height: calc(100vh - 50px);
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    .hero-flip-cards {
        padding: 1rem 0.6rem;
    }
    
    .flip-cards-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0;
    }
    
    .flip-card {
        height: auto;
        min-height: 300px;
    }
    
    .flip-card-front-content h3,
    .flip-card-back-content h3 {
        font-size: 1rem;
    }
    
    .flip-card-description {
        font-size: 0.8rem;
        min-height: 30px;
    }
    
    .flip-card-original-price {
        font-size: 0.75rem;
    }
    
    .flip-card-final-price {
        font-size: 1rem;
    }
    
    .flip-card-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Carrusel en móviles */
    .carousel-wrapper {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-slide {
        min-width: calc(50% - 1rem);
    }

    .carousel-image {
        height: 180px;
    }

    .carousel-card {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .carousel-content {
        padding: 1rem;
        min-height: 120px;
    }

    .carousel-content h3 {
        font-size: 0.95rem;
    }

    .carousel-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .carousel-price {
        font-size: 1rem;
    }

    .carousel-btn-detail {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .carousel-indicators {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }
    
    .featured, .about, .video-section {
        padding: 2rem 0.6rem;
    }
    
    .featured h2, .about h2, .video-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .product-card {
        padding: 1rem 0.6rem;
    }
    
    .product-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .product-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .product-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .about p {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        height: 220px;
        max-width: 100%;
    }
    
    .video-placeholder span {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .footer {
        padding: 1.2rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .footer p {
        padding: 0;
        margin: 0;
    }
    
    .promo-modal {
        width: min(98vw, 340px);
    }
    
    .promo-modal-header {
        padding: 1.2rem 1rem;
    }
    
    .promo-modal-header h2 {
        font-size: 1.1rem;
    }
    
    .promo-icon {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .promo-modal-body {
        padding: 1.2rem 1rem;
    }
    
    .promo-intro {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .promo-offer {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .promo-qty {
        font-size: 0.95rem;
    }
    
    .promo-price {
        font-size: 1.2rem;
    }
    
    .promo-text {
        font-size: 0.8rem;
    }
    
    .promo-benefits {
        display: none;
    }
    
    .promo-cta-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }
}

/* ===== SECCIÓN "SOBRE NUESTRA TIENDA" - FONDO AZULADO SIMPLE ===== */
.about {
    opacity: 1 !important;
    transform: translateY(0) !important;
    
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        #f5f5f5 0%,
        #ffffff 50%,
        #f5f5f5 100%
    );
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(201, 162, 77, 0.1);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-content {
    text-align: center;
}

.about h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    animation: fadeInDown 0.8s ease;

    background: linear-gradient(
        135deg,
        #a58035 0%,
        #c9a24d 50%,
        #deb887 100%
    );
    background-size: 300% 300%;
    background-position: 50% 50%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.about p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.8rem;
    background: rgba(201, 162, 77, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 77, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 2rem 1.5rem;
    background: rgba(26, 24, 23, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-item:hover {
    background: rgba(201, 162, 77, 0.15);
    border-color: rgba(201, 162, 77, 0.4);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-item p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    animation: none;
}

/* ===== RESPONSIVE PARA ABOUT ===== */
@media (max-width: 768px) {
    .about {
        padding: 3rem 1.5rem;
    }
    
    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .about p {
        font-size: 0.95rem;
        padding: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-flip-cards {
        padding: 1.5rem 0.6rem;
    }
    
    .flip-cards-header h1 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .flip-cards-header p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .flip-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.2rem;
        max-width: 100%;
    }
    
    .flip-card {
        height: 320px;
        min-height: 320px;
    }
    
    .flip-card-front-content {
        padding: 0.6rem 0.4rem;
    }
    
    .flip-card-front-content h3 {
        font-size: 0.9rem;
        line-height: 1.1;
    }
    
    .flip-card-back {
        padding: 0.7rem;
        gap: 0.4rem;
    }
    
    .flip-card-back-content {
        gap: 0.4rem;
    }
    
    .flip-card-back-content h3 {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .flip-card-description {
        font-size: 0.75rem;
        line-height: 1.25;
        min-height: auto;
        margin: 0;
    }
    
    .flip-card-prices {
        gap: 0.1rem;
    }
    
    .flip-card-original-price {
        font-size: 0.65rem;
    }
    
    .flip-card-final-price {
        font-size: 1rem;
    }
    
    .flip-card-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .about {
        padding: 2rem 1rem;
    }
    
    .about h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about p {
        font-size: 0.9rem;
        padding: 1.2rem;
        line-height: 1.6;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.2rem 1rem;
    }
    
    .feature-item i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
}