/* ============================================================
   D'KARY IMPORT — Public UI V0002
   ============================================================ */

.site-v0002 {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #f4f6fb;
}

.site-v0002 .badge.bg-danger {
    background: var(--v2-pink) !important;
}

:root {
    /* Colores clásicos D'KARY — morado + magenta + azul en precios */
    --v2-navy: #8B2B9A;
    --v2-navy-dark: #6A1B7A;
    --v2-pink: #E020A0;
    --v2-pink-soft: #F8E8F5;
    --v2-price: #0047AB;
    --v2-surface: #ffffff;
    --v2-border: rgba(139, 43, 154, 0.1);
    --v2-shadow: 0 8px 28px rgba(139, 43, 154, 0.1);
    --v2-radius: 12px;
}

/* Top bar */
.top-bar-v2 {
    background: linear-gradient(90deg, var(--v2-navy-dark), var(--v2-navy));
    padding: 8px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.92);
}

.top-bar-v2 .top-bar-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
}

.top-bar-v2 .top-bar-link:hover {
    color: #fff;
}

/* Navbar */
.navbar-v2 {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
    padding: 0.65rem 0;
}

.navbar-brand-v2 {
    padding: 0;
    margin-right: 1rem;
}

.site-logo-navbar {
    height: 58px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.navbar-nav-v2 .nav-link {
    font-weight: 600;
    color: var(--v2-navy) !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.navbar-nav-v2 .nav-link:hover,
.navbar-nav-v2 .nav-link.active {
    background: var(--v2-pink-soft);
    color: var(--v2-pink) !important;
}

.navbar-nav-v2 .nav-link.active {
    font-weight: 700;
}

.btn-outline-nav {
    border: 1.5px solid var(--v2-navy);
    color: var(--v2-navy);
    font-weight: 600;
    border-radius: 999px;
}

.btn-outline-nav:hover {
    background: var(--v2-navy);
    color: #fff;
}

/* Search */
.navbar-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #f0f2fa;
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: 4px 4px 4px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.navbar-search-wrap:focus-within {
    border-color: var(--v2-pink);
    box-shadow: 0 0 0 4px rgba(224, 32, 160, 0.12);
    background: #fff;
}

.navbar-search-wrap > .bi-search {
    color: var(--v2-navy);
    opacity: 0.55;
    margin-right: 8px;
}

.navbar-search-input {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.55rem 0.25rem;
    font-size: 0.95rem;
}

.navbar-search-input:focus {
    outline: none;
}

.btn-search-submit {
    background: linear-gradient(135deg, var(--v2-pink), var(--v2-navy));
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-search-submit:hover {
    filter: brightness(1.05);
    color: #fff;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid var(--v2-border);
    z-index: 1050;
    overflow: hidden;
    max-height: 360px;
    overflow-y: auto;
}

.search-suggestions.show {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f3f9;
}

.search-suggestion-item:hover {
    background: #f8f9ff;
}

.search-suggestion-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    background: #eee;
}

.search-suggestion-body strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
}

.search-suggestion-body small {
    color: #6c757d;
}

.search-suggestion-empty {
    padding: 16px;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Catalog toolbar */
.catalog-toolbar {
    background: var(--v2-surface);
    border-radius: var(--v2-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--v2-shadow);
    margin-bottom: 1.5rem;
}

.catalog-toolbar h1 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin: 0;
}

.catalog-count-badge {
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
}

.category-sidebar-v2 .card {
    border: 0;
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
    overflow: hidden;
}

.category-sidebar-v2 .card-header {
    background: linear-gradient(135deg, var(--v2-navy), var(--v2-navy-dark));
    border: 0;
    font-weight: 700;
}

.category-sidebar-v2 .list-group-item {
    border: 0;
    border-bottom: 1px solid #f0f2fa;
    font-weight: 500;
    padding: 0.85rem 1.1rem;
}

.category-sidebar-v2 .list-group-item.active,
.category-sidebar-v2 .list-group-item:hover {
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
}

/* Tarjetas de producto — estilo clásico mejorado */
.site-v0002 .product-card {
    border: none;
    border-radius: var(--v2-radius);
    overflow: hidden;
    box-shadow: var(--v2-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.site-v0002 .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(139, 43, 154, 0.18);
}

.site-v0002 .product-card__img-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #eef0f4);
}

.site-v0002 .product-card__img-link img,
.site-v0002 .product-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
    border: 0;
    border-radius: 0;
}

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

.site-v0002 .product-card .card-body {
    padding: 1.15rem 1.25rem 1.25rem;
}

.site-v0002 .product-card .card-title {
    font-size: 0.95rem !important;
    font-weight: 600;
    line-height: 1.45;
    min-height: 2.8rem;
    max-height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem;
}

.site-v0002 .product-card .card-title a {
    color: var(--dark-gray) !important;
    text-decoration: none;
}

.site-v0002 .product-card .card-title a:hover {
    color: var(--v2-pink) !important;
}

.site-v0002 .product-card__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v2-price);
    margin: 0;
}

.site-v0002 .product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-v0002 .btn-product-details {
    background: #6c757d;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.55rem 0.5rem;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.site-v0002 .btn-product-details:hover {
    background: #5a6268;
    color: #fff;
}

.site-v0002 .btn-product-add {
    background: linear-gradient(135deg, var(--v2-pink), var(--v2-navy));
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.55rem 0.5rem;
    border-radius: 0 8px 8px 0;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.site-v0002 .btn-product-add:hover {
    filter: brightness(1.08);
    color: #fff;
}

@media (max-width: 768px) {
    .site-v0002 .product-card img {
        height: 220px;
    }
}

/* Overlay "Ver más" — categorías y productos */
.card-media-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 27, 122, 0.52);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.card-media-overlay__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.35rem;
    background: #fff;
    color: var(--v2-navy);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    transform: translateY(10px);
    transition: transform 0.28s ease, background 0.2s ease, color 0.2s ease;
}

.home-category-card__media:hover .card-media-overlay,
.site-v0002 .product-card__img-link:hover .card-media-overlay {
    opacity: 1;
}

.home-category-card__media:hover .card-media-overlay__btn,
.site-v0002 .product-card__img-link:hover .card-media-overlay__btn {
    transform: translateY(0);
}

/* Legacy v2 card aliases — ocultos si quedan en caché */
.product-card-v2__badge,
.product-card-v2__brand {
    display: none;
}

/* ============================================================
   CATÁLOGO — sidebar izquierdo + productos
   ============================================================ */
.catalog-page {
    background: #f4f6fb;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.08);
}

.catalog-toolbar__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin: 0;
}

.catalog-toolbar__hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.35rem;
}

.catalog-toolbar__count {
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Banner compacto del catálogo (sin Swiper 70vh) */
.catalog-hero {
    height: 180px;
    overflow: hidden;
}

.catalog-hero__slide {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.catalog-hero__title {
    font-size: 1.5rem;
    font-weight: 800;
}

.catalog-hero__subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .catalog-hero {
        height: 220px;
    }

    .catalog-hero__title {
        font-size: 1.85rem;
    }
}

/* Layout catálogo: columna izquierda = altura completa de la grilla */
@media (min-width: 992px) {
    .catalog-layout {
        align-items: stretch !important;
    }

    .catalog-sidebar-col {
        align-self: stretch;
    }
}

.catalog-sidebar-panel {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.08);
}

.catalog-sidebar-panel__head {
    background: linear-gradient(135deg, var(--v2-navy), var(--v2-navy-dark));
    color: #fff;
    font-weight: 700;
    padding: 1rem 1.15rem;
    font-size: 1rem;
    border-radius: 16px 16px 0 0;
}

.catalog-sidebar-panel__nav {
    display: flex;
    flex-direction: column;
}

/* Sticky: el panel baja con la página, sin barra de scroll interna */
@media (min-width: 992px) {
    .catalog-sidebar-panel {
        position: -webkit-sticky;
        position: sticky;
        top: 96px;
    }
}

.catalog-sidebar-link {
    display: block;
    padding: 0.85rem 1.15rem;
    color: var(--v2-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid #eef0f8;
    transition: background 0.15s ease, color 0.15s ease;
}

.catalog-sidebar-link:last-child {
    border-bottom: 0;
}

.catalog-sidebar-link:hover {
    background: #fce4f3;
    color: #e020a0;
}

.catalog-sidebar-link.is-active {
    background: #fce4f3;
    color: #e020a0;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .catalog-sidebar-panel__nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.85rem;
    }

    .catalog-sidebar-link {
        border: 0;
        border-radius: 999px;
        background: #f0f2fa;
        padding: 0.45rem 0.9rem;
        font-size: 0.82rem;
    }

    .catalog-sidebar-link.is-active {
        background: linear-gradient(135deg, var(--v2-pink), var(--v2-navy));
        color: #fff;
    }
}

.product-card-v2 .card-body {
    padding: 1rem 1.1rem 1.15rem;
}

/* Home featured section */
.section-v2 {
    padding: 4rem 0;
}

.section-v2__title {
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.35rem;
}

.section-v2__subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Home — hero banner responsive (sin distorsión) */
.hero-section {
    height: auto;
    min-height: 0;
}

.hero-swiper {
    width: 100%;
    height: auto !important;
    min-height: 0;
}

.hero-swiper .swiper-wrapper {
    align-items: flex-start;
}

.hero-swiper .swiper-slide {
    display: block;
    height: auto !important;
    text-align: initial;
    background: #eef1fa;
}

.home-hero-slide {
    margin: 0;
    width: 100%;
    line-height: 0;
}

.home-hero-slide__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.hero-swiper .swiper-pagination {
    bottom: 12px !important;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(26, 35, 68, 0.35);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--v2-purple) !important;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--v2-navy) !important;
    background: rgba(255, 255, 255, 0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}

/* Home — buscador fijo debajo del banner (no dentro del slider) */
.home-search-section {
    padding: 2rem 0 2.5rem;
    background: linear-gradient(180deg, #eef1fa 0%, #f4f6fb 100%);
    border-bottom: 1px solid var(--v2-border);
}

.home-search-card {
    background: #fff;
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
    padding: 1.75rem 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.home-search-card__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.35rem;
    text-align: center;
}

.home-search-card__subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.home-search-wrap {
    background: #f0f2fa !important;
    border: 1.5px solid transparent !important;
}

.home-search-categories {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid #eef0f8;
}

.home-search-categories__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--v2-navy);
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-search-categories__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.home-search-category-chip,
.home-welcome-category-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #f0f2fa;
    color: var(--v2-navy);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.home-search-category-chip:hover,
.home-welcome-category-chip:hover {
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
}

/* Modal bienvenida — al ingresar al home */
.home-welcome-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26, 35, 126, 0.2);
}

.home-welcome-modal__header {
    background: linear-gradient(135deg, var(--v2-navy), var(--v2-navy-dark));
    color: #fff;
    padding: 1.35rem 1.5rem;
    align-items: flex-start;
}

.home-welcome-modal__header .modal-title {
    font-weight: 800;
    font-size: 1.25rem;
}

.home-welcome-modal__lead {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.35rem;
}

.home-welcome-modal__body {
    padding: 1.35rem 1.5rem 1rem;
}

.home-welcome-modal__cats-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 1.15rem 0 0.65rem;
}

.home-welcome-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-welcome-categories::-webkit-scrollbar {
    display: none;
}

.home-welcome-modal__footer {
    padding: 0 1.5rem 1.35rem;
    gap: 0.5rem;
}

@media (max-width: 575.98px) {
    .home-search-card {
        padding: 1.35rem 1rem;
    }

    .home-search-card__title {
        font-size: 1.2rem;
    }
}

/* Admin preview */
.site-logo-preview {
    max-height: 140px;
    object-fit: contain;
}

.preview-logo-box {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer social from settings */
.footer-social .social-link {
    transition: transform 0.2s;
}

.footer-social .social-link:hover {
    transform: translateY(-3px);
}

/* ============================================================
   HOME — conversión y confianza
   ============================================================ */
.home-section {
    background: #fff;
}

.home-section--alt {
    background: #f4f6fb;
}

.home-trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--v2-border);
    padding: 1.25rem 0;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.05);
}

.home-trust-item {
    padding: 0.5rem 0.75rem;
}

.home-trust-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--v2-pink);
    margin-bottom: 0.35rem;
}

.home-trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--v2-navy);
    font-weight: 800;
}

.home-trust-item span {
    font-size: 0.78rem;
    color: #6c757d;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(139, 43, 154, 0.08);
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    height: 100%;
    border: 1px solid rgba(139, 43, 154, 0.1);
}

.home-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(139, 43, 154, 0.14);
    border-color: rgba(224, 32, 160, 0.35);
}

.home-category-card__media {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f0f2fa;
}

.home-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-category-card:hover img {
    transform: scale(1.06);
}

.home-category-card__media::after {
    display: none;
}

.home-category-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.96);
    color: var(--v2-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
}

.home-category-card__placeholder {
    height: 100%;
    background: linear-gradient(145deg, var(--v2-pink-soft) 0%, #eef1fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-navy);
    font-size: 2.5rem;
    opacity: 0.85;
}

.home-category-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.95rem 1rem 1.05rem;
    border-top: 1px solid #f0f2f8;
    min-height: 72px;
}

.home-category-card__title {
    flex: 1;
    color: var(--v2-navy);
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.home-category-card__link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-category-card:hover .home-category-card__link {
    background: var(--v2-pink);
    color: #fff;
    transform: translateX(2px);
}

@media (max-width: 575.98px) {
    .home-category-card__media {
        height: 180px;
    }

    .home-category-card__body {
        min-height: 64px;
        padding: 0.8rem 0.85rem 0.9rem;
    }

    .home-category-card__title {
        font-size: 0.85rem;
    }

    .home-category-card__badge {
        font-size: 0.65rem;
        padding: 0.28rem 0.55rem;
    }
}

.home-step-card {
    background: #fff;
    border-radius: var(--v2-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--v2-shadow);
    height: 100%;
    position: relative;
    text-align: center;
}

.home-step-card__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-step-card__icon {
    font-size: 2.25rem;
    color: var(--v2-navy);
    margin-bottom: 0.75rem;
}

.home-step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.65rem;
}

.home-step-card p {
    color: #6c757d;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.55;
}

.home-benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: var(--v2-shadow);
    height: 100%;
}

.home-benefit-card i {
    font-size: 1.5rem;
    color: var(--v2-pink);
    margin-bottom: 0.5rem;
}

.home-benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-navy);
    margin-bottom: 0.35rem;
}

.home-benefit-card p {
    font-size: 0.88rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.45;
}

.home-cta-banner {
    padding: 3rem 0 4rem;
    background: #f4f6fb;
}

/* FAQ home */
.home-section--faq {
    background: #fff;
}

.home-faq-aside {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f4f6fb;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
}

.home-faq-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 43, 154, 0.1);
    flex-shrink: 0;
}

.home-faq-visual__img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.home-faq-aside__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 0.5rem 0.5rem;
}

.home-faq-aside__icon {
    font-size: 1.75rem;
    color: var(--v2-pink);
    margin-bottom: 0.65rem;
}

.home-faq-aside__text {
    margin: 0;
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.55;
    max-width: 240px;
}

.home-faq-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--v2-shadow);
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--v2-border);
    height: 100%;
}

.home-faq-card .legal-faq {
    margin: 0;
}

.home-faq-card .legal-faq .accordion-item {
    background: #fff;
    border: 1px solid #eef0f8;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.home-faq-card .legal-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.home-faq-card .legal-faq .accordion-button {
    background: #fff;
    color: var(--v2-navy);
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.home-faq-card .legal-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.home-faq-card .legal-faq .accordion-button:not(.collapsed) {
    background: #faf8fc;
    color: var(--v2-navy);
}

.home-faq-card .legal-faq .accordion-body {
    padding: 0 1.15rem 1.1rem;
    border-top: 1px solid #f0f2f8;
}

.home-faq-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--v2-border);
}

.home-faq-actions .btn {
    min-width: 220px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
}

.home-cta-banner__inner {
    background: #fff;
    border: 2px solid rgba(139, 43, 154, 0.18);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 36px rgba(139, 43, 154, 0.07);
    color: var(--v2-navy);
}

.home-cta-banner__inner h2 {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--v2-navy);
}

.home-cta-banner__text {
    color: #6c757d;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .home-faq-aside {
        max-width: 420px;
        margin: 0 auto;
    }

    .home-faq-visual__img {
        height: 200px;
    }

    .home-faq-aside__content {
        padding: 1rem 0.25rem 0.25rem;
    }

    .home-faq-actions {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .home-faq-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .site-logo-navbar {
        height: 48px;
        max-width: 180px;
    }

    .navbar-actions {
        width: 100%;
        justify-content: flex-end;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .btn-search-submit span {
        display: none;
    }
}

/* ============================================================
   MODAL CARRITO — diseño premium
   ============================================================ */
.cart-modal-v2 .modal-dialog {
    max-width: 640px;
}

.cart-modal-v2__content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(26, 35, 126, 0.22);
}

.cart-modal-v2__header {
    background: linear-gradient(135deg, var(--v2-navy) 0%, var(--v2-navy-dark) 100%);
    color: #fff;
    border: none;
    padding: 1.35rem 1.5rem;
    align-items: flex-start;
}

.cart-modal-v2__header .btn-close {
    filter: invert(1);
    opacity: 0.85;
}

.cart-modal-v2__eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
}

.cart-modal-v2__header .modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.cart-modal-v2__subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.cart-modal-v2__body {
    background: #f4f6fb;
    padding: 1.25rem 1.35rem 1.35rem;
}

.cart-modal-v2__items {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-height: min(52vh, 420px);
    overflow-y: auto;
    padding-right: 0.15rem;
    margin-bottom: 1rem;
}

.cart-modal-v2__items::-webkit-scrollbar {
    width: 6px;
}

.cart-modal-v2__items::-webkit-scrollbar-thumb {
    background: rgba(139, 43, 154, 0.25);
    border-radius: 999px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 0.85rem;
    align-items: start;
    background: #fff;
    border-radius: 16px;
    padding: 0.85rem;
    border: 1px solid rgba(139, 43, 154, 0.08);
    box-shadow: 0 4px 18px rgba(139, 43, 154, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cart-item-card:hover {
    box-shadow: 0 8px 24px rgba(139, 43, 154, 0.1);
}

.cart-item-card__thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
    background: #f0f2fa;
    border: 1px solid #eef0f6;
}

.cart-item-card__body {
    min-width: 0;
}

.cart-item-card__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.35;
    margin: 0 0 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-card__unit {
    display: block;
    font-size: 0.78rem;
    color: #6c757d;
    margin-bottom: 0.65rem;
}

.cart-item-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #f4f6fb;
    border-radius: 999px;
    border: 1px solid #e3e6ef;
    overflow: hidden;
}

.cart-qty-stepper__btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--v2-navy);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.cart-qty-stepper__btn:hover {
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
}

.cart-qty-stepper__input {
    width: 42px;
    height: 32px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--v2-navy);
    padding: 0;
    -moz-appearance: textfield;
}

.cart-qty-stepper__input::-webkit-outer-spin-button,
.cart-qty-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-card__subtotal {
    font-size: 1rem;
    font-weight: 800;
    color: var(--v2-price);
    white-space: nowrap;
}

.cart-item-card__remove {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #fff5f8;
    color: var(--v2-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.cart-item-card__remove:hover {
    background: var(--v2-pink);
    color: #fff;
    transform: scale(1.05);
}

.cart-modal-v2__total {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(139, 43, 154, 0.1);
    box-shadow: 0 4px 16px rgba(139, 43, 154, 0.06);
}

.cart-modal-v2__total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.cart-modal-v2__total-row span {
    font-size: 0.92rem;
    font-weight: 600;
    color: #555;
}

.cart-modal-v2__total-row strong {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--v2-price);
}

.cart-modal-v2__total-note {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.4;
}

.cart-modal-v2__empty {
    text-align: center;
    padding: 2.5rem 1rem;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed rgba(139, 43, 154, 0.2);
}

.cart-modal-v2__empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--v2-pink-soft);
    color: var(--v2-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.cart-modal-v2__empty p {
    font-weight: 700;
    color: var(--v2-navy);
    margin-bottom: 0.35rem;
}

.cart-modal-v2__empty small {
    color: #6c757d;
}

.cart-modal-v2__customer {
    background: #fff;
    border-radius: 16px;
    padding: 1.15rem;
    border: 1px solid rgba(139, 43, 154, 0.08);
}

.cart-modal-v2__customer-head {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef0f6;
}

.cart-modal-v2__customer-head i {
    font-size: 1.75rem;
    color: var(--v2-pink);
}

.cart-modal-v2__customer-head h6 {
    font-weight: 800;
    color: var(--v2-navy);
}

.cart-modal-v2__customer-head p {
    font-size: 0.85rem;
    color: #6c757d;
}

.cart-modal-v2__form .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
}

.cart-modal-v2__form .form-control {
    border-radius: 10px;
    border-color: #e3e6ef;
}

.cart-modal-v2__form .form-control:focus {
    border-color: var(--v2-pink);
    box-shadow: 0 0 0 3px rgba(224, 32, 160, 0.12);
}

.cart-modal-v2__footer {
    background: #fff;
    border-top: 1px solid #eef0f6;
    padding: 1rem 1.35rem 1.25rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cart-modal-v2__btn {
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem 1.25rem;
    border: none;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.cart-modal-v2__btn--ghost {
    background: #eef0f6;
    color: #555;
}

.cart-modal-v2__btn--ghost:hover {
    background: #e3e6ef;
    color: #333;
}

.cart-modal-v2__btn--outline {
    background: #fff;
    color: var(--v2-navy);
    border: 1.5px solid rgba(139, 43, 154, 0.25);
}

.cart-modal-v2__btn--outline:hover {
    background: var(--v2-pink-soft);
    color: var(--v2-navy);
}

.cart-modal-v2__btn--primary {
    background: linear-gradient(135deg, var(--v2-pink), var(--v2-navy));
    color: #fff;
    margin-left: auto;
}

.cart-modal-v2__btn--primary:hover {
    filter: brightness(1.06);
    color: #fff;
}

.cart-modal-v2__btn--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    margin-left: auto;
}

.cart-modal-v2__btn--whatsapp:hover {
    filter: brightness(1.06);
    color: #fff;
}

@media (max-width: 575.98px) {
    .cart-item-card {
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
    }

    .cart-item-card__thumb {
        width: 72px;
        height: 72px;
    }

    .cart-item-card__remove {
        grid-column: 2;
        justify-self: end;
    }

    .cart-modal-v2__btn--primary,
    .cart-modal-v2__btn--whatsapp {
        width: 100%;
        margin-left: 0;
    }
}

/* ============================================================
   FOOTER PRO 2026
   ============================================================ */
.site-v0002 .footer-main.footer-pro {
    margin-top: 3.5rem;
    padding: 0 0 1.75rem;
    border-top: none;
    background: linear-gradient(165deg, #1a1228 0%, #110e18 45%, #0a0a0f 100%);
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    overflow: hidden;
}

.site-v0002 .footer-pro__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 32, 160, 0.55), rgba(139, 43, 154, 0.55), transparent);
    pointer-events: none;
}

.site-v0002 .footer-pro__glow::after {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(139, 43, 154, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.site-v0002 .footer-pro__container {
    position: relative;
    z-index: 1;
    padding-top: 3.5rem;
    padding-bottom: 0.75rem;
}

.footer-cta-strip {
    background: #f4f6fb;
    padding: 2rem 0 3rem;
    border-top: none;
    margin-bottom: 0.5rem;
}

.footer-cta-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(139, 43, 154, 0.12);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 40px rgba(139, 43, 154, 0.08);
    margin-bottom: 0.75rem;
}

.footer-cta-strip__label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-pink);
    margin-bottom: 0.25rem;
}

.footer-cta-strip__text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--v2-navy);
    line-height: 1.3;
}

.footer-cta-strip__text span:last-child {
    display: block;
    font-size: 0.88rem;
    color: #6c757d;
    margin-top: 0.15rem;
}

.footer-cta-strip__btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.6rem 1.35rem;
    white-space: nowrap;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 2.25rem;
}

.footer-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.footer-trust-chip i {
    color: var(--v2-pink);
    font-size: 0.9rem;
}

.site-v0002 .footer-pro .footer-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.site-v0002 .footer-pro .footer-subtitle::after {
    display: none;
}

.site-v0002 .footer-pro .footer-title {
    color: #fff;
    text-shadow: none;
    font-size: 1.35rem;
}

.footer-brand__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.footer-brand__logo-wrap {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.footer-brand__logo-wrap:hover {
    transform: translateY(-2px);
    border-color: rgba(224, 32, 160, 0.45);
    box-shadow: 0 12px 32px rgba(224, 32, 160, 0.2);
}

.footer-brand__identity {
    min-width: 0;
}

.footer-brand__name {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.footer-brand__name:hover {
    color: var(--v2-pink);
}

.footer-brand__tagline {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.site-logo-footer {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.site-v0002 .footer-pro .footer-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
    max-width: 320px;
}

.footer-extras-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1.75rem 0 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-extras-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 4rem;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.footer-extras-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
}

.footer-extras-col__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.65rem;
}

.site-v0002 .footer-pro .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0;
}

.site-v0002 .footer-pro .social-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.site-v0002 .footer-pro .social-link:hover {
    background: var(--v2-pink);
    border-color: var(--v2-pink);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 32, 160, 0.35);
}

.site-v0002 .footer-pro .social-link--whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.footer-payments__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.footer-payment-badge {
    display: inline-block;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 600;
}

.site-v0002 .footer-pro .footer-list li {
    margin-bottom: 0.65rem;
}

.site-v0002 .footer-pro .footer-link {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    padding-left: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-v0002 .footer-pro .footer-link::before {
    display: none;
}

.site-v0002 .footer-pro .footer-link:hover {
    color: #fff;
    padding-left: 0;
    transform: translateX(4px);
}

.footer-contact-card {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-item:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact-item--static {
    cursor: default;
    transform: none;
}

.footer-contact-item--static:hover {
    transform: none;
    color: rgba(255, 255, 255, 0.62);
}

.footer-contact-item__icon {
    flex-shrink: 0;
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-pink);
    font-size: 1rem;
    background: none;
    border-radius: 0;
}

.footer-contact-item__text {
    font-size: 0.9rem;
    line-height: 1.45;
    word-break: break-word;
}

.site-v0002 .footer-pro .footer-bottom {
    margin-top: 1.25rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.site-v0002 .footer-pro .copyright-text,
.site-v0002 .footer-pro .powered-by {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
}

.site-v0002 .footer-pro .powered-by__link {
    color: rgba(224, 32, 160, 0.85);
    transition: color 0.2s ease;
}

.site-v0002 .footer-pro .powered-by__link:hover {
    color: var(--v2-pink);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .footer-trust-row {
        justify-content: center;
    }

    .site-v0002 .footer-pro .footer-description {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .footer-cta-strip__inner {
        text-align: center;
        justify-content: center;
    }

    .footer-cta-strip__btn {
        width: 100%;
    }

    .footer-trust-chip {
        font-size: 0.72rem;
    }

    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand__head {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand__identity {
        text-align: center;
    }

    .site-v0002 .footer-pro .footer-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-extras-grid {
        gap: 1.5rem 2.5rem;
    }

    .footer-extras-col {
        min-width: 140px;
        flex: 1 1 140px;
        max-width: 220px;
    }
}

/* ============================================================
   PÁGINA NOSOTROS
   ============================================================ */
.about-page {
    background: #f4f6fb;
}

.about-hero-pro {
    position: relative;
    padding: 3.25rem 0 3rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--v2-navy-dark) 0%, var(--v2-navy) 55%, #5a1570 100%);
}

.about-hero-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--about-hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(0.35) saturate(0.6);
}

.about-hero-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 10, 80, 0.15) 0%, rgba(106, 27, 122, 0.35) 100%);
    pointer-events: none;
}

.about-hero-pro__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.about-hero-pro__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.65rem;
}

.about-hero-pro__title {
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.about-hero-pro__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.about-intro__lead {
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-mv-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.2rem;
    border: 1px solid var(--v2-border);
    box-shadow: 0 4px 18px rgba(139, 43, 154, 0.06);
    height: 100%;
    border-left: 3px solid var(--v2-navy);
}

.about-mv-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.about-mv-card h3 i {
    color: var(--v2-pink);
    font-size: 1.05rem;
}

.about-mv-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.about-brand-panel {
    position: relative;
    min-height: 340px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: var(--v2-navy-dark);
    box-shadow: 0 20px 48px rgba(106, 27, 122, 0.22);
}

.about-brand-panel__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-brand-panel__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(106, 27, 122, 0.72) 0%, rgba(139, 43, 154, 0.58) 50%, rgba(45, 10, 80, 0.75) 100%);
    pointer-events: none;
}

.about-brand-panel__icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.about-brand-panel__icons span {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: #fff;
    backdrop-filter: blur(6px);
}

.about-brand-panel__text {
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 280px;
}

.about-stats-band {
    padding: 2.5rem 0 2rem;
    margin-top: 0;
}

.about-why-aside {
    height: 100%;
}

.about-why-visual {
    position: relative;
    margin-top: 1.35rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(106, 27, 122, 0.12);
    border: 1px solid var(--v2-border);
}

.about-why-visual__img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
}

.about-why-visual__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--v2-navy);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-why-visual__badge i {
    color: var(--v2-pink);
}

.about-stats-band__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
}

.about-stats-band__item {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: 12px;
    background: #f8f9fd;
}

.about-stats-band__item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--v2-navy);
    line-height: 1.2;
}

.about-stats-band__item span {
    display: block;
    font-size: 0.78rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 0.2rem;
}

.about-trust-section {
    background: #f4f6fb;
}

.about-trust-panel {
    background: linear-gradient(135deg, var(--v2-navy-dark) 0%, var(--v2-navy) 100%);
    border-radius: 22px;
    padding: 2.25rem 1.75rem;
    color: #fff;
    box-shadow: 0 18px 44px rgba(106, 27, 122, 0.2);
}

.about-trust-panel__title {
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
}

.about-trust-panel__lead {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.6;
    font-size: 0.98rem;
}

.about-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.about-trust-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1rem 1.1rem;
}

.about-trust-list li > i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-trust-list strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
    color: #fff;
}

.about-trust-list span {
    display: block;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

@media (min-width: 768px) {
    .about-hero-pro {
        padding: 4rem 0 3.5rem;
    }

    .about-stats-band__grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 1.75rem;
    }

    .about-trust-panel {
        padding: 2.75rem 2.5rem;
    }

    .about-trust-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .about-why-aside {
        position: sticky;
        top: 96px;
    }

    .about-why-visual__img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .about-brand-panel {
        min-height: 260px;
    }

    .about-brand-panel__icons span {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }
}

/* ============================================================
   PÁGINA CONTACTO
   ============================================================ */
.contact-page {
    background: #f4f6fb;
}

.contact-hero-pro {
    position: relative;
    padding: 3.25rem 0 3rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--v2-navy-dark) 0%, var(--v2-navy) 55%, #5a1570 100%);
}

.contact-hero-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--contact-hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(0.35) saturate(0.6);
}

.contact-hero-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 10, 80, 0.15) 0%, rgba(106, 27, 122, 0.35) 100%);
    pointer-events: none;
}

.contact-hero-pro__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.contact-hero-pro__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.65rem;
}

.contact-hero-pro__title {
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.contact-hero-pro__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.contact-section {
    background: #fff;
}

.contact-section--map {
    background: #f4f6fb;
    padding-top: 0 !important;
}

.contact-form-v2 {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
    overflow: hidden;
}

.contact-form-v2__head {
    padding: 1.75rem 1.75rem 0;
}

.contact-form-v2__head h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.35rem;
}

.contact-form-v2__head p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-v2__body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.contact-form-v2 .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--v2-navy);
}

.contact-input {
    border-radius: 10px;
    border: 1.5px solid #e8ecf4;
    padding: 0.65rem 0.85rem;
}

.contact-input:focus {
    border-color: var(--v2-navy);
    box-shadow: 0 0 0 3px rgba(139, 43, 154, 0.12);
}

.contact-form-v2__submit {
    padding: 0.65rem 1.5rem;
    font-weight: 700;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.contact-wa-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-wa-card:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
}

.contact-wa-card > i {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-wa-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.contact-wa-card span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.92;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--v2-border);
    box-shadow: 0 4px 16px rgba(139, 43, 154, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-item:hover {
    border-color: rgba(139, 43, 154, 0.25);
    box-shadow: 0 8px 24px rgba(139, 43, 154, 0.1);
    color: inherit;
}

.contact-info-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--v2-pink-soft);
    color: var(--v2-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item__body strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.15rem;
}

.contact-info-item__body > span {
    display: block;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.4;
}

.contact-info-item__body small {
    display: block;
    font-size: 0.78rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.contact-social-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--v2-border);
}

.contact-social-v2 > span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v2-navy);
}

.contact-social-v2__links {
    display: flex;
    gap: 0.5rem;
}

.contact-social-v2__links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v2-pink-soft);
    color: var(--v2-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-social-v2__links a:hover {
    background: var(--v2-navy);
    color: #fff;
}

.contact-map-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
    overflow: hidden;
}

.contact-map-card__head {
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid #eef0f8;
}

.contact-map-card__head h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.35rem;
}

.contact-map-card__head p {
    color: #6c757d;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.contact-map-card__frame {
    line-height: 0;
}

.contact-map-card__frame iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    height: 450px;
}

@media (min-width: 768px) {
    .contact-hero-pro {
        padding: 4rem 0 3.5rem;
    }

    .contact-map-card__frame iframe {
        min-height: 450px;
    }
}

@media (max-width: 767.98px) {
    .contact-form-v2__head,
    .contact-form-v2__body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .contact-map-card__head {
        padding: 1.25rem;
    }
}

/* ============================================================
   PÁGINA 404
   ============================================================ */
.error-404-page {
    background: #f4f6fb;
}

.error-404-hero {
    padding: 3.5rem 0 2.5rem;
    background: linear-gradient(135deg, var(--v2-navy-dark) 0%, var(--v2-navy) 55%, #5a1570 100%);
    color: #fff;
}

.error-404-hero__code {
    display: block;
    font-size: clamp(4rem, 12vw, 6rem);
    font-weight: 800;
    line-height: 1;
    opacity: 0.35;
    margin-bottom: 0.25rem;
}

.error-404-hero__title {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.error-404-hero__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.error-404-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
}

.error-404-card__lead {
    color: #6c757d;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* ============================================================
   Páginas legales
   ============================================================ */
.legal-hero {
    background: linear-gradient(135deg, var(--v2-navy), var(--v2-navy-dark));
    color: #fff;
    padding: 2rem 0 2.25rem;
}

.legal-hero__title {
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0;
}

.legal-hero__subtitle {
    opacity: 0.9;
    margin-top: 0.5rem;
}

.legal-breadcrumb .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

.legal-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.legal-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.legal-page {
    background: #f4f6fb;
}

.legal-nav-panel {
    background: #fff;
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
    padding: 1.15rem;
    position: sticky;
    top: 96px;
}

.legal-nav-panel__title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--v2-navy);
    margin-bottom: 0.75rem;
}

.legal-nav__link {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.legal-nav__link:hover {
    background: var(--v2-pink-soft);
    color: var(--v2-pink);
}

.legal-nav__link.is-active {
    background: linear-gradient(135deg, var(--v2-pink), var(--v2-navy));
    color: #fff;
    font-weight: 600;
}

.legal-content-card {
    background: #fff;
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
    padding: 1.75rem 1.75rem 1.25rem;
}

.legal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef0f8;
}

.legal-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--v2-navy);
    margin-bottom: 0.65rem;
}

.legal-section p {
    color: #555;
    line-height: 1.65;
    margin: 0;
    font-size: 0.95rem;
}

.legal-content-card__footer {
    margin-top: 1.75rem;
    padding-top: 1rem;
    border-top: 1px solid #eef0f8;
}

.legal-faq .accordion-item {
    border: 1px solid #eef0f8;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 0.65rem;
}

.legal-faq .accordion-button {
    font-weight: 600;
    color: var(--v2-navy);
    font-size: 0.95rem;
    box-shadow: none;
}

.legal-faq .accordion-button:not(.collapsed) {
    background: #faf8fc;
    color: var(--v2-navy);
    box-shadow: none;
}

.legal-faq .accordion-body {
    color: #555;
    line-height: 1.6;
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .legal-nav-panel {
        position: static;
    }
}

/* ============================================================
   PÁGINA ENVÍOS NACIONALES
   ============================================================ */
.envios-page {
    background: #f4f6fb;
}

.envios-hero-pro {
    position: relative;
    padding: 3.25rem 0 3rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--v2-navy-dark) 0%, var(--v2-navy) 55%, #5a1570 100%);
}

.envios-hero-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--envios-hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(0.35) saturate(0.6);
}

.envios-hero-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 10, 80, 0.15) 0%, rgba(106, 27, 122, 0.35) 100%);
    pointer-events: none;
}

.envios-hero-pro__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.envios-hero-pro__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.65rem;
}

.envios-hero-pro__title {
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.envios-hero-pro__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.envios-trust-section {
    background: #fff;
}

.envios-trust-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--v2-border);
    background: #fafbfe;
    text-align: center;
}

.envios-trust-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 8px 20px rgba(106, 27, 122, 0.22);
}

.envios-trust-card__icon i {
    color: #fff !important;
    line-height: 1;
}

.envios-trust-card__icon--truck {
    background: linear-gradient(135deg, var(--v2-navy-dark) 0%, var(--v2-navy) 100%);
}

.envios-trust-card__icon--photos {
    background: linear-gradient(135deg, var(--v2-navy) 0%, var(--v2-pink) 100%);
}

.envios-trust-card__icon--whatsapp {
    background: linear-gradient(135deg, #1ebe57 0%, #128c3e 100%);
    box-shadow: 0 8px 20px rgba(18, 140, 62, 0.28);
}

.envios-trust-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--v2-navy);
    margin-bottom: 0.5rem;
}

.envios-trust-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.55;
}

.envios-gallery__lead {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.envios-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.envios-gallery__item {
    display: flex;
    flex-direction: column;
}

.envios-gallery__trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #eee;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.envios-gallery__trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.envios-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 10, 80, 0.45);
    color: #fff;
    font-size: 1.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.envios-gallery__trigger:hover img {
    transform: scale(1.05);
}

.envios-gallery__trigger:hover .envios-gallery__overlay {
    opacity: 1;
}

.envios-gallery__caption {
    padding: 0.75rem 0.25rem 0;
}

.envios-gallery__caption strong {
    display: block;
    font-size: 0.92rem;
    color: var(--v2-navy);
}

.envios-gallery__caption p {
    font-size: 0.82rem;
    color: #777;
    margin: 0.2rem 0 0;
    line-height: 1.45;
}

.envios-empty__icon {
    font-size: 3rem;
    color: #ccc;
    display: block;
    margin-bottom: 1rem;
}

.envios-cta__btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.envios-lightbox .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.envios-lightbox__img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    background: #111;
}

@media (max-width: 575.98px) {
    .envios-hero-pro {
        padding: 2.5rem 0 2.25rem;
    }

    .envios-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}
