/* ============================================================
   SURI DREAMS - Estilos Principales
   Paleta: Crema #F5EDE3 | Púrpura #5C2D91 | Rosa #E8A0B4 | Oscuro #1A1A2E
   ============================================================ */

:root {
    --cream:      #F5EDE3;
    --cream-dark: #EDD9C8;
    --purple:     #5C2D91;
    --purple-dark:#3D1A6E;
    --purple-light:#8B5BB5;
    --pink:       #E8A0B4;
    --pink-light: #F5C6D6;
    --dark:       #1A1A2E;
    --gray-soft:  #f8f4f0;
    --text-dark:  #2d2d2d;
    --text-muted: #7a7a7a;
    --white:      #ffffff;
}

/* ---- GLOBAL ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }

/* ---- NAVBAR ---- */
.navbar-suridreams {
    background-color: var(--white);
    border-bottom: 2px solid var(--pink-light);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(92,45,145,0.08);
}

.navbar-brand img { height: 60px; }

.navbar-suridreams .nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    transition: color .2s;
}

.navbar-suridreams .nav-link:hover {
    color: var(--purple) !important;
}

.navbar-toggler { border-color: var(--purple); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235C2D91' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ---- HERO / BANNER ---- */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple-dark) 60%, var(--purple) 100%);
    color: var(--white);
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--pink-light);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ---- BOTONES ---- */
.btn-purple {
    background-color: var(--purple);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all .25s;
}
.btn-purple:hover {
    background-color: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92,45,145,0.3);
}

.btn-pink {
    background-color: var(--pink);
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all .25s;
}
.btn-pink:hover {
    background-color: #d9849a;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-outline-purple {
    border: 2px solid var(--purple);
    color: var(--purple);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    background: transparent;
    transition: all .25s;
}
.btn-outline-purple:hover {
    background-color: var(--purple);
    color: var(--white);
}

/* ---- CARDS DE PRODUCTO ---- */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all .3s;
    background: var(--white);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(92,45,145,0.15);
}

.product-card .card-img-top {
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.product-card .card-body { padding: 1.2rem; }

.product-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.product-card .precio {
    color: var(--purple);
    font-weight: 700;
    font-size: 1.15rem;
}

.badge-destacado {
    background-color: var(--pink);
    color: var(--dark);
    font-size: 0.7rem;
    border-radius: 50px;
    padding: 4px 10px;
}

/* ---- FILTROS ---- */
.filtros-section {
    background-color: var(--cream);
    padding: 20px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.filtro-btn {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all .2s;
    color: var(--text-dark);
}
.filtro-btn:hover,
.filtro-btn.active {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

/* ---- VARIANTES DE COLOR ---- */
.color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: inline-block;
    cursor: pointer;
    transition: transform .2s;
}
.color-dot:hover, .color-dot.selected {
    transform: scale(1.25);
    border-color: var(--purple);
}

.talle-btn {
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.85rem;
    background: var(--white);
    cursor: pointer;
    transition: all .2s;
}
.talle-btn:hover, .talle-btn.selected {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}
.talle-btn.sin-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ---- SECCION CATEGORIAS ---- */
.categoria-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
    background: var(--purple);
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.categoria-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(92,45,145,.25); }
.categoria-card img { width: 100%; height: 180px; object-fit: cover; opacity: .7; }
.categoria-card .overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(26,26,46,.8) 0%, transparent 60%);
}
.categoria-card .overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ---- FOOTER ---- */
.footer-suridreams {
    background-color: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
}
.footer-suridreams h5 {
    color: var(--pink-light);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-suridreams a { color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-suridreams a:hover { color: var(--pink); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---- WHATSAPP FLOTANTE ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #25D366;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    animation: pulse-green 2.5s infinite;
    transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { color: white; font-size: 1.7rem; }

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- SECCIONES ---- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--dark);
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 40px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--purple), var(--pink));
    border-radius: 2px;
}
.section-title.text-center::after { left: 50%; transform: translateX(-50%); }

/* ---- TOAST / ALERTAS ---- */
.toast-suridreams {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 10000;
}

/* ---- PAGINACION ---- */
.pagination .page-link {
    color: var(--purple);
    border-radius: 8px !important;
    margin: 0 3px;
    border: 1px solid var(--cream-dark);
}
.pagination .page-item.active .page-link {
    background-color: var(--purple);
    border-color: var(--purple);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .product-card .card-img-top { height: 220px; }
    .hero-section { min-height: 380px; text-align: center; }
}


/* ============================================================
   HERO V2
   ============================================================ */
.hero-v2 {
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple-dark) 55%, #4a1f7a 100%);
    color: var(--white);
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-v2::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 70px;
    background: var(--white);
    clip-path: ellipse(52% 100% at 50% 100%);
}

/* Blobs flotantes */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}
.hero-blob-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--pink) 0%, transparent 65%);
    top: -140px; right: -100px;
    opacity: .22;
    animation: blobFloat1 9s ease-in-out infinite;
}
.hero-blob-2 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, var(--purple-light) 0%, transparent 65%);
    bottom: -60px; left: -80px;
    opacity: .18;
    animation: blobFloat2 11s ease-in-out infinite;
}
.hero-blob-3 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
    top: 45%; left: 28%;
    opacity: .12;
    animation: blobFloat3 13s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(-28px,18px) scale(1.04); }
    66%      { transform: translate(18px,-14px) scale(.97); }
}
@keyframes blobFloat2 {
    0%,100% { transform: translate(0,0); }
    50%      { transform: translate(28px,-18px); }
}
@keyframes blobFloat3 {
    0%,100% { transform: translate(0,-50%) scale(1); }
    50%      { transform: translate(-18px,calc(-50% + 14px)) scale(1.1); }
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    animation: fadeSlideUp .65s ease both;
}
.hero-eyebrow-dash {
    display: block;
    width: 30px; height: 2px;
    background: var(--pink-light);
    border-radius: 2px;
    flex-shrink: 0;
}
.hero-eyebrow span:last-child {
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: .75rem;
    color: var(--pink-light);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* Heading */
.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .65s .1s ease both;
}
.hero-em {
    font-style: italic;
    color: var(--pink-light);
    position: relative;
    display: inline-block;
}
.hero-em::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--pink), transparent 80%);
    border-radius: 2px;
}

.hero-sub {
    color: rgba(255,255,255,.72);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    animation: fadeSlideUp .65s .18s ease both;
}

/* CTA buttons */
.btn-hero-cta {
    background: var(--pink);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s;
    animation: fadeSlideUp .65s .26s ease both;
}
.btn-hero-cta:hover {
    background: #d9849a;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(232,160,180,.45);
}
.btn-hero-wa {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,.38);
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .3s;
    animation: fadeSlideUp .65s .32s ease both;
}
.btn-hero-wa:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-3px);
}

/* Stats row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.13);
    animation: fadeSlideUp .65s .4s ease both;
}
.hsr-item { display: flex; flex-direction: column; gap: 3px; }
.hsr-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hsr-lbl {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.45);
}
.hsr-sep {
    color: rgba(255,255,255,.22);
    font-size: 1.6rem;
    line-height: 1;
}

/* Logo frame */
.hero-img-frame {
    position: relative;
    width: 300px; height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.hero-img-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232,160,180,.22);
}
.hero-img-ring-1 { inset: 0; animation: spinRing 22s linear infinite; }
.hero-img-ring-2 { inset: -32px; animation: spinRing 34s linear infinite reverse; border-style: dashed; }
.hero-logo-img {
    max-height: 240px;
    filter: drop-shadow(0 12px 44px rgba(232,160,180,.55));
    position: relative; z-index: 1;
    animation: fadeSlideUp .65s .22s ease both;
}
@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive hero-v2 */
@media (max-width: 768px) {
    .hero-v2 { text-align: center; min-height: 420px; }
    .hero-eyebrow { justify-content: center; }
    .hero-stats-row { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .hero-em::after { display: none; }
    .d-flex.gap-3 { justify-content: center; }
}


/* ============================================================
   LABELS DE SECCIÓN
   ============================================================ */
.seccion-label {
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--purple-light);
    font-family: 'Lato', sans-serif;
    margin-bottom: 6px;
}


/* ============================================================
   CATEGORIAS NUEVA
   ============================================================ */
.cat-nueva {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    text-decoration: none;
    background: var(--purple-dark);
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
    cursor: pointer;
}
.cat-nueva:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(92,45,145,.25);
}
.cat-nueva img {
    width: 100%; height: 220px;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .4s;
    opacity: .68;
    display: block;
}
.cat-nueva:hover img {
    transform: scale(1.08);
    opacity: .5;
}
.cat-nueva-bg {
    height: 220px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    opacity: .85;
    transition: opacity .4s;
}
.cat-nueva:hover .cat-nueva-bg { opacity: 1; }
.cat-nueva-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,.9) 0%, rgba(26,26,46,.18) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px;
    transition: background .35s;
}
.cat-nueva:hover .cat-nueva-overlay {
    background: linear-gradient(to top, rgba(92,45,145,.95) 0%, rgba(92,45,145,.4) 65%, transparent 100%);
}
.cat-nueva-name {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    transform: translateY(5px);
    transition: transform .32s;
}
.cat-nueva:hover .cat-nueva-name { transform: translateY(0); }
.cat-nueva-count {
    font-size: .73rem;
    color: var(--pink-light);
    display: block;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .3s .06s, transform .3s .06s;
    font-family: 'Lato', sans-serif;
}
.cat-nueva:hover .cat-nueva-count { opacity: 1; transform: translateY(0); }
.cat-nueva-arrow {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: .85rem;
    opacity: 0;
    transform: scale(.65);
    transition: opacity .3s, transform .3s;
}
.cat-nueva:hover .cat-nueva-arrow { opacity: 1; transform: scale(1); }

/* Última categoría impar: centrar la card */
.col-12.col-md-8.col-lg-6 { margin-left: auto; margin-right: auto; }
.col-12.col-md-8.col-lg-6 .cat-nueva { max-width: 480px; margin: 0 auto; }


/* ============================================================
   DESTACADOS — GRID ASIMÉTRICO
   ============================================================ */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.dest-item-0 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Card */
.dest-card-v2 {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 14px rgba(0,0,0,.07);
    transition: all .38s cubic-bezier(.16,1,.3,1);
}
.dest-card-v2:hover {
    box-shadow: 0 18px 42px rgba(92,45,145,.16);
    transform: translateY(-5px);
}
.dest-img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.dest-img-wrap a { display: block; }
.dest-card-v2 .dest-img {
    width: 100%; height: 200px;
    object-fit: cover; object-position: top;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    display: block;
}
.dest-item-0 .dest-card-v2 .dest-img { height: 370px; }
.dest-card-v2:hover .dest-img { transform: scale(1.05); }
.dest-peek {
    position: absolute; inset: 0;
    background: rgba(92,45,145,.72);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: .95rem;
    letter-spacing: 1.5px;
    font-style: italic;
}
.dest-card-v2:hover .dest-peek { opacity: 1; }
.dest-card-body {
    padding: 1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dest-badge-nueva {
    display: inline-block;
    background: var(--pink-light);
    color: var(--purple-dark);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 3px 10px;
    margin-bottom: 7px;
    align-self: flex-start;
}
.dest-card-title {
    font-family: 'Playfair Display', serif;
    font-size: .98rem;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}
.dest-item-0 .dest-card-title { font-size: 1.15rem; }
.dest-precio {
    color: var(--purple);
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: .7rem;
}
.btn-wa-mini {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .25s;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
}
.btn-wa-mini:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,.35);
}

/* Responsive dest-grid */
@media (max-width: 991px) {
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-item-0 { grid-column: span 2; grid-row: span 1; }
    .dest-item-0 .dest-card-v2 .dest-img { height: 300px; }
}
@media (max-width: 575px) {
    .dest-grid { gap: .75rem; }
    .dest-card-v2 .dest-img { height: 170px; }
    .dest-item-0 .dest-card-v2 .dest-img { height: 230px; }
}


/* ============================================================
   BENEFITS STRIP
   ============================================================ */
.benefits-strip {
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    padding: 38px 0;
}
.benefits-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.benefit-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px;
    flex: 1;
    min-width: 210px;
    max-width: 310px;
}
.benefit-pill i {
    font-size: 1.75rem;
    color: var(--purple);
    flex-shrink: 0;
}
.benefit-pill div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.benefit-pill strong {
    font-size: .9rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.benefit-pill span {
    font-size: .77rem;
    color: var(--text-muted);
}
.benefit-sep {
    width: 1px;
    height: 50px;
    background: var(--cream-dark);
    flex-shrink: 0;
}


/* ============================================================
   RECIÉN LLEGADO — DARK SECTION
   ============================================================ */
.nuevos-section {
    background: var(--dark);
    position: relative;
}
.seccion-label-dark {
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--pink-light);
    opacity: .65;
    font-family: 'Lato', sans-serif;
    margin-bottom: 6px;
}
.section-title-dark {
    color: var(--white) !important;
}
.section-title-dark::after {
    background: linear-gradient(to right, var(--pink), var(--purple-light)) !important;
}
.btn-outline-nuevo {
    border: 1px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.75);
    border-radius: 50px;
    padding: 9px 22px;
    font-size: .85rem;
    font-weight: 600;
    background: transparent;
    transition: all .25s;
    text-decoration: none;
}
.btn-outline-nuevo:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}

/* Glassmorphism card */
.nuevo-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all .38s cubic-bezier(.16,1,.3,1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nuevo-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(232,160,180,.38);
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.nuevo-card-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.nuevo-card-img a { display: block; }
.nuevo-card-img img {
    width: 100%; height: 280px;
    object-fit: cover; object-position: top;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    opacity: .88;
    display: block;
}
.nuevo-card:hover .nuevo-card-img img {
    transform: scale(1.06);
    opacity: 1;
}
.nuevo-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--pink);
    color: var(--dark);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 12px;
}
.nuevo-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nuevo-card-cat {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pink-light);
    opacity: .65;
    margin-bottom: 6px;
    display: block;
    font-family: 'Lato', sans-serif;
}
.nuevo-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.nuevo-card-precio {
    color: var(--pink-light);
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: .9rem;
}
.btn-wa-dark {
    background: transparent;
    color: rgba(255,255,255,.85) !important;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .28s;
    text-decoration: none;
    width: 100%;
    margin-top: auto;
}
.btn-wa-dark:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

/* Responsive nuevos */
@media (max-width: 575px) {
    .nuevo-card-img img { height: 210px; }
}


/* ============================================================
   CATÁLOGO — HEADER DE CATEGORÍA
   ============================================================ */
.catalogo-cat-header {
    background: linear-gradient(105deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-bottom: 1px solid var(--cream-dark);
    padding: 36px 0;
}
.cch-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.cch-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
}
.cch-count {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 1px solid var(--cream-dark);
    padding-left: 20px;
    white-space: nowrap;
}


/* ============================================================
   CATÁLOGO — SIDEBAR V2
   ============================================================ */
.sidebar-v2 { }
.sidebar-main-title {
    font-family: 'Lato', sans-serif;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 20px;
}
.sidebar-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cream-dark);
}
.sidebar-section-title {
    font-family: 'Lato', sans-serif;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 9px;
    border-left: 3px solid var(--pink);
}
.btn-limpiar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--text-muted);
    background: none;
    border: 1px solid var(--cream-dark);
    border-radius: 50px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all .22s;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    cursor: pointer;
}
.btn-limpiar:hover {
    color: #dc3545;
    border-color: #dc3545;
    background: rgba(220,53,69,.04);
}

/* Sidebar mobile: horizontal scroll */
@media (max-width: 991px) {
    .sidebar-v2 {
        background: var(--gray-soft);
        border-radius: 16px;
        padding: 18px;
    }
    .sidebar-block { border-bottom: none; padding-bottom: 0; margin-bottom: 16px; }
}


/* ============================================================
   CATÁLOGO — RESULTS HEADER
   ============================================================ */
.results-header {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cream-dark);
}
.results-count {
    font-family: 'Lato', sans-serif;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.2;
}
.results-count strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-right: 5px;
    vertical-align: middle;
}
.results-count em {
    font-style: italic;
    color: var(--purple-light);
}
.orden-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235C2D91' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    border: 1.5px solid var(--cream-dark);
    border-radius: 50px;
    padding: 8px 36px 8px 16px;
    font-size: .8rem;
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    min-width: 160px;
}
.orden-select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(92,45,145,.1);
}
.orden-select:hover { border-color: var(--purple-light); }


/* ============================================================
   CATÁLOGO — PRODUCT CARD (cat-card)
   ============================================================ */
.cat-card { position: relative; }

.cat-card-img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.cat-card-img-wrap a { display: block; }
.cat-card-img-wrap .card-img-top {
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    display: block;
    border-radius: 0;
}
.cat-card:hover .cat-card-img-wrap .card-img-top {
    transform: scale(1.06);
}
.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,45,145,.68);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .32s;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: .88rem;
    letter-spacing: 2px;
    font-style: italic;
}
.cat-card:hover .cat-card-overlay { opacity: 1; }

.sinstock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(26,26,46,.72);
    color: rgba(255,255,255,.92);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 10px;
    backdrop-filter: blur(6px);
    font-family: 'Lato', sans-serif;
}
.cat-card-cat {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-light);
    display: block;
    margin-bottom: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}
.cat-card .card-title {
    font-size: .98rem;
    line-height: 1.3;
}


/* ============================================================
   CATÁLOGO — ESTADO VACÍO
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    animation: fadeSlideUp .6s ease both;
}
.empty-state-icon {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--gray-soft);
    border: 2px dashed var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.4rem;
    color: var(--purple-light);
}
.empty-state h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.empty-state p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 28px;
}


/* ============================================================
   CATÁLOGO — PAGINACIÓN V2
   ============================================================ */
.pagination-v2 {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination-v2 .page-item .page-link {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1.5px solid var(--cream-dark);
    color: var(--purple);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    transition: all .22s cubic-bezier(.16,1,.3,1);
    margin: 0;
}
.pagination-v2 .page-item.active .page-link {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(92,45,145,.32);
}
.pagination-v2 .page-item:not(.active) .page-link:hover {
    background: var(--gray-soft);
    border-color: var(--purple-light);
    color: var(--purple-dark);
    transform: translateY(-2px);
}
