:root {

    --primary: #073763;
    --primary-hover: #071a34;
    --primary-light: #EEF2FF;
    --secondary: #111827;
    --accent: #F59E0B;
    --danger: #EF4444;
    --success: #10B981;
    --bg-body: #F9FAFB;
    --bg-surface: #FFFFFF;
    --border: #E5E7EB;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --font: 'Inter', sans-serif;
    --bg-card: #ffffff;
    --bg-image: #f8fafc;
    --text-main: #1a1a1a;
    --text-muted: #64748b;
    --border-color: #f1f5f9;
    --border-hover: #c7d2fe;
    --accent-yellow: #fbbf24;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 10px 15px -5px rgba(79, 70, 229, 0.1), 0 10px 10px -5px rgba(79, 70, 229, 0.04);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --cart-primary: #2563eb;
    --cart-bg: #ffffff;
    --cart-overlay: #161718c7;
    --cart-text: #1e293b;
    --cart-muted: #64748b;
    --cart-border: #f1f5f9;
    --cart-width: 450px;
}

.custom-catalog-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.custom-catalog-header h1 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    margin-bottom: 0 !important;
}

.custom-catalog-header h1 span { font-weight: 700; }

.custom-catalog-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}


/* --- Grid Responsivo --- */
.custom-product-grid {
    color: var(--text-main);
    display: grid;
    gap: 2rem;
    line-height: 1.5;
    padding: 2rem;
    grid-template-columns: 1fr;
}


/* --- Card del Producto --- */
.custom-product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.custom-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 0.75rem;
    position: relative;
    transition: var(--transition);
}
/*noinspection CssUnresolvedCustomProperty*/
.custom-product-card:hover {
    border-color: var(--color_primary);
    box-shadow: var(--shadow-xl);
}
/*noinspection CssUnresolvedCustomProperty*/
.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    background-color: var(--color_primary);
    color: white;
    font-weight: 400;
    padding: 0.1rem 0.3rem;
    border-radius: 0.25rem;
}

.image-container {
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.5rem;
    /*background-color: var(--bg-image);*/
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.custom-product-card:hover .image-container img {
    transform: scale(1.05);
}

.custom-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.stars {
    display: flex;
    color: var(--accent-yellow);
}

.stars svg {
    width: 0.75rem;
    height: 0.75rem;
}

.review-count {
    font-size: 0.625rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 12px;
    margin-bottom: -1px;
}

.custom-product-title {
    font-size: 0.70rem !important;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
    margin: 0;
    /* Line Clamping: limita a 2 líneas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.25em;
}

/*noinspection CssUnresolvedCustomProperty*/
.custom-product-card:hover .custom-product-title {
    color: var(--color_primary);
}

.price-container {
    padding-top: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.current-price {
    font-size: 1rem;
    height: 28.8px;
    font-weight: 700;
    color: var(--text-main);
}

.old-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}


.footer-copy {
    font-size: 0.625rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-links span {
    font-size: 0.625rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 1.5rem;
}

.soft-gray-bg{
    background-color: var(--bg-image);
}
.soft-gray-bd-b{
    border-bottom: 1px solid #ededed;
}


.split-card:hover { box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05) !important; border-color: #e2e8f0 !important; }
.mini-item:hover .mini-img { transform: translateY(-10px) scale(1.02) !important; box-shadow: 0 25px 30px -10px rgba(0,0,0,0.1) !important; }
.mini-item:hover .mini-label { color: #1a1a1a !important; }

.provider-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
}


/* Micro-interacciones */
.custom-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.provider-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.provider-card-title{
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
.provider-card-subtitle{
    font-weight: 400;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-top: 0.5rem;
    line-height: 12px;
}

.provider-card:hover {
    transform: translateY(-8px);
}


.logo-container {
    transition: all 0.5s ease;
}

.provider-card:hover .logo-container {
    background-color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.logo-img {
    transition: transform 0.6s ease;
}

.provider-card:hover .logo-img {
    transform: scale(1.1);
}


.modal-close-x{
    color: white;
    opacity: 1 !important;
    z-index: 1;
    background-color: #dc0000;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    padding: 0 !important;
    border-radius: 50px;
    margin-right: 6px !important;
    margin-top: 5px !important;
    font-size: 21px !important;
    font-weight: 300 !important;
    position: absolute;
    right: 0;
}


.provider-promo {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 2.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}


.provider-promo .info-pane {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.provider-promo .info-pane .logo{
    width: 100px;
    height: auto;
    margin-bottom: 2rem;
    object-fit: contain;
}

/*noinspection ALL*/
.provider-promo .info-pane header .badge{
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: var(--color_primary) !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
}
.provider-promo .info-pane header .title{
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.provider-promo .info-pane .description{
    font-size: 15px;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 100%;
}
.provider-promo .info-pane .cta-link{
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

/*noinspection ALL*/
.provider-promo .info-pane .cta-link:hover {
    color: var(--color_primary) !important;
}

.provider-promo .showcase-pane{
    padding: 2rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.provider-promo .showcase-pane .mini-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 850px;
}

.provider-promo .showcase-pane .mini-grid .product_loading{
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 1.25rem;
}

.provider-promo .showcase-pane .mini-grid .mini-item{
    text-decoration: none;
    color: inherit;
    display: block;
}

.provider-promo .showcase-pane .mini-grid .mini-item .mini-img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1.25rem;
    background: #ffffff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.provider-promo .showcase-pane .mini-grid .mini-item .mini-label{
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #64748b;
    transition: color 0.3s ease;
}
.provider-promo .showcase-pane .mini-grid .mini-item .mini-label > span{
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}


.swiper-wrapper .cat-name{
    font-size: 12px !important;
    margin-bottom: 0 !important;
    line-height: 18px;
    text-align: center;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}


.address {
    width: 190px;
}


.svc-booking-wrapper {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.svc-booking-title {
    color: #1e293b;
    margin-bottom: 24px;
    font-size: clamp(1.25rem, 5vw, 1.5rem); /* Tamaño de fuente fluido */
    font-weight: 700;
    text-align: center;
}

.svc-booking-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 24px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.svc-booking-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.svc-booking-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-booking-icon-map-marker {
    background-color: #10a4b9;
    box-shadow: 0 8px 16px -4px rgba(16, 164, 185, 0.4);
}

.svc-booking-icon-clock,.svc-booking-icon-calendar {
    background-color: #10b981;
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.4);
}

.svc-booking-text {
    display: flex;
    flex-direction: column;
}

.svc-booking-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px 0;
}

/*noinspection CssInvalidFunction*/
.svc-booking-value {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.svc-booking-separator {
    height: 48px;
    width: 1px;
    background-color: #cbd5e1;
    margin: 0 32px;
}


@media (min-width: 140px) {
    .custom-product-grid {
        gap: 1rem;
    }
    .discount-badge {
        font-size: 0.5rem !important;
    }
    .custom-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-card-title{
        font-size: 0.8rem;
    }
    .provider-card-subtitle{
        font-size: 0.5rem;
    }
    .container {
        max-width: 745px
    }
}

.categories:hover {
    opacity: 1 !important;
}
.categories img {
    border: 1px solid white;
}

.btn_fav_elements{
    font-size: 13px;
    white-space: nowrap;
    background-color: #EFEFEF;
    color: black;
    padding: 1px 10px;
    border-radius: 20px;
}
.btn_fav_elements:hover{
    background-color: #dcdcdc;
    color: black;
}
.btn_fav_elements > span{
    font-weight: 600;
}
@media (min-width: 640px) {
    .custom-product-grid { gap: 1.2rem; }
    .custom-product-grid { grid-template-columns: repeat(3, 1fr); }
    /*.mini-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }*/
}
@media (min-width: 768px) {
    .custom-catalog-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .custom-catalog-header h1 { font-size: 1.8rem; }
    .custom-product-title { font-size: 0.80rem !important; }
    .provider-grid {
        gap: 2rem;
        grid-template-columns: repeat(3, 1fr);
    }
    .provider-card-title{
        font-size: 1rem;
    }
    .provider-card-subtitle{
        font-size: 0.6rem;
    }
    .container {
        max-width: 895px
    }
}
@media (min-width: 992px) {
    .split-card { grid-template-columns: 1fr 1.5fr !important; }
    .info-pane {
        clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
        padding: 5rem !important;
    }
    .showcase-pane { margin-left: -9% !important; padding: 3rem !important; }
    .container {
        max-width: 1035px;
    }
    .h-lg-265{
        height: 265px;
    }
    .h-lg-255{
        height: 255px;
    }
    .m-h-lg-255{
        min-height: 255px;
    }
}
@media (min-width: 1024px) {
    .custom-product-grid { gap: 1.4rem; }
    .discount-badge { font-size: 0.6rem !important; }
    .custom-product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
    .provider-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    .container {
        max-width: 1185px;
    }

}
@media (min-width: 1280px) {
    .custom-product-grid { gap: 1.6rem; }
    .custom-product-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1380px) {
    .container {
        max-width: 1355px
    }
}


@media (max-width: 991px) {
    .provider-promo .info-pane {
        align-items: center !important;
    }
    .provider-promo .info-pane header .title {
        justify-content: center !important;
    }
    .provider-promo .info-pane .description {
        font-size: 14px !important;
        line-height: 22px !important;
        margin-bottom: 1.5rem !important;
        text-align: justify !important;
    }
    .provider-promo .showcase-pane .mini-grid .mini-item .mini-label {
        font-size: 0.7rem !important;
        margin-top: 10px !important;
        line-height: 15px;
    }
    .provider-promo .showcase-pane .mini-grid .mini-item .mini-img {
        border-radius: .8rem !important;
    }
    .provider-promo .showcase-pane .mini-grid {
        gap: .9rem !important;
    }

    .swiper-wrapper .cat-name{
        font-size: 10px !important;
        line-height: 15px;
    }

    .btn-filter{
        font-size: 11px !important;
        height: fit-content;
    }

    #filter_bar .dis-md-none svg {
        width: 30px !important;
        height: 30px !important;
    }

    .swiper-button-next, .swiper-button-prev{
        display: none !important;
    }

    .product-quantity .input-group.cantidad {
        height: 35px !important;
    }
    .product-quantity .input-group.cantidad input {
        font-size: 18px !important;
        height: 31px !important;
    }
    .product-quantity .input-group.cantidad .minus-btn, .input-group.cantidad .plus-btn{
        padding: 0 10px !important;
        height: 31px !important;
    }
    .modal_footer_cant .btn_add_to_orden {
        padding: 7px 15px !important;
        font-size: 12px !important;
        height: fit-content !important;
    }

    .modal_footer_cant .btn_contact_in_modal {
        padding: 7.5px 10.5px !important;
        font-size: 12px !important;
        height: fit-content !important;
    }

}
@media (max-width: 640px) {
    .svc-booking-container {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 20px;
    }

    .svc-booking-separator {
        height: 1px;
        width: 100%;
        margin: 0;
        background-color: #e2e8f0;
    }

    .svc-booking-section {
        justify-content: flex-start;
    }

    .svc-booking-section {
        gap: 12px;
    }

    .svc-booking-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .svc-booking-value {
        font-size: 15px;
    }

    .current-price {
        height: 23.39px;
        font-size: 13px;
    }
    .old-price {
        font-size: 11px;
    }
}



.store-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted) !important;
}

.stat-item svg { width: 18px; height: 18px; color: var(--text-muted); }

.stat-item strong, .stat-item .stat-value {
    color: var(--secondary);
    font-weight: 700;
}

.stat-divider {
    width: 1.5px;
    height: 16px;
    background: var(--border);
}

.cart-footer {
    padding: 20px;
    background: var(--bg-body);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.summary-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #cbd5e1;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.cart-sidebar .btn-primary {
    background: var(--primary);
    color: white;
    border-radius: 8px !important;
}

.cart-sidebar .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #002c784d;
}
button:disabled, div.blocked {
    color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
.cart-sidebar .btn-primary:disabled {
    color: white !important;
    background: #9ca3af !important;
    border-color: #9ca3af !important;
}

/* Overlay oscuro para carrito móvil */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 990;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-overlay.show { display: block; opacity: 1; }

.business-right-col {
    position: sticky;
    top: 80px;
}


/* Sidebar del carrito */
.cart-sidebar {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    /*max-height: calc(100vh - 60px);*/
    flex-shrink: 0;
    margin-bottom: 30px;
}

.btn-close-cart-mobile { display: none; } /* Oculto en desktop */

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 17px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    font-weight: 600;
}

.cart-count-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 700;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 400px);
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.5; margin-bottom: 15px; }

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-item .btn-remove {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}
.cart-item .btn-remove:hover {
    background: #fee2e2;
    color: var(--danger);
}
.cart-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid var(--border);
}

.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.9rem; font-weight: 600; color: var(--secondary); line-height: 1.3;}
.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 20px;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-body);
    border-radius: 6px;
    padding: 2px;
    width: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cart-qty-controls .qty-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    color: var(--text-main);
    border-radius: 4px;
    transition: background 0.2s;
}

.cart-qty-controls .qty-btn:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.cart-qty-controls .qty-value {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    /*background: var(--primary);*/
    background: linear-gradient(135deg, #4b5563, #1f2937);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0 10px 25px #00040e80;*/
    border: none;
    cursor: pointer;
    z-index: 900;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: latido-oscuro 2s infinite;
}

.cart-fab:hover { transform: scale(1.08) translateY(-4px); box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5); }
.cart-fab svg { width: 28px; height: 28px; }

@keyframes latido-oscuro {
    0% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(31, 41, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0); }
}

.fab-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    /* background: var(--danger);
     color: white;*/
    background: #ffffff;
    color: #1f2937;
    border: 2px solid #2a3644;
    font-size: 12px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 2px solid var(--bg-body);*/
}




.loader-spinner {
    display: inline-block;
    vertical-align: middle;
    animation: loader-rotate 0.8s linear infinite;
}

.loader-spinner-track {
    stroke: rgba(0, 0, 0, 0.12);
}

.loader-spinner-path {
    stroke: currentColor;
    stroke-dasharray: 90;
    stroke-dashoffset: 60;
}

@keyframes loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

.cart-item-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.tooltip-container {
    position: relative;
    display: inline-flex;
    cursor: help;
    flex-shrink: 0;
    margin-top: -2px;
}
.tooltip-container svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
    margin-bottom: -1px;
}
.tooltip-container:hover svg {
    transform: scale(1.1);
}

.floating-tooltip {
    position: absolute;
    z-index: 99999;
    background-color: var(--secondary);
    color: #fff;
    text-align: left;
    padding: 12px;
    border-radius: 8px;
    width: max-content;
    max-width: 250px;
    font-size: 0.8rem;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
}

/* Tooltip abriéndose hacia ARRIBA (por defecto) */
.floating-tooltip {
    transform: translateY(5px);
}
.floating-tooltip::after {
    content: "";
    position: absolute;
    top: 100%; /* Flecha apuntando hacia abajo */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--secondary) transparent transparent transparent;
}

/* Tooltip abriéndose hacia ABAJO (modificador dinámico) */
.floating-tooltip.bottom-placed {
    transform: translateY(-5px);
}
.floating-tooltip.bottom-placed::after {
    top: auto;
    bottom: 100%; /* Flecha apuntando hacia arriba */
    border-color: transparent transparent var(--secondary) transparent;
}

/* Estado visible para ambas posiciones */
.floating-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-option {
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tooltip-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.tooltip-option strong {
    color: var(--primary-light);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}


/*Modal de checkout del provider*/

#checkoutModal .custom-modal-content {
    border: none !important;
    border-radius: 16px !important;
    flex-direction: row;
    overflow: hidden;
    background: transparent;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

#checkoutModal .custom-modal-content h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px;}
#checkoutModal .custom-modal-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 25px; margin-top: 0;}

#checkoutModal .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0;
}
#checkoutModal .section-header span { font-weight: 600; font-size: 0.95rem; }

#checkoutModal .close-btn {
    position: absolute;
    top: 15px; right: 15px;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1050;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
    padding: 0;
    line-height: 1;
}
#checkoutModal .close-btn:hover { background: #e2e8f0; color: #0f172a; text-decoration: none;}

#checkoutModal .shipping-box { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; margin-bottom: 25px; background: #fff;}
#checkoutModal .shipping-map { position: relative; height: 120px; background-color: #e2e8f0; width: 100%; border-bottom: 1px solid #e5e7eb;}
#checkoutModal .shipping-map img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
#checkoutModal .map-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); color: #dc2626; width: 36px; height: 36px; filter: drop-shadow(0 3px 5px rgba(0,0,0,0.4));}
#checkoutModal .shipping-details {
    overflow: hidden;
    margin-bottom: 15px;
    /*padding: 12px 20px;*/
}
#checkoutModal .shipping-details p {
    margin: 0 0 4px 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 20px;
}
#checkoutModal .shipping-details strong {
    color: #111827;
    font-size: 0.9rem;
    display: block;
    line-height: 25px;
}
#checkoutModal .quick-pay-row { display: flex; gap: 10px; margin-bottom: 20px; }
#checkoutModal .btn-wallet { flex: 1; padding: 12px 10px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; transition: 0.2s; color: #111827; min-height: 43px; }
#checkoutModal .gpay-card-info-container {
    vertical-align: middle !important;
}
#checkoutModal .btn-wallet:hover { background: #f8fafc; border-color: #cbd5e1; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,0.02);}

#checkoutModal .divider { display: flex; align-items: center; text-align: center; margin-bottom: 25px; color: #94a3b8; font-size: 0.8rem; }
#checkoutModal .divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #e5e7eb; }
#checkoutModal .divider span { padding: 0 10px; }
#checkoutModal .gpay-card-info-container-fill { height: 43px; }

#checkoutModal .card-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
#checkoutModal .card-item { display: flex; align-items: center; padding: 14px 15px; border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; transition: 0.2s; background: #fff; margin-bottom: 0;}
#checkoutModal .card-item:hover { border-color: #cbd5e1; }
#checkoutModal .card-item:has(input:checked) { border-color: #2563eb; background: #eff6ff; }
#checkoutModal .card-item input { margin-right: 15px; accent-color: #2563eb; width: 16px; height: 16px; cursor: pointer;}

#checkoutModal .card-info-wrap { display: flex; align-items: center; flex: 1; }
#checkoutModal .card-brand-icon { width: 36px; height: 24px; padding: 2px 4px; border: 1px solid #e2e8f0; border-radius: 4px; background: #f8fafc; object-fit: contain; margin-right: 12px; }
#checkoutModal .card-details { display: flex; flex-direction: column; }
#checkoutModal .card-details .card-name { font-size: 0.85rem; font-weight: 600; color: #111827; line-height: 1.2;}
#checkoutModal .card-details .card-exp { font-size: 0.75rem; color: #6b7280; margin-top: 4px; line-height: 1;}
#checkoutModal .btn-add-card {
    width: 100%;
    padding: 17px 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    margin: 20px 0 25px;
}
#checkoutModal .btn-add-card:hover { border-color: #2563eb; color: #2563eb; background: #eff6ff; outline: none;}

#checkoutModal .custom-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#checkoutModal .form-full { grid-column: 1 / -1; }
#checkoutModal .custom-form-grid input[type="text"] { width: 100%; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: 0.2s; background: #fff;}
#checkoutModal .custom-form-grid input[type="text"]:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

#checkoutModal .form-actions { display: flex; gap: 10px; margin-top: 15px; }
#checkoutModal .btn-secondary-custom {
    flex: 1;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: #111827;
    transition: 0.2s;
    font-size: 1rem;
}
#checkoutModal .btn-secondary-custom:hover { background: #f1f5f9; }
#checkoutModal .btn-primary-small {
    flex: 1;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #0f172a;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
    font-size: 1rem;
}
#checkoutModal .btn-primary-small:hover { background: #334155; }

#checkoutModal .v1-left { flex: 1.1; padding: 40px; border-right: 1px solid #e5e7eb; background: #fff;}
#checkoutModal .v1-right { flex: 0.9; padding: 40px; background: #f8fafc;}

#checkoutModal .products { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
#checkoutModal .prod-item { display: flex; gap: 15px; align-items: center; }

#checkoutModal .prod-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    background: #fff;
}
#checkoutModal .prod-info { flex: 1; }

#checkoutModal .prod-info h4 {
    margin: 0 0 6px 0;
    font-size: 14px !important;
    color: #111827;
    font-weight: 500;
}
#checkoutModal .prod-info p { margin: 0; font-size: 0.8rem; color: #6b7280; }
#checkoutModal .prod-price { font-weight: 600; font-size: 0.95rem; color: #111827; }

#checkoutModal .totals { border-top: 1px solid #e5e7eb; padding-top: 20px; margin-bottom: 25px;}

#checkoutModal .tot-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 21px;
}
#checkoutModal .tot-final { margin-top: 15px; padding-top: 15px; border-top: 1px solid #e5e7eb; font-size: 1.2rem; font-weight: 700; color: #111827; display: flex; justify-content: space-between;}

#checkoutModal .btn-pay { width: 100%; padding: 16px; background: #0f172a; color: #fff; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2); }
#checkoutModal .btn-pay:hover:not(:disabled) { background: #334155; transform: translateY(-2px); box-shadow: 0 6px 10px rgba(15, 23, 42, 0.3); }
#checkoutModal .btn-pay:disabled, #checkoutModal div.blocked { opacity: 0.7; cursor: not-allowed; }

#checkoutModal div.blocked {
    pointer-events: none;
}

#checkoutModal .secure-text { text-align: center; font-size: 0.75rem; color: #94a3b8; margin-top: 15px; margin-bottom: 0; }

#checkoutModal .order-checkout-success {
    background-color: white;
    width: 100%;
    text-align: center !important;
    padding: 70px 48px;
}

#checkoutModal .order-checkout-success .success-checkmark {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}
#checkoutModal .order-checkout-success .checkout-success-title {
    font-weight: 800 !important;
    margin-bottom: .25rem !important;
    font-size: 2rem;
    color: #000000de;
}

#checkoutModal .order-checkout-success .info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    border: 1px solid #e2e8f0;
}
#checkoutModal .order-checkout-success .item-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.95rem;
}


.app-cart-fade-enter-active, .app-cart-fade-leave-active { transition: opacity 0.4s ease; }
.app-cart-fade-enter, .app-cart-fade-leave-to { opacity: 0; }

.app-cart-slide-enter-active, .app-cart-slide-leave-active { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.app-cart-slide-enter, .app-cart-slide-leave-to { transform: translateX(100%); }

/* --- Componente Estructura --- */
.app-cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--cart-overlay);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
}

.app-cart-sidebar {
    width: 100%;
    max-width: var(--cart-width);
    background: var(--cart-bg);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.app-cart-header {
    padding: 16px 21px;
    border-bottom: 1px solid var(--cart-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-cart-body { flex: 1; overflow-y: auto; padding: 24px; }

.app-cart-sidebar .header-info h2 { margin: 0; font-size: 1.2rem; color: var(--cart-text); }

.app-cart-sidebar .badge-items-cant {
    font-size: 0.8rem;
    color: var(--cart-muted);
    margin-left: 3px;
}

.app-cart-sidebar .close-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.app-cart-sidebar .close-btn:hover { background: #e2e8f0; color: #0f172a; text-decoration: none;}

.app-cart-sidebar .vendor-group { margin-bottom: 30px; border-bottom: 1px solid var(--cart-border); padding-bottom: 20px; }
.app-cart-sidebar .vendor-link { font-weight: 700; color: var(--cart-text); text-decoration: none; margin-bottom: 15px; display: block; font-size: 1.1rem; }
.app-cart-sidebar .vendor-link:hover .arrow { transform: translateX(5px); color: var(--cart-primary); }
.app-cart-sidebar .arrow { transition: transform 0.2s; display: inline-block; }

.app-cart-sidebar .product-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.app-cart-sidebar .prod-img { width: 50px; height: 50px; background: #f8fafc; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 1px solid #f1f5f9; }
.app-cart-sidebar .prod-details { flex: 1; }
.app-cart-sidebar .prod-details .name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--cart-text); }
.app-cart-sidebar .prod-details .price { font-size: 0.8rem; color: var(--cart-muted); }

.app-cart-sidebar .qty-control { display: flex; align-items: center; background: #f1f5f9; border-radius: 6px; border: 1px solid #e2e8f0; }
.app-cart-sidebar .qty-control button { border: none; background: none; padding: 5px 12px; cursor: pointer; font-weight: bold; color: var(--cart-text); }
.app-cart-sidebar .qty-control button:hover { background: #e2e8f0; }
.app-cart-sidebar .qty-control .val { min-width: 24px; text-align: center; font-size: 0.9rem; font-weight: 600; }

.app-cart-sidebar .subtotal { font-weight: 700; min-width: 80px; text-align: right; color: var(--cart-text); }

.app-cart-sidebar .pay-btn {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    transition: background 0.2s;
}
.app-cart-sidebar .pay-btn:hover { background: #1a3755; }

.app-cart-footer { padding: 17px 24px; border-top: 1px solid var(--cart-border); background: #f8fafc; }
.app-cart-sidebar .total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.2rem; color: var(--cart-text); }

.app-cart-sidebar .empty-msg { text-align: center; padding: 40px 0; color: var(--cart-muted); }

.app-cart-body .cart-item-title {
    font-weight: 500;
    font-size: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
    gap: 15px;
}

.gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 2px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: scale(0.98);
}
.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, opacity 0.4s ease;
}

.img-error-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #444;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ajustes Fancybox */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.98);
}

.modal .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)) !important;
    gap: 10px !important;
}

.ss-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.ss-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ss-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f9fafb;
    flex-shrink: 0;
}

.ss-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ss-card:hover .ss-img-wrapper img { transform: scale(1.08); }

.list-mode-card {
    flex-direction: row !important;
    height: 90px !important;
}

.list-mode-card .ss-img-wrapper {
    width: 120px !important;
    height: 100% !important;
}


.ss-info { padding: 18px; text-align: center; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.ss-info h3 {
    margin: 0;
    font-size: 16px !important;
    font-weight: 500;
}


.list-mode-card .ss-info {
    text-align: left !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
}


.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.membership-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border-radius: 23px;
    padding: 37px;
    border: 1px solid var(--border);
    /*box-shadow: 20px 20px 60px #d1d5db, -20px -20px 60px #ffffff;*/
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.membership-card.active {
    border: 3px solid var(--primary) !important;
}

/*.membership-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 5px 5px 30px #c1c5cb, -5px -5px 30px #ffffff;
}*/

.membership-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.membership-card-icon {
    height: 80px;
    width: fit-content;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}
.membership-card-icon img {
    height: 100%;
    width: auto;
}

.membership-price-container {
    margin-bottom: 30px;
}

.membership-main-price {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -2px;
}

.membership-price-info {
    color: #64748b;
    font-size: 14px;
    display: block;
    margin-top: 5px;
    line-height: 1.4;
}

.membership-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
}

.membership-btn-open {
    background: #0f172a;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.membership-btn-open:hover {
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(12, 31, 64, 0.47);
}

.membership-card-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: var(--primary);
    color: white;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(41, 76, 112, 0.3);
}


.membership-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2000;
}

.membership-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.membership-modal-container {
    width: 95%;
    max-width: 900px;
    height: auto;
    max-height: 90vh;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.membership-modal-overlay.active .membership-modal-container {
    transform: scale(1) translateY(0);
}

.membership-modal-visual {
    background: #0f172a;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.membership-modal-visual::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(80px);
    bottom: -20px;
    left: -20px;
    opacity: 0.5;
}

.membership-modal-content {
    padding: 50px 30px;
    overflow-y: auto;
    background: white;
}

.membership-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #f1f5f9;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.membership-modal-close:hover {
    background: #f43f5e;
    color: white;
    transform: rotate(90deg);
}

.membership-benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    width: 100%;
    font-weight: 600;
    color: #0f172a;
}

.membership-benefit-tag svg {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.membership-gallery-grid .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 10px;
    margin-top: 20px;
}

.membership-gallery-img, .membership-gallery-grid a {
    display: inline-table;
    width: 100%;
    aspect-ratio: 17/9;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.membership-gallery-img:hover, .membership-gallery-grid a:hover {
    transform: scale(1.05);
}

.membership-gallery-grid a:hover img {
    transform: none !important;
    opacity: 1 !important;
}

.membership-btn-action {
    width: 100%;
    display: block;
    padding: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white !important;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px #0013294d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
}

.membership-btn-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #00114580;
}


.membership-modal-card-icon {
    height: 100px;
    width: 100px;
    padding: 12px;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    align-content: center;
    background: white;
}
.membership-modal-card-icon img {
    margin: auto;
    border-radius: 9px;
}

.membership-modal-title {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 0;
    color: white !important;
}

.membership-modal-desc {
    font-size: 16px;
    line-height: 23px;
    margin: 10px 0 0;
}
.membership-modal-pricing-info {
    border-top: 1px solid #d4dadf3b;
    margin-top: 22px;
    padding-top: 10px;
    width: 100%;
}
.membership-modal-pricing-info .membership-main-price {
    font-size: 35px;
    font-weight: 500;
}
.membership-modal-pricing-desc {
    opacity: .9;
    font-size: 15px;
    color: white !important;
    line-height: 21px;
}
.membership-modal-benefits-gallery-container {
    padding: 0 20px;
    overflow-y: auto;
    max-height: 500px;
}

.a-external-links-btn {
    padding: 10px;
    text-decoration: none;
    align-items: center;
    display: flex;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 13px;
    margin: 5px 0;
    transition: all 0.2s;
}

.a-external-links-btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}


.cta-three {
    overflow: hidden;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.p_relative {
    position: relative;
}

.centred {
    text-align: center;
}

.parallax_none {
    transform: translate(0px);
}

.parallax-bg {
    transform: translate3d(0px, 86.528px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
    -webkit-transform: translate3d(0px, 86.528px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
    top: -30%;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.l_0 {
    left: 0;
}

.p_absolute {
    position: absolute;
}


.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0  25px;
    margin: 0 auto;
}

.cta-three .inner-box {
    max-width: 720px;
    margin: 0 auto;
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-name: fadeInUp;
}

.z_1 {
    z-index: 1;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.cta-three .inner-box h2 {
    line-height: 52px;
    color: #fff;
}

.mb_25 {
    margin-bottom: 25px;
}

.fw_bold {
    font-weight: 700;
}

.d_block {
    display: block;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.mb_35 {
    margin-bottom: 35px;
}
.fs_17 {
    font-size: 17px;
}
.b_radius_50 {
    border-radius: 50%;
}
.lh_100 {
    line-height: 100px;
}
.h_100 {
    height: 100px;
}
.w_100 {
    width: 100px;
}
.fs_30 {
    font-size: 30px;
}
.d_iblock {
    display: inline-block;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


.home-main-title {
    font-size: 35px;
    margin: 30px 0 20px;
    font-weight: 800;
}
.home-main-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 25px;
}

.video-banner-btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    animation: videoPulse 2s infinite;
    color: white;
}

.video-banner-btn-custom:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.05);
    animation: none; /* Detiene el pulso al hacer hover */
}

.video-banner-close-btn:hover {
    color: #ff4444 !important;
}

.video-banner-fade-enter-active, .video-banner-fade-leave-active { transition: opacity 0.3s ease; }
.video-banner-fade-enter, .video-banner-fade-leave-to { opacity: 0; }

@keyframes videoPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.video-banner-btn-custom > svg {
    width: 50px;
    height: 50px;
    fill: white;
    margin-left: 2px;
}



/* =========================================
         Animación de Destello (Skeleton Base)
         ========================================= */
.skeleton {
    /* Un gradiente con 3 tonos de gris claro para simular el brillo */
    background: linear-gradient(
            90deg,
            #e0e0e0 25%,
            #f0f0f0 50%,
            #e0e0e0 75%
    );
    /* Hacemos el fondo más grande para que pueda "moverse" */
    background-size: 200% 100%;
    /* Animación continua de izquierda a derecha */
    animation: destello 1.5s infinite linear;
}

@keyframes destello {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* =========================================
   Formas de los Placeholders
   ========================================= */

/* Círculo para avatares */
.sk-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Rectángulo grande para imágenes */
.sk-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Rectángulo pequeño para imágenes miniatura */
.sk-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Líneas de texto */
.sk-text {
    height: 12px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Línea de texto más gruesa para títulos */
.sk-title {
    height: 20px;
    border-radius: 6px;
    width: 70%;
    margin-bottom: 0.8rem;
}

/* Botón falso */
.sk-btn {
    height: 40px;
    border-radius: 8px;
    width: 100px;
    margin-top: 0.5rem;
}



/* Variaciones de ancho para líneas de texto más naturales */
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-50 { width: 50%; }
.w-40 { width: 40%; }
.w-30 { width: 30%; }
.w-90 { width: 90%; }
.w-full { width: 100%; }
.opacity-0 { opacity: 0 !important; }


.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espacio entre icono y texto */
    border-radius: 50px; /* Estilo Pill */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    background-color: #ffffff; /* Fondo del botón estrictamente blanco */
}

/* Icono SVG estándar */
.btn-pill svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.btn-v7 {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    box-shadow: 0 8px 40px #47464696;
    font-size: 14px;
}
.btn-v7:hover {
    background: rgba(255, 255, 255, 0.9);
}


@media (max-width: 850px) {

    .home-main-title {
        font-size: 23px;
        margin: 8px 0 5px;
        margin-bottom: 4px;
    }
    .home-main-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .video-banner-btn-custom {
        width: 60px;
        height: 60px;
    }

    .video-banner-btn-custom > svg {
        width: 40px;
        height: 40px;
    }

    .membership-modal-container {
        grid-template-columns: 1fr;
    }
    .membership-modal-visual {
        padding: 30px 30px 15px;
        text-align: center;
        align-items: center;
    }
    .membership-modal-content {
        padding: 30px 25px 35px;
    }
    .membership-modal-card-icon {
        height: 65px;
        width: 65px;
        padding: 8px;
        border-radius: 12px;
        margin-bottom: 13px;
    }
    .membership-modal-title {
        font-size: 25px;
    }
    .membership-modal-pricing-info {
        margin-top: 15px;
        padding-top: 5px;
    }
    .membership-modal-desc {
        font-size: 14px;
    }
    .membership-modal-pricing-desc {
        font-size: 13px;
    }
    .membership-modal-pricing-info .membership-main-price {
        font-size: 28px;
    }
    .membership-modal-benefits-gallery-container {
        max-height: 260px;
    }
}



@media (max-width: 1199px) {
    .cart-fab { display: flex; }
    .cart-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 25px rgba(0,0,0,0.15);
        border: none;
    }
    .cart-sidebar.open {
        left: 0;
    }
    .business-right-col {
        position: relative;
    }
    .cart-header { border-radius: 0; padding: 20px 24px;}
    .cart-footer { border-radius: 0; }
    .btn-close-cart-mobile {
        display: flex;
        background: #f1f5f9;
        border: none;
        width: 36px; height: 36px;
        border-radius: 50%;
        align-items: center; justify-content: center;
        cursor: pointer;
        color: var(--secondary);
    }
    .checkout-summary-box { position: static; }

    .detail-info-col {
        max-width: 100%;
    }

    .cart-items {
        max-height: none;
    }
}

@media (max-width: 768px) {
    #checkoutModal .custom-modal-content { flex-direction: column; }
    #checkoutModal .v1-left { border-right: none; padding: 30px 20px; }
    #checkoutModal .v1-right { padding: 30px 20px; border-top: 1px solid #e5e7eb; }
    #checkoutModal .quick-pay-row { flex-direction: column; }
    #checkoutModal .close-btn { top: 12px; right: 12px; }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .modal .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)) !important;
    }
}

.tooltip.show{
    z-index: 3000 !important;
}

.fancybox__container {
    z-index: 2001 !important;
}