/* ============================================================
   LaMaetaVale — Hoja de estilos principal
   Para agregar productos: busca "productos-grid" en index.html
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
    --rosa:           #FA7D67;   /* coral fuerte — botones, texto, accents */
    --rosa-claro:     #FEAEA3;   /* coral clarito — fondos, bordes */
    --verde:          #77BFB0;   /* verde fuerte — botones, texto, accents */
    --verde-claro:    #9ACCC0;   /* verde clarito — fondos */
    --amarillo:       #FDAA34;
    --amarillo-claro: #FEE5B0;   /* derivado del amarillo para chips y fondos */
    --crema:          #FFF5EF;   /* base — fondo general */
    --cafe:           #381C0A;   /* café oscuro — texto principal */
    --texto:          #381C0A;
    --gris:           #7A6048;   /* derivado del café — texto secundario */
    --blanco:         #FFFFFF;

    --sombra:         0 4px 20px rgba(56, 28, 10, 0.08);
    --sombra-hover:   0 10px 36px rgba(56, 28, 10, 0.15);
    --radio:          22px;
    --radio-sm:       12px;
    --transicion:     all 0.3s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--texto);
    background: var(--crema);
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* ── Contenedor ──────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Botones ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transicion);
    cursor: pointer;
    border: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--rosa);
    color: var(--blanco);
    box-shadow: 0 4px 18px rgba(250, 125, 103, 0.40);
}

.btn-primary:hover {
    background: #D85E4A;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(250, 125, 103, 0.48);
}

.btn-comprar {
    background: var(--amarillo);
    color: var(--texto);
    font-size: 0.92rem;
    padding: 11px 24px;
    box-shadow: 0 4px 14px rgba(253, 170, 52, 0.38);
    font-weight: 900;
}

.btn-comprar:hover {
    background: #E09020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 170, 52, 0.48);
}

/* ── Header / Nav ────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--blanco);
    border-bottom: 2.5px solid var(--rosa-claro);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: var(--sombra);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.logo {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
    font-family: 'Fredoka', sans-serif;
}

.logo-la    { color: var(--verde); }
.logo-maeta { color: var(--rosa); }
.logo-vale  { color: var(--amarillo); }

/* Nav links */
.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 700;
    color: var(--texto);
    font-size: 0.97rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--rosa);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--rosa);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--texto);
    border-radius: 4px;
    transition: var(--transicion);
    transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    background-color: var(--crema);
    overflow: hidden;
    padding: 90px 0 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-burbuja {
    position: absolute;
    top: 0;
    width: clamp(80px, 28vw, 420px);
    z-index: 1;
    pointer-events: none;
}

.hero-burbuja-izq {
    left: 0;
}

.hero-burbuja-der {
    right: 0;
}

.hero-deco-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* Izquierda — arriba, medio, abajo */
.hdi-manzana {
    width: clamp(55px, 7vw, 95px);
    top: 12%;
    left: 23%;
    transform: rotate(-18deg);
}

.hdi-estrella {
    width: clamp(65px, 8.5vw, 115px);
    top: 50%;
    left: 11%;
    transform: translateY(-50%) rotate(12deg);
}

.hdi-pegamento {
    width: clamp(45px, 5.5vw, 78px);
    bottom: 10%;
    left: 23%;
    transform: rotate(-14deg);
}

/* Derecha — arriba, medio, abajo */
.hdi-corazon {
    width: clamp(62px, 7.5vw, 100px);
    top: 12%;
    right: 23%;
    transform: rotate(-14deg);
}

.hdi-regla {
    width: clamp(68px, 8vw, 108px);
    top: 50%;
    right: 11%;
    transform: translateY(-50%) rotate(-48deg);
}

.hdi-colores {
    width: clamp(65px, 8vw, 112px);
    bottom: 8%;
    right: 23%;
    transform: rotate(10deg);
}

@media (max-width: 480px) {
    .hero-deco-icon { display: none; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 48px);
}

.hero-img-maestra {
    width: clamp(100px, 16vw, 200px);
}

.hero-img-logo {
    width: clamp(130px, 22vw, 270px);
}

.hero-btn {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.hero-badge {
    display: inline-block;
    background: var(--rosa);
    color: var(--blanco);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--texto);
}

.hero-title .highlight {
    color: var(--rosa);
    position: relative;
}

.hero-desc {
    font-size: 1.08rem;
    color: var(--gris);
    margin-bottom: 38px;
    max-width: 540px;
    line-height: 1.7;
}

/* ── Secciones — estilos compartidos ─────────────────────── */
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: var(--texto);
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--gris);
    font-size: 1rem;
    margin-bottom: 52px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.section-label {
    display: inline-block;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--rosa);
    margin-bottom: 10px;
}

/* ── Catálogo / Productos ────────────────────────────────── */
.catalogo {
    padding: 88px 0;
    background: var(--blanco);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.producto-card {
    background: var(--blanco);
    border-radius: var(--radio);
    box-shadow: var(--sombra);
    overflow: hidden;
    transition: var(--transicion);
    border: 2.5px solid var(--rosa-claro);
    display: flex;
    flex-direction: column;
}

.producto-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
    border-color: var(--rosa);
}

/* Imagen */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--crema);
}

.card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

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

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rosa);
    color: var(--blanco);
    font-size: 0.74rem;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Cuerpo */
.card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--texto);
}

.card-desc {
    font-size: 0.9rem;
    color: var(--gris);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 22px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-price-anterior {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gris);
    text-decoration: line-through;
    line-height: 1;
}

.card-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--rosa);
    line-height: 1;
}

.card-price small {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gris);
    margin-left: 2px;
}

/* ── Sobre Vale ──────────────────────────────────────────── */
.sobre-vale {
    background: var(--crema);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.sobre-burbuja {
    position: absolute;
    bottom: 0;
    width: clamp(80px, 28vw, 420px);
    z-index: 1;
    pointer-events: none;
    transform: scaleY(-1);
}

.sobre-burbuja-izq { left: 0; }
.sobre-burbuja-der { right: 0; }

.sobre-vale-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sobre-vale-text .section-title {
    margin-bottom: 24px;
}

.sobre-vale-text p {
    color: var(--gris);
    margin-bottom: 14px;
    font-size: 1rem;
}

.sobre-vale-text p strong {
    color: var(--texto);
}

/* Tarjetas decorativas */
.sobre-vale-deco {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deco-card {
    border-radius: var(--radio-sm);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--sombra);
    background: var(--blanco);
    transition: var(--transicion);
}

.deco-card:hover {
    transform: translateX(6px);
}

.deco-rosa     { border-left: 4px solid var(--rosa); }
.deco-amarillo { border-left: 4px solid var(--amarillo); }
.deco-verde    { border-left: 4px solid var(--verde); }

.deco-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.deco-card p {
    font-weight: 700;
    color: var(--texto);
    font-size: 0.93rem;
    line-height: 1.4;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: #1E0B04;
    color: var(--blanco);
    padding: 52px 0 34px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.footer-logo .logo-la    { color: var(--verde-claro); }
.footer-logo .logo-maeta { color: var(--rosa-claro); }
.footer-logo .logo-vale  { color: var(--amarillo); }

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    transition: var(--transicion);
    color: var(--blanco);
}

.social-link:hover {
    background: var(--rosa);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

/* ── Card: categoría, link de imagen y botón Ver ────────── */
.card-img-link {
    display: block;
}

.card-categoria {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blanco);
    background: var(--verde);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.card-title a {
    color: inherit;
    transition: color 0.2s;
}

.card-title a:hover {
    color: var(--rosa);
}

.btn-ver {
    background: transparent;
    color: var(--rosa);
    border: 2px solid var(--rosa);
    font-size: 0.88rem;
    padding: 9px 20px;
}

.btn-ver:hover {
    background: var(--rosa);
    color: var(--blanco);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--rosa);
    border: 2.5px solid var(--rosa);
    font-size: 1rem;
    padding: 13px 34px;
}

.btn-outline:hover {
    background: var(--rosa);
    color: var(--blanco);
    transform: translateY(-3px);
}

/* ── Nav: enlace activo ──────────────────────────────────── */
.nav-active {
    color: var(--rosa) !important;
}

.nav-active::after {
    width: 100% !important;
}

/* ── Destacados (home) ───────────────────────────────────── */
.destacados {
    padding: 88px 0 72px;
    background: var(--blanco);
}

.destacados-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── Page header (catálogo y producto) ───────────────────── */
.page-header {
    background: var(--crema);
    padding: 40px 0 36px;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-burbuja {
    position: absolute;
    top: 0;
    width: clamp(60px, 16vw, 220px);
    z-index: 1;
    pointer-events: none;
}

.page-burbuja-izq { left: 0; }
.page-burbuja-der { right: 0; }

.page-header-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--texto);
    margin: 8px 0 6px;
}

.page-header-desc {
    color: var(--gris);
    font-size: 1rem;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gris);
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.breadcrumb a {
    color: var(--rosa);
    font-weight: 700;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.75;
}

.breadcrumb span[aria-current] {
    color: var(--texto);
    font-weight: 600;
}

/* ── Sección catálogo ────────────────────────────────────── */
.catalogo-section {
    padding: 52px 0 88px;
}

.catalogo-meta {
    margin-bottom: 28px;
}

.catalogo-count {
    font-size: 0.9rem;
    color: var(--gris);
    font-weight: 600;
}

.catalogo-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ── Página de producto: detalle ─────────────────────────── */
#producto-main > .container {
    padding-top: 32px;
}

.producto-detalle {
    padding: 48px 0 64px;
}

.producto-detalle-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.producto-imagen-wrapper {
    position: relative;
    border-radius: var(--radio);
    box-shadow: var(--sombra-hover);
    background: var(--crema);
    border: 2.5px solid var(--rosa-claro);
}

.producto-imagen {
    width: 100%;
    display: block;
    border-radius: var(--radio);
}

.badge-grande {
    font-size: 0.82rem;
    padding: 6px 16px;
    top: 18px;
    left: 18px;
}

/* Columna de info */
.producto-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.producto-nombre {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--texto);
    margin: 8px 0 14px;
    line-height: 1.2;
}

.producto-precio {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--rosa);
    margin-bottom: 22px;
}

.precio-anterior {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gris);
    text-decoration: line-through;
    margin-right: 6px;
}

/* Caja "archivo digital" */
.info-digital {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--rosa-claro);
    border-radius: var(--radio);
    padding: 18px 20px;
    margin-bottom: 18px;
}

.info-digital-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.info-digital strong {
    display: block;
    font-size: 0.95rem;
    color: var(--texto);
    margin-bottom: 3px;
}

.info-digital p {
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.45;
    margin: 0;
}

/* Chips de info */
.info-chips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.info-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radio-sm);
    font-size: 0.85rem;
}

.info-chip span {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.chip-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.info-chip strong {
    display: block;
    color: var(--texto);
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.info-chip p {
    color: var(--gris);
    margin: 0;
    line-height: 1.3;
}

.chip-azul    { background: var(--rosa-claro); }
.chip-verde   { background: var(--verde-claro); }
.chip-amarillo { background: var(--amarillo-claro); }

/* Botón comprar grande */
.btn-comprar-grande {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--amarillo);
    color: var(--texto);
    font-size: 1.1rem;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 4px 18px rgba(253, 170, 52, 0.40);
    transition: var(--transicion);
    margin-bottom: 32px;
}

.btn-comprar-grande:hover {
    background: #E09020;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(253, 170, 52, 0.50);
}

/* Descripción larga del producto */
.producto-descripcion {
    border-top: 2px solid var(--rosa-claro);
    padding-top: 24px;
}

.producto-descripcion p {
    color: var(--gris);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.producto-descripcion h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--texto);
    margin: 18px 0 10px;
}

.producto-descripcion ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.producto-descripcion ul li::before {
    content: '✓ ';
    color: var(--verde);
    font-weight: 800;
}

.producto-descripcion ul li {
    font-size: 0.9rem;
    color: var(--gris);
}

/* ── También te puede interesar ──────────────────────────── */
.relacionados {
    background: var(--crema);
    padding: 64px 0 80px;
}

.relacionados-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 40px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .sobre-vale-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 640px) {
    /* Nav mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--blanco);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 18px;
        box-shadow: var(--sombra);
        border-top: 2px solid var(--rosa-claro);
        z-index: 99;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Hero mobile */
    .hero {
        padding: 48px 0 56px;
    }

    /* Productos mobile: una columna */
    .productos-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Sobre Vale mobile */
    .sobre-vale-text .section-title {
        text-align: center;
    }

    .section-label {
        display: block;
        text-align: center;
    }

    /* Catálogo mobile */
    .catalogo-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Producto detalle mobile */
    .producto-detalle-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .btn-comprar-grande {
        font-size: 1rem;
        padding: 14px 24px;
    }

    .relacionados-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (min-width: 641px) and (max-width: 900px) {
    /* Tablet: 2 columnas en catálogo */
    .catalogo-grid,
    .relacionados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Producto detalle tablet: imagen arriba */
    .producto-detalle-inner {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

}

/* ── Slider de galería (página de producto) ──────────────── */
.producto-imagen-wrapper {
    aspect-ratio: 1 / 1;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: calc(var(--radio) - 3px);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
}

.slider-img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rosa);
    color: var(--blanco);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(250, 125, 103, 0.45);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
    line-height: 1;
}

.slider-btn:hover {
    background: #D85E4A;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* Thumbnails debajo del slider */
.slider-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.slider-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radio-sm);
    cursor: pointer;
    border: 2.5px solid var(--rosa-claro);
    transition: border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.slider-thumb:hover {
    border-color: var(--rosa);
}

.slider-thumb.active {
    border-color: var(--rosa);
    transform: scale(1.06);
    box-shadow: 0 2px 8px rgba(250, 125, 103, 0.30);
}

@media (max-width: 640px) {
    .slider-thumb {
        width: 52px;
        height: 52px;
    }
}
