/* ==========================================================
   VINACUTE - Rosa Nude Premium
   ========================================================== */

:root {
    --vc-rose-nude: #F5C6C0;
    --vc-rose-coral: #E8A0A0;
    --vc-rose-wine: #8B3A4E;
    --vc-rose-wine-dark: #6B2A3A;
    --vc-gold: #D4A373;
    --vc-cream: #FDF8F5;
    --vc-rose-powder: #F9E5E0;
    --vc-black: #2B1F24;
    --vc-gray: #7A6970;
    --vc-white: #FFFFFF;
    --vc-shadow: 0 8px 25px rgba(139, 58, 78, .08);
    --vc-shadow-hover: 0 15px 40px rgba(139, 58, 78, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--vc-black);
    background: var(--vc-cream);
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--vc-rose-wine-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.accent {
    color: var(--vc-rose-coral);
    font-style: italic;
}

.accent em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--vc-rose-coral);
}

.accent-gold {
    color: var(--vc-gold);
    font-style: italic;
}

a {
    color: var(--vc-rose-wine);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--vc-rose-coral);
}

/* ===================== TOP BAR ===================== */
.top-bar {
    background: linear-gradient(135deg, var(--vc-rose-wine-dark) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: .3px;
}

.top-bar i {
    margin-right: 6px;
    color: var(--vc-rose-nude);
}

/* ===================== NAVBAR ===================== */
.vc-navbar {
    background: rgba(253, 248, 245, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 58, 78, .08);
    transition: all .3s ease;
}

.vc-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(139, 58, 78, .1);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform .2s;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.brand-heart {
    font-size: 20px;
    color: var(--vc-rose-coral);
    line-height: 1;
    animation: heartBeat 2.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--vc-rose-wine);
    letter-spacing: .5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--vc-black);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 6px 0;
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vc-rose-coral);
    transition: all .3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--vc-rose-coral);
}

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

.promo-link {
    color: var(--vc-rose-coral) !important;
    font-weight: 700 !important;
    position: relative;
}

.promo-link::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -8px;
    width: 6px;
    height: 6px;
    background: var(--vc-gold);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-action {
    color: var(--vc-black);
    font-size: 22px;
    position: relative;
    transition: color .2s, transform .2s;
    display: flex;
    align-items: center;
}

.nav-action:hover {
    color: var(--vc-rose-coral);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: linear-gradient(135deg, var(--vc-rose-coral), var(--vc-rose-wine));
    color: #fff;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(232, 160, 160, .5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--vc-rose-wine);
    border-radius: 2px;
    transition: all .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 14px;
        box-shadow: 0 10px 30px rgba(139, 58, 78, .12);
        display: none;
        border-top: 1px solid rgba(139, 58, 78, .08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; }
}

/* ===================== FLASH MESSAGES ===================== */
.flash-msg {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 14px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: opacity .4s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-success {
    background: linear-gradient(135deg, var(--vc-rose-coral), var(--vc-rose-nude));
    color: #fff;
}

.flash-error {
    background: linear-gradient(135deg, #dc3545, #c92a3b);
    color: #fff;
}

/* ===================== HERO ===================== */
.hero {
    background: linear-gradient(135deg, var(--vc-rose-powder) 0%, var(--vc-cream) 60%, var(--vc-rose-nude) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 163, 115, .3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 160, 160, .3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    background: rgba(139, 58, 78, .08);
    color: var(--vc-rose-wine);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 58, 78, .12);
}

.hero-kicker i {
    margin-right: 4px;
    color: var(--vc-gold);
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    margin: 0 0 24px;
    color: var(--vc-rose-wine-dark);
    font-weight: 700;
}

.hero-desc {
    font-size: 17px;
    color: var(--vc-gray);
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    color: var(--vc-rose-wine);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-badge i {
    color: var(--vc-gold);
    font-size: 15px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob {
    position: absolute;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-gold) 100%);
    border-radius: 50%;
    opacity: .35;
    filter: blur(20px);
    animation: blobPulse 4s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--vc-rose-coral);
    box-shadow: 0 20px 40px rgba(139, 58, 78, .18);
    animation: heroFloat 4s ease-in-out infinite;
}

.c1 { width: 100px; height: 100px; top: 10%; left: 20%; animation-delay: 0s; }
.c2 { width: 130px; height: 130px; top: 40%; right: 15%; animation-delay: 0.5s; color: var(--vc-gold); }
.c3 { width: 90px; height: 90px; bottom: 20%; left: 25%; animation-delay: 1s; }
.c4 { width: 110px; height: 110px; bottom: 8%; right: 25%; animation-delay: 1.5s; color: var(--vc-rose-wine); }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===================== BOTONES ===================== */
.btn-vc-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(232, 160, 160, .45);
    transition: all .3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-vc-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 160, 160, .6);
    color: #fff;
}

.btn-vc-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--vc-rose-wine);
    border: 2px solid var(--vc-rose-wine);
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s;
}

.btn-vc-outline:hover {
    background: var(--vc-rose-wine);
    color: #fff;
}

.btn-vc-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--vc-rose-wine);
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.btn-vc-white:hover {
    transform: translateY(-2px);
    color: var(--vc-rose-coral);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

/* ===================== SECCIONES ===================== */
.section-cat, .section-prods, .section-beneficios {
    padding: 80px 0;
}

.section-content {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-kicker {
    display: inline-block;
    background: rgba(139, 58, 78, .08);
    color: var(--vc-rose-wine);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.section-kicker.white {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 12px;
}

.section-lead {
    color: var(--vc-gray);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

/* ===================== CATEGORIA CARDS ===================== */
.cat-card {
    display: block;
    background: #fff;
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--vc-black);
    box-shadow: var(--vc-shadow);
    border: 1px solid rgba(139, 58, 78, .06);
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vc-rose-coral), var(--vc-gold));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vc-shadow-hover);
    color: var(--vc-rose-wine);
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vc-rose-nude) 0%, var(--vc-rose-coral) 100%);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(232, 160, 160, .4);
    transition: transform .3s;
}

.cat-card:hover .cat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.cat-card h3 {
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--vc-rose-wine);
}

.cat-card p {
    color: var(--vc-gray);
    font-size: 13px;
    margin: 0 0 18px;
    line-height: 1.5;
}

.cat-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--vc-rose-coral);
    font-size: 22px;
    transition: transform .2s;
}

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

/* ===================== PRODUCTO CARDS ===================== */
.prod-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--vc-shadow);
    transition: all .3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(139, 58, 78, .04);
}

.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vc-shadow-hover);
}

.prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.prod-badge.sale {
    background: linear-gradient(135deg, var(--vc-rose-coral), var(--vc-rose-wine));
    color: #fff;
}

.prod-badge.new {
    background: linear-gradient(135deg, var(--vc-gold), #B8895C);
    color: #fff;
}

.prod-img-wrap {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--vc-rose-powder);
    overflow: hidden;
    position: relative;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.prod-card:hover .prod-img {
    transform: scale(1.08);
}

.prod-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-cat {
    font-size: 10px;
    color: var(--vc-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.prod-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
    min-height: 40px;
}

.prod-name a {
    color: var(--vc-black);
    text-decoration: none;
    transition: color .2s;
}

.prod-name a:hover {
    color: var(--vc-rose-coral);
}

.prod-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.price-now {
    font-size: 18px;
    font-weight: 700;
    color: var(--vc-rose-wine);
    font-family: 'Playfair Display', serif;
}

.price-old {
    font-size: 13px;
    color: var(--vc-gray);
    text-decoration: line-through;
}

.prod-add-form {
    margin-top: auto;
}

.prod-add-btn {
    width: 100%;
    background: transparent;
    color: var(--vc-rose-wine);
    border: 1.5px solid var(--vc-rose-wine);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.prod-add-btn:hover:not(:disabled) {
    background: var(--vc-rose-wine);
    color: #fff;
}

.prod-add-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* ===================== SECCION OFERTAS (fondo oscuro) ===================== */
.section-ofertas {
    background: linear-gradient(135deg, var(--vc-rose-wine-dark) 0%, var(--vc-rose-wine) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-ofertas::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 163, 115, .25) 0%, transparent 70%);
    border-radius: 50%;
}

.section-ofertas::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 198, 192, .2) 0%, transparent 70%);
    border-radius: 50%;
}

.section-ofertas > .container-xl {
    position: relative;
    z-index: 1;
}

.section-ofertas .prod-card {
    background: #fff;
}

/* ===================== BENEFICIOS ===================== */
.section-beneficios {
    background: var(--vc-cream);
    padding: 60px 0;
    border-top: 1px solid rgba(139, 58, 78, .06);
}

.benef-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--vc-shadow);
    border: 1px solid rgba(139, 58, 78, .04);
    transition: transform .2s;
}

.benef-card:hover {
    transform: translateY(-4px);
}

.benef-card i {
    font-size: 40px;
    color: var(--vc-rose-coral);
    margin-bottom: 12px;
    display: block;
}

.benef-card h4 {
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--vc-rose-wine);
}

.benef-card p {
    color: var(--vc-gray);
    font-size: 12px;
    margin: 0;
}

/* ===================== FOOTER ===================== */
.vc-footer {
    background: linear-gradient(135deg, var(--vc-rose-wine-dark) 0%, var(--vc-rose-wine) 100%);
    color: rgba(255, 255, 255, .85);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand .brand-heart {
    color: var(--vc-rose-nude);
}

.footer-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--vc-rose-coral);
    transform: translateY(-3px);
    color: #fff;
}

.vc-footer h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 5px 0;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}

.footer-links li i {
    color: var(--vc-rose-nude);
    margin-right: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--vc-rose-nude);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}

.footer-bottom p { margin: 0; }

/* ===================== WhatsApp flotante ===================== */
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===================== PAGE HERO / CATEGORIA HERO ===================== */
.page-hero, .cat-hero {
    background: linear-gradient(135deg, var(--vc-rose-powder) 0%, var(--vc-cream) 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.page-hero h1, .cat-hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    margin: 12px 0 16px;
}

.page-hero-desc {
    color: var(--vc-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-vc {
    font-size: 13px;
    color: var(--vc-gray);
}

.breadcrumb-vc a {
    color: var(--vc-rose-wine);
}

.breadcrumb-vc span {
    color: var(--vc-rose-coral);
    font-weight: 500;
}

.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    color: var(--vc-gray);
    font-size: 14px;
    border: 1px solid rgba(139, 58, 78, .06);
}

.cat-toolbar strong {
    color: var(--vc-rose-wine);
    margin-right: 4px;
}

/* ===================== EMPTY STATE ===================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: var(--vc-rose-coral);
    margin-bottom: 20px;
    display: block;
}

.empty-state h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--vc-gray);
    margin-bottom: 24px;
}

/* ===================== DETALLE PRODUCTO ===================== */
.prod-detalle {
    padding: 40px 0 80px;
}

.detalle-imagen {
    background: var(--vc-rose-powder);
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    box-shadow: var(--vc-shadow);
}

.detalle-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalle-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--vc-rose-coral), var(--vc-rose-wine));
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(232, 160, 160, .5);
}

.detalle-info {
    padding: 10px 0 0 20px;
}

.detalle-info .prod-cat {
    font-size: 12px;
    margin-bottom: 10px;
}

.detalle-info h1 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin: 0 0 12px;
}

.detalle-corta {
    color: var(--vc-gray);
    font-size: 16px;
    margin-bottom: 24px;
}

.detalle-precio {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.price-now-big {
    font-size: 38px;
    font-weight: 700;
    color: var(--vc-rose-wine);
    font-family: 'Playfair Display', serif;
}

.price-old-big {
    font-size: 20px;
    color: var(--vc-gray);
    text-decoration: line-through;
}

.detalle-desc {
    background: var(--vc-rose-powder);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.detalle-desc h5 {
    font-size: 14px;
    margin: 0 0 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detalle-desc p {
    color: var(--vc-black);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.detalle-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.detalle-stock.ok {
    background: rgba(34, 197, 94, .12);
    color: #16a34a;
}

.detalle-stock.no {
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
}

.detalle-form-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cantidad-input {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(139, 58, 78, .2);
    border-radius: 999px;
    overflow: hidden;
}

.cantidad-input button {
    width: 40px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--vc-rose-wine);
    cursor: pointer;
    transition: background .2s;
}

.cantidad-input button:hover {
    background: var(--vc-rose-powder);
}

.cantidad-input input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--vc-black);
    height: 44px;
    font-size: 16px;
}

.cantidad-input input:focus {
    outline: none;
}

.btn-agregar-carrito {
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(232, 160, 160, .45);
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-agregar-carrito:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 160, 160, .6);
}

.detalle-features {
    border-top: 1px solid rgba(139, 58, 78, .1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.df {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--vc-gray);
    font-size: 14px;
}

.df i {
    color: var(--vc-rose-coral);
    font-size: 20px;
}

@media (max-width: 991px) {
    .detalle-info {
        padding: 20px 0 0;
    }
}

/* ===================== CARRITO ===================== */
.carrito-lista {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.carrito-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--vc-shadow);
    border: 1px solid rgba(139, 58, 78, .04);
    align-items: center;
}

.carrito-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--vc-rose-powder);
}

.carrito-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrito-item-info {
    flex: 1;
    min-width: 0;
}

.carrito-item-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--vc-black);
}

.carrito-item-info h4 a {
    color: var(--vc-black);
    text-decoration: none;
}

.carrito-item-info h4 a:hover {
    color: var(--vc-rose-coral);
}

.carrito-item-precio {
    color: var(--vc-gray);
    font-size: 13px;
    margin: 0 0 10px;
}

.carrito-item-cant {
    display: inline-flex;
    align-items: center;
    background: var(--vc-cream);
    border-radius: 999px;
    padding: 4px;
}

.btn-cant {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid rgba(139, 58, 78, .12);
    border-radius: 50%;
    font-size: 16px;
    color: var(--vc-rose-wine);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cant:hover {
    background: var(--vc-rose-coral);
    color: #fff;
    border-color: var(--vc-rose-coral);
}

.cant-value {
    padding: 0 16px;
    font-weight: 600;
    color: var(--vc-rose-wine);
}

.carrito-item-total {
    text-align: right;
    min-width: 100px;
}

.carrito-item-total strong {
    color: var(--vc-rose-wine);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

.btn-eliminar {
    background: transparent;
    border: none;
    color: var(--vc-gray);
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    transition: color .2s;
}

.btn-eliminar:hover {
    color: #dc3545;
}

.link-continuar {
    color: var(--vc-rose-wine);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.link-continuar:hover {
    color: var(--vc-rose-coral);
}

.carrito-resumen {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--vc-shadow);
    border: 1px solid rgba(139, 58, 78, .06);
    position: sticky;
    top: 100px;
}

.carrito-resumen h3 {
    font-size: 20px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(139, 58, 78, .1);
}

.resumen-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--vc-gray);
}

.resumen-row strong {
    color: var(--vc-black);
    font-weight: 600;
}

.resumen-row strong.gratis {
    color: #16a34a;
    font-weight: 700;
}

.envio-hint {
    background: rgba(212, 163, 115, .1);
    color: var(--vc-rose-wine);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    margin: 12px 0;
    border-left: 3px solid var(--vc-gold);
}

.envio-hint i {
    margin-right: 5px;
    color: var(--vc-gold);
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 2px solid rgba(139, 58, 78, .1);
    border-bottom: 2px solid rgba(139, 58, 78, .1);
}

.resumen-total span {
    font-size: 16px;
    font-weight: 600;
    color: var(--vc-black);
}

.resumen-total strong {
    font-size: 28px;
    color: var(--vc-rose-wine);
    font-family: 'Playfair Display', serif;
}

.btn-checkout {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(232, 160, 160, .45);
    transition: all .3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 160, 160, .6);
    color: #fff;
}

.pagos-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 58, 78, .08);
    font-size: 12px;
    color: var(--vc-gray);
}

.pagos-info p {
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagos-info i {
    color: var(--vc-rose-coral);
}

/* ===================== CONTACTO CARDS ===================== */
.contact-card {
    display: block;
    background: #fff;
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--vc-black);
    box-shadow: var(--vc-shadow);
    border: 1px solid rgba(139, 58, 78, .06);
    transition: all .3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vc-shadow-hover);
    color: var(--vc-rose-wine);
}

.contact-card i {
    font-size: 48px;
    color: var(--vc-rose-coral);
    margin-bottom: 16px;
    display: block;
}

.contact-card h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--vc-rose-wine);
}

.contact-card p {
    color: var(--vc-gray);
    font-size: 14px;
    margin: 0 0 16px;
}

.contact-card span {
    color: var(--vc-rose-coral);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===================== ABOUT VISUAL ===================== */
.about-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--vc-rose-nude) 0%, var(--vc-rose-coral) 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(232, 160, 160, .4);
    animation: heroFloat 4s ease-in-out infinite;
}

.about-visual i {
    font-size: 120px;
    color: #fff;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
    .top-bar { font-size: 11px; }
    .top-bar span:last-child { display: none; }
    .hero { padding: 60px 0 80px; }
    .section-cat, .section-prods, .section-beneficios, .section-ofertas { padding: 60px 0; }
    .hero-badges { gap: 14px; }
    .hero-badge { font-size: 12px; }
    .carrito-item {
        flex-wrap: wrap;
    }
    .carrito-item-img { width: 80px; height: 80px; }
    .carrito-item-total {
        min-width: auto;
        margin-left: auto;
    }
    }

/* ============================================================
   NAV LOGO REAL (reemplaza texto)
   ============================================================ */
.nav-logo {
    height: 52px;
    width: auto;
    display: block;
    transition: transform .2s;
}
.nav-brand:hover .nav-logo {
    transform: scale(1.03);
}
.vc-navbar.scrolled .nav-logo {
    height: 44px;
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: .92;
}

@media (max-width: 767px) {
    .nav-logo { height: 42px; }
    .footer-logo { height: 56px; }
}

/* ============================================================
   HERO SPLIT PREMIUM (imagen a la derecha)
   ============================================================ */
.hero-split {
    background: var(--vc-cream);
    padding: 0;
    overflow: hidden;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 620px;
    align-items: stretch;
}

.hero-split-left {
    background: linear-gradient(135deg, var(--vc-rose-powder) 0%, var(--vc-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.hero-split-left::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 163, 115, .28) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-split-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(232, 160, 160, .25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-split-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
}

.hero-title-elegant {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(52px, 6.5vw, 92px);
    line-height: .95;
    margin: 24px 0 24px;
    color: var(--vc-rose-wine-dark);
    font-weight: 500;
    letter-spacing: -.02em;
}

.hero-title-elegant .line-1 {
    display: block;
    font-weight: 500;
}

.hero-title-elegant .line-2 {
    display: block;
    padding-left: 40px;
    color: var(--vc-rose-coral);
}

.hero-title-elegant .line-2 em {
    font-style: italic;
    font-weight: 500;
}

.hero-title-elegant .line-3 {
    display: block;
    padding-left: 80px;
    color: var(--vc-gold);
    font-style: italic;
    font-weight: 400;
}

.hero-split-right {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: var(--vc-rose-powder);
}

.hero-split-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-split-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(253, 248, 245, .15) 0%, transparent 30%);
    pointer-events: none;
}

/* Ocultar hero antiguo si existe */
.hero { display: none; }

/* Responsive hero split */
@media (max-width: 991px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-split-right {
        min-height: 300px;
        order: -1;
    }
    .hero-split-left {
        padding: 50px 30px;
    }
    .hero-title-elegant .line-2 { padding-left: 20px; }
    .hero-title-elegant .line-3 { padding-left: 40px; }
}

@media (max-width: 576px) {
    .hero-split-right { min-height: 240px; }
    .hero-split-left { padding: 40px 20px; }
}


/* ============================================================
   FOOTER PREMIUM VINACUTE
   ============================================================ */
.vc-footer {
    background: linear-gradient(180deg, var(--vc-cream) 0%, var(--vc-rose-powder) 100%);
    margin-top: 80px;
    color: var(--vc-black);
}

/* -------- NEWSLETTER BANNER (arriba, en dorado) -------- */
.footer-newsletter {
    background: linear-gradient(135deg, var(--vc-rose-wine) 0%, var(--vc-rose-wine-dark) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 163, 115, .3) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(245, 198, 192, .18) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.newsletter-content {
    color: #fff;
}

.newsletter-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.newsletter-kicker i {
    margin-right: 4px;
    color: var(--vc-gold);
}

.newsletter-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    margin: 0 0 6px;
    font-weight: 500;
    letter-spacing: -.01em;
}

.newsletter-content h3 .accent-gold {
    color: var(--vc-gold);
    font-style: italic;
    font-weight: 600;
}

.newsletter-content p {
    color: rgba(255, 255, 255, .8);
    margin: 0;
    font-size: 14px;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    align-items: stretch;
    min-width: 380px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    transition: all .2s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--vc-gold) 0%, #B8895C 100%);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(212, 163, 115, .4);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, .55);
}

@media (max-width: 767px) {
    .newsletter-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter-form {
        min-width: auto;
        flex-direction: column;
    }
    .newsletter-form button { justify-content: center; }
}

/* -------- FOOTER MAIN (contenido con 3 columnas) -------- */
.footer-main {
    padding: 70px 0 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 85px;
    width: auto;
    display: block;
    /* NO invertir - dejar el rose gold original sobre fondo crema */
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--vc-rose-wine);
    font-style: italic;
    margin: 0 0 12px;
    font-weight: 500;
}

.footer-desc {
    color: var(--vc-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid rgba(139, 58, 78, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-rose-wine);
    text-decoration: none;
    transition: all .3s;
    font-size: 18px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(232, 160, 160, .35);
}

.vc-footer h5 {
    color: var(--vc-rose-wine-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.vc-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--vc-rose-coral), var(--vc-gold));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 6px 0;
    font-size: 14px;
}

.footer-links a {
    color: var(--vc-gray);
    text-decoration: none;
    transition: color .2s, padding .2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--vc-rose-coral);
    padding-left: 4px;
}

.promo-link-footer {
    color: var(--vc-rose-coral) !important;
    font-weight: 600;
}

/* -------- CONTACT ROWS -------- */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(139, 58, 78, .06);
    text-decoration: none;
    color: var(--vc-black);
    transition: all .2s;
}

.contact-row:hover:not(.static) {
    border-color: var(--vc-rose-coral);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(139, 58, 78, .08);
}

.contact-row.wa:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-color: transparent;
}

.contact-row.wa:hover i,
.contact-row.wa:hover strong,
.contact-row.wa:hover span { color: #fff; }

.contact-row > i {
    font-size: 22px;
    color: var(--vc-rose-coral);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-row.wa > i { color: #25D366; }

.contact-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.contact-row strong {
    font-size: 12px;
    color: var(--vc-rose-wine);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.contact-row span {
    font-size: 13px;
    color: var(--vc-gray);
    line-height: 1.5;
    word-break: break-word;
}

.contact-row .wa-247 {
    color: #25D366;
    font-weight: 500;
    margin-top: 2px;
}

.contact-row .wa-247 i {
    margin-right: 4px;
    font-size: 12px;
}

/* -------- TRUST SIGNALS (Pagos y envíos) -------- */
.footer-trust {
    background: #fff;
    padding: 24px 0;
    border-top: 1px solid rgba(139, 58, 78, .08);
    border-bottom: 1px solid rgba(139, 58, 78, .08);
}

.trust-block {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-label {
    color: var(--vc-rose-wine);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.trust-label i {
    color: var(--vc-gold);
    font-size: 18px;
}

.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--vc-rose-powder), var(--vc-cream));
    color: var(--vc-rose-wine);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    border: 1px solid rgba(139, 58, 78, .1);
}

/* -------- FOOTER BOTTOM -------- */
.footer-bottom-wrap {
    background: var(--vc-rose-wine-dark);
    padding: 24px 0;
    color: rgba(255, 255, 255, .8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.footer-legal-links a:hover {
    color: var(--vc-gold);
}

.footer-legal-links .sep {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.made-with {
    margin-top: 4px !important;
    color: rgba(255, 255, 255, .55) !important;
}

.made-with i {
    color: var(--vc-rose-nude);
    margin: 0 4px;
    animation: heartBeat 2.5s ease-in-out infinite;
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy { text-align: center; }
    .footer-legal-links { justify-content: center; }
    .trust-block {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Ocultar el estilo viejo si existe */
/* Anillos de pulso */
/* Tooltip con look Vina Cute (rose gold + vino) */
/* Animaciones */
100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive - ocultar tooltip en móvil */
@media (max-width: 768px) {
    }


/* ============================================================
   BOTON FLOTANTE WHATSAPP CON TOOLTIP - Vina Cute
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    animation: waAppear 0.6s ease-out 1s both;
}

.wa-float-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 4px 12px rgba(0, 0, 0, .15);
    transition: all .3s ease;
    position: relative;
    flex-shrink: 0;
}

.wa-float-btn::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 3px solid rgba(37, 211, 102, .5);
    animation: waPulse 2.2s ease-out infinite;
}

.wa-float-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .3);
    animation: waPulse 2.2s ease-out 0.6s infinite;
}

.wa-float:hover .wa-float-btn {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .6), 0 6px 16px rgba(0, 0, 0, .2);
}

.wa-float-tooltip {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F5 100%);
    color: #8B3A4E;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 0 4px 16px rgba(139, 58, 78, .18);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(15px);
    transition: all .3s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    border: 1.5px solid rgba(212, 163, 115, .3);
    position: relative;
}

.wa-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #FDF8F5;
}

.wa-float:hover .wa-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes waAppear {
    0% { opacity: 0; transform: translateY(30px) scale(0.7); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 18px;
        right: 18px;
    }
    .wa-float-btn {
        width: 56px;
        height: 56px;
        font-size: 27px;
    }
    .wa-float-tooltip {
        display: none;
    }
}


/* ============================================================
   HERO DE CATEGORIA PREMIUM
   ============================================================ */
.cat-hero-premium {
    background:
        radial-gradient(ellipse at top left, rgba(245, 198, 192, .4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 163, 115, .25) 0%, transparent 50%),
        linear-gradient(135deg, var(--vc-rose-powder) 0%, var(--vc-cream) 100%);
    padding: 40px 0 70px;
    position: relative;
    overflow: hidden;
}

.cat-hero-decor {
    position: absolute;
    width: 180px;
    height: 180px;
    color: var(--vc-gold);
    opacity: .18;
    pointer-events: none;
    animation: floatSlow 12s ease-in-out infinite;
}

.cat-decor-tl {
    top: 20px;
    left: 5%;
    transform: rotate(-15deg);
}

.cat-decor-br {
    bottom: 20px;
    right: 5%;
    transform: rotate(25deg);
    animation-delay: -6s;
    color: var(--vc-rose-coral);
    opacity: .15;
}

.cat-hero-premium .breadcrumb-vc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, .7);
    border-radius: 999px;
    font-size: 13px;
    backdrop-filter: blur(8px);
}

.cat-hero-premium .breadcrumb-vc a {
    color: var(--vc-rose-wine);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cat-hero-premium .breadcrumb-vc i.bi-chevron-right {
    font-size: 11px;
    color: var(--vc-gold);
}

.cat-hero-premium .breadcrumb-vc span {
    color: var(--vc-rose-coral);
    font-weight: 600;
}

.cat-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
}

.cat-hero-icon-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cat-hero-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, var(--vc-rose-powder) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--vc-rose-coral);
    box-shadow:
        0 15px 35px rgba(232, 160, 160, .35),
        inset 0 -4px 12px rgba(212, 163, 115, .1);
    position: relative;
}

.cat-hero-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--vc-gold);
    opacity: .5;
    animation: rotateSlow 20s linear infinite;
}

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

.cat-hero-kicker {
    background: rgba(139, 58, 78, .08);
    color: var(--vc-rose-wine);
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    border: 1px solid rgba(139, 58, 78, .12);
}

.cat-hero-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1;
    color: var(--vc-rose-wine-dark);
    font-weight: 500;
    margin: 0 0 16px;
    letter-spacing: -.02em;
}

.cat-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 20px;
}

.cat-hero-divider span {
    display: block;
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--vc-gold), transparent);
}

.cat-hero-divider i {
    color: var(--vc-rose-coral);
    font-size: 14px;
    animation: heartBeat 2.5s ease-in-out infinite;
}

.cat-hero-desc {
    color: var(--vc-gray);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.cat-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, .85);
    padding: 8px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(139, 58, 78, .1);
    border: 1px solid rgba(255, 255, 255, .6);
}

.cat-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 24px;
    position: relative;
}

.cat-stat + .cat-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(139, 58, 78, .15);
}

.cat-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--vc-rose-wine);
    line-height: 1;
    font-weight: 600;
}

.cat-stat span {
    font-size: 11px;
    color: var(--vc-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.cat-stat.highlight strong {
    color: var(--vc-rose-coral);
    font-style: italic;
}

/* ============================================================
   TOOLBAR MEJORADA
   ============================================================ */
.cat-toolbar-wrap {
    padding: 30px 0 10px;
}

.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(139, 58, 78, .06);
    border: 1px solid rgba(139, 58, 78, .06);
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vc-gray);
    font-size: 14px;
}

.toolbar-left i {
    color: var(--vc-rose-coral);
    font-size: 18px;
}

.toolbar-left strong {
    color: var(--vc-rose-wine);
    font-weight: 700;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-right label {
    font-size: 13px;
    color: var(--vc-rose-wine);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toolbar-right label i {
    color: var(--vc-gold);
}

.toolbar-select {
    background: var(--vc-cream);
    border: 1.5px solid rgba(139, 58, 78, .15);
    color: var(--vc-rose-wine);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Poppins', sans-serif;
}

.toolbar-select:hover, .toolbar-select:focus {
    border-color: var(--vc-rose-coral);
    outline: none;
    background: #fff;
}

/* ============================================================
   PRODUCT CARD v2 (rediseñada)
   ============================================================ */
.prod-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 58, 78, .08);
    border: 1px solid rgba(139, 58, 78, .05);
    transition: all .35s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prod-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 58, 78, .18);
    border-color: rgba(212, 163, 115, .3);
}

.prod-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    pointer-events: none;
}

.prod-badge-v2 {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    backdrop-filter: blur(10px);
}

.prod-badge-v2.sale {
    background: linear-gradient(135deg, var(--vc-rose-coral), var(--vc-rose-wine));
    color: #fff;
}

.prod-badge-v2.top {
    background: linear-gradient(135deg, var(--vc-gold), #B8895C);
    color: #fff;
    margin-left: auto;
}

.prod-img-link {
    display: block;
    text-decoration: none;
}

.prod-img-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--vc-rose-powder) 0%, var(--vc-cream) 100%);
    overflow: hidden;
}

.prod-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.prod-card-v2:hover .prod-img-v2 {
    transform: scale(1.1);
}

.prod-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(139, 58, 78, .5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s;
}

.prod-card-v2:hover .prod-img-overlay {
    opacity: 1;
}

.prod-view {
    background: #fff;
    color: var(--vc-rose-wine);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transform: translateY(15px);
    transition: transform .3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
}

.prod-card-v2:hover .prod-view {
    transform: translateY(0);
}

.prod-body-v2 {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

.prod-cat-v2 {
    font-size: 10px;
    color: var(--vc-gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.prod-name-v2 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.35;
    min-height: 38px;
    color: var(--vc-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-name-v2 a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.prod-name-v2 a:hover {
    color: var(--vc-rose-coral);
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--vc-gold);
}

.prod-rating .rating-num {
    color: var(--vc-gray);
    font-size: 11px;
    margin-left: 5px;
    font-weight: 500;
}

.prod-price-v2 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-now-v2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--vc-rose-wine);
    line-height: 1;
}

.price-old-v2 {
    font-size: 13px;
    color: var(--vc-gray);
    text-decoration: line-through;
    text-decoration-color: rgba(139, 58, 78, .4);
}

.prod-form-v2 {
    margin-top: auto;
}

.prod-add-v2 {
    width: 100%;
    background: transparent;
    color: var(--vc-rose-wine);
    border: 1.5px solid var(--vc-rose-wine);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
}

.prod-add-v2:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(232, 160, 160, .4);
}

.prod-add-v2:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* Ocultar la card vieja si aun se usa */
.prod-card { display: none; }

/* ============================================================
   EMPTY STATE PREMIUM
   ============================================================ */
.empty-state-premium {
    text-align: center;
    padding: 80px 20px 100px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vc-rose-powder), var(--vc-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-rose-coral);
    font-size: 55px;
    box-shadow:
        0 15px 40px rgba(232, 160, 160, .3),
        inset 0 -6px 15px rgba(212, 163, 115, .1);
    position: relative;
    animation: heroFloat 3s ease-in-out infinite;
}

.empty-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--vc-gold);
    opacity: .4;
    animation: rotateSlow 20s linear infinite;
}

.empty-state-premium h3 {
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--vc-rose-wine-dark);
}

.empty-state-premium p {
    color: var(--vc-gray);
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
}

.empty-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SECCION TAMBIEN TE PUEDE GUSTAR
   ============================================================ */
.section-tambien {
    padding: 80px 0;
    background: var(--vc-cream);
}

@media (max-width: 767px) {
    .cat-hero-premium {
        padding: 30px 0 50px;
    }
    .cat-hero-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
    .cat-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cat-stat {
        padding: 6px 16px;
    }
    .cat-stat strong { font-size: 20px; }
    .cat-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .cat-hero-decor {
        width: 100px;
        height: 100px;
    }
}


/* ============================================================
   FOOTER - MEJORA DEL LOGO (frame vino elegante)
   ============================================================ */
.footer-brand {
    background: linear-gradient(135deg, var(--vc-rose-wine) 0%, var(--vc-rose-wine-dark) 100%);
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(139, 58, 78, .25),
        inset 0 1px 0 rgba(255, 255, 255, .1);
    max-width: 320px;
}

/* Ornamento decorativo en la esquina */
.footer-brand::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 163, 115, .35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(245, 198, 192, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-logo {
    height: 110px !important;
    width: auto;
    display: block !important;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Filtro para aumentar brillo y saturación del rose gold */
    filter: brightness(1.15) contrast(1.05) drop-shadow(0 2px 8px rgba(0, 0, 0, .25));
    transition: transform .3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.03);
}

/* Bordes decorativos dorados (esquinas tipo joyería) */
.footer-brand .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--vc-gold);
    opacity: .55;
    z-index: 1;
}

.footer-brand .corner.tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}

.footer-brand .corner.tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 12px;
}

.footer-brand .corner.bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 12px;
}

.footer-brand .corner.br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
}

/* Tagline con más estilo */
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--vc-rose-wine);
    font-style: italic;
    margin: 4px 0 14px !important;
    font-weight: 500;
    text-align: left;
    position: relative;
    padding-left: 4px;
}

.footer-tagline::before {
    content: '"';
    color: var(--vc-gold);
    font-size: 40px;
    line-height: 1;
    margin-right: 4px;
    font-family: 'Playfair Display', serif;
    vertical-align: -8px;
}

@media (max-width: 767px) {
    .footer-brand {
        max-width: 100%;
        padding: 26px 20px;
    }
    .footer-logo {
        height: 90px !important;
    }
}


/* ============================================================
   FOOTER - MEJORA DEL LOGO (frame vino elegante)
   ============================================================ */
.footer-brand {
    background: linear-gradient(135deg, var(--vc-rose-wine) 0%, var(--vc-rose-wine-dark) 100%);
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(139, 58, 78, .25),
        inset 0 1px 0 rgba(255, 255, 255, .1);
    max-width: 320px;
}

/* Ornamento decorativo en la esquina */
.footer-brand::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 163, 115, .35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(245, 198, 192, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-logo {
    height: 110px !important;
    width: auto;
    display: block !important;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Filtro para aumentar brillo y saturación del rose gold */
    filter: brightness(1.15) contrast(1.05) drop-shadow(0 2px 8px rgba(0, 0, 0, .25));
    transition: transform .3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.03);
}

/* Bordes decorativos dorados (esquinas tipo joyería) */
.footer-brand .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--vc-gold);
    opacity: .55;
    z-index: 1;
}

.footer-brand .corner.tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}

.footer-brand .corner.tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 12px;
}

.footer-brand .corner.bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 12px;
}

.footer-brand .corner.br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
}

/* Tagline con más estilo */
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--vc-rose-wine);
    font-style: italic;
    margin: 4px 0 14px !important;
    font-weight: 500;
    text-align: left;
    position: relative;
    padding-left: 4px;
}

.footer-tagline::before {
    content: '"';
    color: var(--vc-gold);
    font-size: 40px;
    line-height: 1;
    margin-right: 4px;
    font-family: 'Playfair Display', serif;
    vertical-align: -8px;
}

@media (max-width: 767px) {
    .footer-brand {
        max-width: 100%;
        padding: 26px 20px;
    }
    .footer-logo {
        height: 90px !important;
    }
}


/* ============================================================
   FIX: Asegurar que el nombre NUNCA se salga del card
   ============================================================ */
.prod-card-v2 {
    overflow: hidden !important;
    position: relative;
    isolation: isolate;
}

.prod-card-v2 .prod-body-v2 {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 20px 18px 22px !important;
}

.prod-card-v2 .prod-img-frame {
    position: relative;
    z-index: 1;
}

/* Nombre bien contenido */
.prod-name-v2 {
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    hyphens: auto;
    min-height: 42px !important;
    line-height: 1.35 !important;
    font-size: 15px !important;
    margin-bottom: 10px !important;
}

/* Badges solo en la esquina superior derecha (o izquierda si es solo TOP) */
.prod-card-badges {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    display: flex;
    gap: 6px;
    pointer-events: none;
}

.prod-badge-v2.top {
    background: linear-gradient(135deg, var(--vc-gold), #B8895C);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 6px 14px rgba(212, 163, 115, .45);
    margin-left: 0;
}

/* Padding del body más generoso */
.prod-body-v2 {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

.prod-cat-v2 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Precio más elegante y grande */
.price-now-v2 {
    font-size: 22px;
}

.price-old-v2 {
    font-size: 14px;
}

.prod-price-v2 {
    margin-bottom: 16px;
}

/* Botón más presente */
.prod-add-v2 {
    padding: 11px 14px;
    font-size: 13px;
}


/* ============================================================
   FIX: Icono del hero de categoria MAS PRESENTE
   ============================================================ */
.cat-hero-icon {
    width: 110px !important;
    height: 110px !important;
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%) !important;
    color: #fff !important;
    font-size: 52px !important;
    box-shadow:
        0 20px 45px rgba(139, 58, 78, .35),
        0 8px 20px rgba(232, 160, 160, .4),
        inset 0 -6px 15px rgba(139, 58, 78, .2),
        inset 0 3px 8px rgba(255, 255, 255, .25) !important;
    position: relative;
    border: 3px solid #fff;
}

.cat-hero-icon::before {
    inset: -12px !important;
    border: 2px dashed var(--vc-gold) !important;
    opacity: .8 !important;
    border-width: 2.5px !important;
}

/* Halo dorado extra atras */
.cat-hero-icon::after {
    content: '';
    position: absolute;
    inset: -25px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, .35) 0%, transparent 65%);
    z-index: -1;
    animation: haloPulse 3s ease-in-out infinite;
}

@keyframes haloPulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Kicker con mas peso */
.cat-hero-kicker {
    margin-top: 6px;
    padding: 7px 22px !important;
    background: #fff !important;
    color: var(--vc-rose-wine) !important;
    box-shadow: 0 4px 12px rgba(139, 58, 78, .12);
    font-weight: 700 !important;
}

@media (max-width: 767px) {
    .cat-hero-icon {
        width: 90px !important;
        height: 90px !important;
        font-size: 42px !important;
    }
}


/* ============================================================
   FIX: Fondo del hero de categoria MAS INTENSO
   ============================================================ */
.cat-hero-premium {
    background:
        radial-gradient(ellipse at top left, rgba(232, 160, 160, .55) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 163, 115, .40) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 198, 192, .35) 0%, transparent 70%),
        linear-gradient(135deg, #F5C6C0 0%, #F9E5E0 50%, #F5C6C0 100%) !important;
    padding: 50px 0 80px !important;
}

/* Los ornamentos SVG más visibles */
.cat-hero-decor {
    opacity: .35 !important;
    width: 200px !important;
    height: 200px !important;
}

.cat-decor-tl {
    top: 30px !important;
    left: 3% !important;
    color: var(--vc-rose-wine) !important;
}

.cat-decor-br {
    bottom: 30px !important;
    right: 3% !important;
    color: var(--vc-rose-wine) !important;
    opacity: .3 !important;
}

/* Breadcrumb con más contraste sobre el fondo más intenso */
.cat-hero-premium .breadcrumb-vc {
    background: rgba(255, 255, 255, .85) !important;
    box-shadow: 0 4px 15px rgba(139, 58, 78, .15);
}

/* Divider más visible */
.cat-hero-divider span {
    background: linear-gradient(90deg, transparent, var(--vc-rose-wine), transparent) !important;
    height: 2px !important;
    width: 70px !important;
}

.cat-hero-divider i {
    font-size: 16px !important;
    color: var(--vc-rose-wine) !important;
}

/* Description con más peso */
.cat-hero-desc {
    color: var(--vc-rose-wine-dark) !important;
    font-weight: 500;
}

/* Stats con más presencia */
.cat-hero-stats {
    background: #fff !important;
    box-shadow: 0 12px 35px rgba(139, 58, 78, .18) !important;
    border: 2px solid rgba(255, 255, 255, .8) !important;
}


/* ============================================================
   HERO DE CATEGORIA - EFECTO DE BRILLO / SHIMMER
   ============================================================ */
.cat-hero-premium {
    position: relative;
}

/* Partículas de brillo flotantes */
.cat-hero-premium::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 8px #fff,
        150px 80px 0 -1px rgba(255, 255, 255, .9),
        280px 120px 0 -1px rgba(212, 163, 115, .9),
        420px 60px 0 0 rgba(255, 255, 255, .8),
        620px 180px 0 -1px rgba(212, 163, 115, .8),
        780px 90px 0 0 rgba(255, 255, 255, .9),
        920px 200px 0 -1px rgba(212, 163, 115, .8),
        1080px 130px 0 0 rgba(255, 255, 255, .9),
        200px 220px 0 -1px rgba(212, 163, 115, .8),
        480px 260px 0 0 rgba(255, 255, 255, .8),
        720px 300px 0 -1px rgba(212, 163, 115, .9),
        1000px 280px 0 0 rgba(255, 255, 255, .8);
    animation: sparkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.cat-hero-premium::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 3px;
    height: 3px;
    background: var(--vc-gold);
    border-radius: 50%;
    box-shadow:
        0 0 6px var(--vc-gold),
        -300px -80px 0 -1px rgba(212, 163, 115, .9),
        -150px 100px 0 0 rgba(255, 255, 255, .8),
        200px -50px 0 -1px rgba(212, 163, 115, .9),
        350px 150px 0 0 rgba(255, 255, 255, .8),
        -450px 200px 0 -1px rgba(212, 163, 115, .9),
        500px -100px 0 0 rgba(255, 255, 255, .8),
        -600px 50px 0 -1px rgba(212, 163, 115, .9),
        650px 220px 0 0 rgba(255, 255, 255, .9);
    animation: sparkle 4s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% {
        opacity: .3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Glow radial extra */
.cat-hero-content {
    position: relative;
    z-index: 3;
}

.cat-hero-icon {
    position: relative;
    z-index: 3;
}

/* ============================================================
   CONTACTO - HERO + SPLIT PREMIUM
   ============================================================ */

/* Hero de contacto */
.contacto-hero {
    background:
        radial-gradient(ellipse at top left, rgba(232, 160, 160, .5) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(212, 163, 115, .4) 0%, transparent 55%),
        linear-gradient(135deg, #F5C6C0 0%, #F9E5E0 50%, #F5C6C0 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contacto-hero-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contacto-hero .deco-1 {
    top: -50px;
    left: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, .5) 0%, transparent 70%);
}

.contacto-hero .deco-2 {
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 163, 115, .35) 0%, transparent 70%);
}

.contacto-hero > .container-xl {
    position: relative;
    z-index: 2;
}

.contacto-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: 1;
    color: var(--vc-rose-wine-dark);
    font-weight: 500;
    margin: 16px 0 20px;
    letter-spacing: -.02em;
}

.contacto-hero h1 em {
    font-style: italic;
    color: var(--vc-rose-coral);
    font-weight: 500;
}

.contacto-hero .page-hero-desc {
    color: var(--vc-rose-wine-dark);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Contacto Split */
.contacto-split-section {
    padding: 60px 0 100px;
    background: var(--vc-cream);
}

.contacto-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============= CARD IZQUIERDA (OSCURA) ============= */
.contacto-info-card {
    background: linear-gradient(135deg, var(--vc-rose-wine) 0%, var(--vc-rose-wine-dark) 100%);
    color: #fff;
    padding: 45px 40px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(139, 58, 78, .25);
    display: flex;
    flex-direction: column;
}

.info-decor-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(212, 163, 115, .35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-decor-2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 198, 192, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    position: relative;
    z-index: 2;
    width: fit-content;
}

.info-kicker i {
    color: var(--vc-gold);
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    color: #fff !important;
    line-height: 1.05;
    margin: 0 0 16px;
    font-weight: 500;
    letter-spacing: -.01em;
    position: relative;
    z-index: 2;
}

.info-title em {
    font-style: italic;
    color: var(--vc-gold);
    font-weight: 500;
}

.info-desc {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

/* Features (WhatsApp / Envios / Compra segura) */
.info-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.info-feature {
    display: flex;
    gap: 14px;
    align-items: center;
}

.info-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 163, 115, .25), rgba(255, 255, 255, .1));
    border: 1.5px solid var(--vc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-gold);
    font-size: 22px;
    flex-shrink: 0;
}

.info-feature-text strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-feature-text span {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.4;
}

/* Botón WhatsApp del card oscura */
.btn-info-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.btn-info-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, .5);
    color: #fff !important;
}

.btn-info-wa i {
    font-size: 20px;
}

/* Grid de contacto */
.info-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    z-index: 2;
}

.info-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
}

.info-contact-item i {
    color: var(--vc-gold);
    font-size: 14px;
    width: 20px;
}

/* Social */
.info-social {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    z-index: 2;
}

.info-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all .25s;
}

.info-social a:hover {
    background: var(--vc-gold);
    color: var(--vc-rose-wine-dark);
    transform: translateY(-3px);
    border-color: var(--vc-gold);
}

/* ============= CARD DERECHA (FORMULARIO) ============= */
.contacto-form-card {
    background: #fff;
    padding: 45px 40px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(139, 58, 78, .12);
    border: 1px solid rgba(139, 58, 78, .06);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--vc-rose-wine-dark);
    font-weight: 500;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.form-subtitle {
    color: var(--vc-gray);
    font-size: 14px;
    margin-bottom: 28px;
}

.vc-form {
    display: block;
}

.vc-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--vc-rose-wine);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vc-label i {
    color: var(--vc-rose-coral);
    font-size: 14px;
}

.vc-input {
    width: 100%;
    background: var(--vc-cream);
    border: 1.5px solid rgba(139, 58, 78, .12);
    color: var(--vc-black);
    padding: 13px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
}

.vc-input::placeholder {
    color: rgba(122, 105, 112, .6);
}

.vc-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--vc-rose-coral);
    box-shadow: 0 0 0 4px rgba(232, 160, 160, .12);
}

.vc-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

select.vc-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B3A4E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 44px;
    -webkit-appearance: none;
    appearance: none;
}

/* Boton submit */
.btn-form-submit {
    background: linear-gradient(135deg, var(--vc-rose-coral) 0%, var(--vc-rose-wine) 100%);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(232, 160, 160, .4);
    font-family: 'Poppins', sans-serif;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(232, 160, 160, .55);
}

.btn-form-submit i {
    font-size: 20px;
}

.form-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--vc-gray);
    font-size: 12px;
    margin: 16px 0 0;
}

.form-hint i {
    color: var(--vc-gold);
}

/* Responsive */
@media (max-width: 991px) {
    .contacto-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contacto-info-card,
    .contacto-form-card {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .contacto-hero {
        padding: 40px 0 50px;
    }
    .contacto-split-section {
        padding: 40px 0 60px;
    }
    .contacto-info-card,
    .contacto-form-card {
        padding: 30px 22px;
    }
    .info-features {
        gap: 14px;
    }
}


/* ============================================================
   ESTADOS DE VALIDACION - VINACUTE (paleta rosa/coral)
   ============================================================ */

/* Estado válido - verde suave */
.vc-input.is-valid {
    border-color: #10b981 !important;
    background-color: #f0fdf4 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2310b981' d='M4.7 8.7L2.3 6.3l.8-.8 1.6 1.6 3.6-3.6.8.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 42px;
}

.vc-input.is-valid:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .12) !important;
}

/* Estado inválido - rosa coral (mantiene la paleta) */
.vc-input.is-invalid {
    border-color: #E8A0A0 !important;
    background-color: #FDF3F3 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4.5' fill='none' stroke='%23E8A0A0' stroke-width='1.2'/%3E%3Cpath stroke='%23E8A0A0' stroke-width='1.5' stroke-linecap='round' d='M5.9 3.5v3'/%3E%3Ccircle cx='6' cy='8.2' r='.7' fill='%23E8A0A0'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 42px;
}

.vc-input.is-invalid:focus {
    border-color: #E8A0A0 !important;
    box-shadow: 0 0 0 4px rgba(232, 160, 160, .18) !important;
}

/* Textarea sin icono */
textarea.vc-input.is-valid,
textarea.vc-input.is-invalid {
    background-image: none !important;
    padding-right: 18px !important;
}

/* Select sin icono validacion (mantiene la flecha) */
select.vc-input.is-valid,
select.vc-input.is-invalid {
    padding-right: 44px !important;
}

/* Feedback en vivo */
.live-feedback {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    min-height: 16px;
    letter-spacing: .01em;
    transition: color .2s ease;
}

.live-feedback-error {
    color: #C97C7C !important;
}

.live-feedback-ok {
    color: #10b981 !important;
}

/* ============================================================
   SweetAlert2 con look Vinacute
   ============================================================ */
.swal2-popup {
    border-radius: 24px !important;
    padding: 2rem !important;
    font-family: 'Poppins', sans-serif !important;
    border: 1px solid rgba(139, 58, 78, .08);
}

.swal2-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2.4rem !important;
    color: #8B3A4E !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    font-style: italic;
}

.swal2-html-container {
    color: #7A6970 !important;
    font-size: 15px !important;
}

.swal2-confirm {
    border-radius: 999px !important;
    padding: .8rem 2rem !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #E8A0A0 0%, #8B3A4E 100%) !important;
    box-shadow: 0 10px 25px rgba(232, 160, 160, .35) !important;
}


/* ============================================================
   FIX: Ocultar nombre fantasma que se sale del card
   ============================================================ */
.prod-card-v2 {
    overflow: hidden !important;
    contain: paint;
}

/* Asegurar que la imagen no tenga texto encima */
.prod-img-frame {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.prod-img-frame::before,
.prod-img-frame::after {
    content: none !important;
}

/* Si hay algún nombre suelto fuera del body, ocultarlo */
.prod-card-v2 > h3,
.prod-card-v2 > .prod-name-v2,
.prod-card-v2 > a > h3,
.prod-card-badges + h3,
.prod-card-badges ~ h3:not(.prod-body-v2 h3) {
    display: none !important;
}

/* Reforzar que el título solo viva dentro del body */
.prod-name-v2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
}

/* Blindar el body para que nada se le salga */
.prod-body-v2 {
    position: relative;
    z-index: 2;
    background: #fff;
    overflow: hidden;
}


/* ============================================================
   FIX: prod-name-v2 como div en lugar de h3
   (mismo estilo visual, sin encabezado semántico)
   ============================================================ */
.prod-name-v2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0 0 10px !important;
    line-height: 1.35 !important;
    min-height: 42px !important;
    color: var(--vc-black) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    text-overflow: ellipsis;
    word-break: break-word;
    position: relative;
    z-index: 5;
    background: #fff;
}

.prod-name-v2 a {
    color: inherit !important;
    text-decoration: none;
    transition: color .2s;
}

.prod-name-v2 a:hover {
    color: var(--vc-rose-coral) !important;
}


/* ============================================================
   FIX: Logo del navbar mas grande y presente
   ============================================================ */
.vc-navbar {
    padding: 10px 0 !important;
}

.nav-inner {
    min-height: 76px;
    align-items: center;
}

.nav-brand {
    display: flex !important;
    align-items: center;
    padding: 4px 0;
    transition: transform .25s ease;
}

.nav-brand:hover {
    transform: scale(1.03);
}

.nav-logo {
    height: 72px !important;
    width: auto !important;
    max-width: 200px;
    display: block !important;
    object-fit: contain;
    /* Sombra sutil para separar del fondo crema */
    filter: drop-shadow(0 2px 6px rgba(139, 58, 78, .15));
    transition: height .3s ease, filter .3s ease;
}

.vc-navbar.scrolled {
    padding: 8px 0 !important;
}

.vc-navbar.scrolled .nav-logo {
    height: 58px !important;
    filter: drop-shadow(0 2px 8px rgba(139, 58, 78, .2));
}

/* Espaciado del nav para acomodar el logo mas grande */
.nav-links {
    padding: 0;
}

@media (max-width: 991px) {
    .nav-logo {
        height: 62px !important;
    }
    .vc-navbar.scrolled .nav-logo {
        height: 52px !important;
    }
    .nav-inner {
        min-height: 68px;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        height: 54px !important;
    }
}


/* ============================================================
   FIX: Logo del navbar mas grande y presente
   ============================================================ */
.vc-navbar {
    padding: 10px 0 !important;
}

.nav-inner {
    min-height: 76px;
    align-items: center;
}

.nav-brand {
    display: flex !important;
    align-items: center;
    padding: 4px 0;
    transition: transform .25s ease;
}

.nav-brand:hover {
    transform: scale(1.03);
}

.nav-logo {
    height: 72px !important;
    width: auto !important;
    max-width: 200px;
    display: block !important;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(139, 58, 78, .15));
    transition: height .3s ease, filter .3s ease;
}

.vc-navbar.scrolled {
    padding: 8px 0 !important;
}

.vc-navbar.scrolled .nav-logo {
    height: 58px !important;
    filter: drop-shadow(0 2px 8px rgba(139, 58, 78, .2));
}

.nav-links {
    padding: 0;
}

@media (max-width: 991px) {
    .nav-logo {
        height: 62px !important;
    }
    .vc-navbar.scrolled .nav-logo {
        height: 52px !important;
    }
    .nav-inner {
        min-height: 68px;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        height: 54px !important;
    }
}
