/**
 * pages-custom.css - Eshop Stylesheet para Páginas Institucionales y CMS
 * Optimizado para rendimiento, caché del navegador y Core Web Vitals.
 * Páginas cubiertas: Cupones, Envíos, Pagos, Devoluciones, Compromiso y Páginas CMS.
 */

/* ==========================================================================
   1. CUPONES Y CÓDIGOS DE DESCUENTO (/web/cupones/)
   ========================================================================== */
:root {
    --coupon-primary: #0284c7;
    --coupon-primary-hover: #0369a1;
    --coupon-primary-light: #e0f2fe;
    --coupon-success: #16a34a;
    --coupon-text-main: #0f172a;
    --coupon-text-muted: #64748b;
    --coupon-border: #e2e8f0;
    --coupon-bg-card: #ffffff;
    --coupon-bg-light: #f8fafc;
}

.cupones-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem 1rem;
}

/* Cupones Hero */
.cupones-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}
.cupones-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.3) 0%, rgba(2, 132, 199, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cupones-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0f2fe;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.cupones-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}
.cupones-hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #f1f5f9;
    font-weight: 600;
}
.hero-feature-item i {
    color: #38bdf8;
}

/* Cupones Secciones y Tarjetas */
.section-header-box {
    margin-bottom: 1.75rem;
}
.section-header-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--coupon-text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
}
.section-header-desc {
    color: var(--coupon-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.coupon-ticket-card {
    background: var(--coupon-bg-card);
    border: 1px solid var(--coupon-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.coupon-ticket-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.12);
    border-color: #38bdf8;
}

.coupon-ticket-header {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    padding: 1.35rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.coupon-ticket-header::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 6px;
    background: radial-gradient(circle, transparent, transparent 50%, #ffffff 50%, #ffffff 100%);
    background-size: 14px 12px;
}
.coupon-val {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.coupon-val-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    opacity: 0.9;
    margin-top: 0.2rem;
}
.coupon-status-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.coupon-ticket-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.coupon-title-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--coupon-text-main);
    margin-bottom: 0.75rem;
}
.coupon-condition-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}
.coupon-condition-list li {
    font-size: 0.88rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
}
.coupon-condition-list li i {
    color: var(--coupon-primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.coupon-code-box {
    margin-top: auto;
    background: #f8fafc;
    border: 2px dashed #94a3b8;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.coupon-code-val {
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--coupon-text-main);
    letter-spacing: 2px;
}
.btn-copy-coupon {
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.45rem 0.95rem;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    border: 1px solid var(--coupon-primary);
    color: var(--coupon-primary);
    background: #ffffff;
}
.btn-copy-coupon:hover {
    background: var(--coupon-primary);
    color: #ffffff;
}
.btn-copy-coupon.copied {
    background: #ecfdf5 !important;
    border-color: #10b981 !important;
    color: #047857 !important;
}

.coupon-ticket-footer {
    background: #f8fafc;
    border-top: 1px solid var(--coupon-border);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.empty-coupons-box {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 3.5rem 1.5rem;
    text-align: center;
}
.empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--coupon-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.instructions-card {
    background: #ffffff;
    border: 1px solid var(--coupon-border);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.step-card {
    padding: 1rem;
    text-align: center;
}
.step-number-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}
.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--coupon-text-main);
    margin-bottom: 0.45rem;
}
.step-desc {
    font-size: 0.85rem;
    color: var(--coupon-text-muted);
    line-height: 1.5;
    margin: 0;
}

.cupones-wrapper .faq-container {
    margin-top: 3.5rem;
}
.cupones-wrapper .accordion-item {
    border: 1px solid var(--coupon-border);
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #ffffff;
}
.cupones-wrapper .accordion-button {
    font-weight: 700;
    color: var(--coupon-text-main);
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    background-color: #ffffff;
    box-shadow: none !important;
}
.cupones-wrapper .accordion-button:not(.collapsed) {
    color: var(--coupon-primary);
    background-color: #f0f9ff;
}
.cupones-wrapper .accordion-body {
    padding: 1.1rem 1.25rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    background-color: #ffffff;
}

.canon-digital-alert {
    background: #f8fafc;
    border-left: 4px solid var(--coupon-primary);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.canon-digital-alert i {
    font-size: 1.35rem;
    color: var(--coupon-primary);
    margin-top: 0.15rem;
}

.cupones-cta-card {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: #ffffff;
    text-align: center;
    margin-top: 3.5rem;
}
.cupones-cta-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.cupones-cta-card p {
    font-size: 1rem;
    color: #e0f2fe;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cupones-wrapper .breadcrumb-nav {
    margin-bottom: 1.25rem;
}
.cupones-wrapper .breadcrumb-nav .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
}
.cupones-wrapper .breadcrumb-nav .breadcrumb-item.active {
    color: var(--coupon-primary);
    font-weight: 700;
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .cupones-hero {
        padding: 2rem 1.25rem;
    }
    .cupones-hero h1 {
        font-size: 1.85rem;
    }
    .instructions-card {
        padding: 1.5rem 1rem;
    }
}


/* ==========================================================================
   2. ENVÍOS Y PLAZOS DE ENTREGA (/web/envio/)
   ========================================================================== */
:root {
    --ship-primary: #0284c7;
    --ship-primary-hover: #0369a1;
    --ship-primary-light: #e0f2fe;
    --ship-dark: #0f172a;
    --ship-muted: #64748b;
    --ship-border: #e2e8f0;
    --ship-bg-light: #f8fafc;
    --ship-success: #16a34a;
}

.shipping-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem 1rem;
}

.shipping-breadcrumbs {
    margin-bottom: 1.25rem;
}
.shipping-breadcrumbs a {
    color: var(--ship-muted);
    text-decoration: none;
    font-size: 0.88rem;
}
.shipping-breadcrumbs a:hover {
    color: var(--ship-primary);
}
.shipping-breadcrumbs .active {
    color: var(--ship-primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.shipping-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.shipping-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(56, 189, 248, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0f2fe;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.shipping-hero h1 {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}
.shipping-hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.shipping-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.shipping-wrapper .hero-feat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: #f1f5f9;
    font-weight: 600;
}
.shipping-wrapper .hero-feat-item i {
    color: #38bdf8;
}

.logistics-pillar-card {
    background: #ffffff;
    border: 1px solid var(--ship-border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}
.logistics-pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ship-primary-light);
    color: var(--ship-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.pillar-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ship-dark);
    margin-bottom: 0.4rem;
}
.pillar-desc {
    font-size: 0.86rem;
    color: var(--ship-muted);
    line-height: 1.5;
    margin: 0;
}

.carrier-card {
    background: #ffffff;
    border: 1px solid var(--ship-border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.carrier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(2, 132, 199, 0.12);
    border-color: #7dd3fc;
}
.carrier-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--ship-border);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.carrier-title-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.carrier-icon-rounded {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--ship-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--ship-primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.carrier-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ship-dark);
    margin: 0;
}
.carrier-status-tag {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.carrier-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rates-table {
    margin-bottom: 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--ship-border);
}
.rates-table th {
    background-color: #f8fafc;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--ship-border);
}
.rates-table td {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.rates-table tr:last-child td {
    border-bottom: none;
}
.carrier-footer {
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid var(--ship-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--ship-muted);
}

.tracking-callout-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 3rem;
}
.tracking-callout-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ship-dark);
    margin-bottom: 0.25rem;
}
.tracking-callout-desc {
    color: #0369a1;
    font-size: 0.92rem;
    margin: 0;
}

.shipping-wrapper .shipping-faq-section {
    margin-top: 3.5rem;
}
.shipping-wrapper .accordion-item {
    border: 1px solid var(--ship-border);
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #ffffff;
}
.shipping-wrapper .accordion-button {
    font-weight: 700;
    color: var(--ship-dark);
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    background-color: #ffffff;
    box-shadow: none !important;
}
.shipping-wrapper .accordion-button:not(.collapsed) {
    color: var(--ship-primary);
    background-color: #f0f9ff;
}
.shipping-wrapper .accordion-body {
    padding: 1.1rem 1.25rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    background-color: #ffffff;
}

.shipping-cta-card {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 20px;
    padding: 2.75rem 2rem;
    color: #ffffff;
    text-align: center;
    margin-top: 3.5rem;
}
.shipping-cta-card h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.shipping-cta-card p {
    font-size: 1.05rem;
    color: #e0f2fe;
    max-width: 620px;
    margin: 0 auto 1.5rem auto;
}

@media (max-width: 768px) {
    .shipping-hero {
        padding: 2rem 1.25rem;
    }
    .shipping-hero h1 {
        font-size: 1.85rem;
    }
    .tracking-callout-card {
        padding: 1.5rem 1.25rem;
    }
}


/* ==========================================================================
   3. MÉTODOS DE PAGO SEGUROS (/web/pagos/)
   ========================================================================== */
:root {
    --pay-primary: #0284c7;
    --pay-primary-hover: #0369a1;
    --pay-primary-light: #e0f2fe;
    --pay-dark: #0f172a;
    --pay-muted: #64748b;
    --pay-border: #e2e8f0;
    --pay-bg-light: #f8fafc;
    --pay-success: #16a34a;
}

.payments-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem 1rem;
}

.payments-breadcrumbs {
    margin-bottom: 1.25rem;
}
.payments-breadcrumbs a {
    color: var(--pay-muted);
    text-decoration: none;
    font-size: 0.88rem;
}
.payments-breadcrumbs a:hover {
    color: var(--pay-primary);
}
.payments-breadcrumbs .active {
    color: var(--pay-primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.payments-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.payments-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(56, 189, 248, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.payments-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0f2fe;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.payments-hero h1 {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}
.payments-hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.payments-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.payments-wrapper .hero-feat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: #f1f5f9;
    font-weight: 600;
}
.payments-wrapper .hero-feat-item i {
    color: #38bdf8;
}

.security-pillar-card {
    background: #ffffff;
    border: 1px solid var(--pay-border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}
.security-pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.payment-method-card {
    background: #ffffff;
    border: 1px solid var(--pay-border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.payment-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(2, 132, 199, 0.12);
    border-color: #7dd3fc;
}
.payment-method-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--pay-border);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.payment-method-title-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.payment-icon-rounded {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--pay-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--pay-primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.payment-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pay-dark);
    margin: 0;
}
.badge-fee-free {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    white-space: nowrap;
}
.payment-method-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.payment-method-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.payment-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    font-size: 0.88rem;
}
.payment-features-list li {
    margin-bottom: 0.55rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.payment-features-list li i {
    color: var(--pay-success);
    margin-top: 0.2rem;
    font-size: 0.85rem;
}
.payment-method-footer {
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid var(--pay-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--pay-muted);
}

.payments-wrapper .payments-faq-section {
    margin-top: 3.5rem;
}
.payments-wrapper .accordion-item {
    border: 1px solid var(--pay-border);
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #ffffff;
}
.payments-wrapper .accordion-button {
    font-weight: 700;
    color: var(--pay-dark);
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    background-color: #ffffff;
    box-shadow: none !important;
}
.payments-wrapper .accordion-button:not(.collapsed) {
    color: var(--pay-primary);
    background-color: #f0f9ff;
}
.payments-wrapper .accordion-body {
    padding: 1.1rem 1.25rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    background-color: #ffffff;
}

.payments-cta-card {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 20px;
    padding: 2.75rem 2rem;
    color: #ffffff;
    text-align: center;
    margin-top: 3.5rem;
}
.payments-cta-card h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.payments-cta-card p {
    font-size: 1.05rem;
    color: #e0f2fe;
    max-width: 620px;
    margin: 0 auto 1.5rem auto;
}

@media (max-width: 768px) {
    .payments-hero {
        padding: 2rem 1.25rem;
    }
    .payments-hero h1 {
        font-size: 1.85rem;
    }
}


/* ==========================================================================
   4. GARANTÍA Y DEVOLUCIONES (/web/devoluciones/)
   ========================================================================== */
:root {
    --ret-primary: #0284c7;
    --ret-primary-hover: #0369a1;
    --ret-primary-light: #e0f2fe;
    --ret-dark: #0f172a;
    --ret-muted: #64748b;
    --ret-border: #e2e8f0;
    --ret-bg-light: #f8fafc;
    --ret-success: #16a34a;
}

.returns-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem 1rem;
}

.returns-breadcrumbs {
    margin-bottom: 1.25rem;
}
.returns-breadcrumbs a {
    color: var(--ret-muted);
    text-decoration: none;
    font-size: 0.88rem;
}
.returns-breadcrumbs a:hover {
    color: var(--ret-primary);
}
.returns-breadcrumbs .active {
    color: var(--ret-primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.returns-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.returns-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(56, 189, 248, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.returns-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0f2fe;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.returns-hero h1 {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}
.returns-hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.returns-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.returns-wrapper .hero-feat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: #f1f5f9;
    font-weight: 600;
}
.returns-wrapper .hero-feat-item i {
    color: #38bdf8;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--ret-border);
    border-radius: 16px;
    padding: 1.6rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}
.pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ret-primary-light);
    color: var(--ret-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.steps-section-card {
    background: #ffffff;
    border: 1px solid var(--ret-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.action-callout-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.action-callout-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ret-dark);
    margin-bottom: 0.25rem;
}
.action-callout-desc {
    color: #0369a1;
    font-size: 0.92rem;
    margin: 0;
}

.cases-card {
    background: #ffffff;
    border: 1px solid var(--ret-border);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
}
.case-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ret-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.case-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.returns-wrapper .faq-returns-section {
    margin-top: 3.5rem;
}
.returns-wrapper .accordion-item {
    border: 1px solid var(--ret-border);
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #ffffff;
}
.returns-wrapper .accordion-button {
    font-weight: 700;
    color: var(--ret-dark);
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    background-color: #ffffff;
    box-shadow: none !important;
}
.returns-wrapper .accordion-button:not(.collapsed) {
    color: var(--ret-primary);
    background-color: #f0f9ff;
}
.returns-wrapper .accordion-body {
    padding: 1.1rem 1.25rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    background-color: #ffffff;
}

.returns-cta-card {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 20px;
    padding: 2.75rem 2rem;
    color: #ffffff;
    text-align: center;
    margin-top: 3.5rem;
}
.returns-cta-card h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.returns-cta-card p {
    font-size: 1.05rem;
    color: #e0f2fe;
    max-width: 620px;
    margin: 0 auto 1.5rem auto;
}

@media (max-width: 768px) {
    .returns-hero {
        padding: 2rem 1.25rem;
    }
    .returns-hero h1 {
        font-size: 1.85rem;
    }
    .steps-section-card {
        padding: 1.5rem 1.25rem;
    }
    .action-callout-box {
        padding: 1.5rem 1.25rem;
    }
}


/* ==========================================================================
   5. COMPROMISO CON EL CLIENTE (/web/compromiso/)
   ========================================================================== */
:root {
    --cp-primary: #D19C97;
    --cp-primary-dark: #b87b76;
    --cp-primary-soft: #fcf4f3;
    --cp-dark: #1E1E2F;
    --cp-gray-bg: #F8F9FA;
    --cp-card-border: #edf0f5;
    --cp-text-muted: #6c757d;
    --cp-success: #28a745;
}

.cp-hero-banner {
    background: linear-gradient(135deg, #1E1E2F 0%, #2D2D44 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(30, 30, 47, 0.15);
}
.cp-hero-banner::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(209, 156, 151, 0.25) 0%, rgba(209, 156, 151, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cp-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(209, 156, 151, 0.2);
    color: #ffd8d4;
    border: 1px solid rgba(209, 156, 151, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cp-metric-box {
    background: #ffffff;
    border: 1px solid var(--cp-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.25s ease-in-out;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.cp-metric-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: var(--cp-primary);
}
.cp-metric-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 12px;
    background: var(--cp-primary-soft);
    color: var(--cp-primary);
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp-metric-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--cp-dark);
    margin-bottom: 0.25rem;
}
.cp-metric-label {
    font-size: 0.9rem;
    color: var(--cp-text-muted);
    line-height: 1.35;
    margin-bottom: 0;
}

.cp-pillar-card {
    background: #ffffff;
    border: 1px solid var(--cp-card-border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.cp-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(30, 30, 47, 0.08);
    border-color: rgba(209, 156, 151, 0.5);
}
.cp-pillar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.cp-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--cp-primary-soft);
    color: var(--cp-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.cp-pillar-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: #f1f3f7;
    color: #495057;
    margin-left: auto;
}
.cp-pillar-tag.badge-highlight {
    background: #e6f7ec;
    color: #1e7e34;
}
.cp-pillar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cp-dark);
    margin-bottom: 0.75rem;
}
.cp-pillar-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.cp-pillar-bullet {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: #555b62;
}
.cp-pillar-bullet li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
}
.cp-pillar-bullet li:last-child {
    margin-bottom: 0;
}
.cp-pillar-bullet li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--cp-success);
    font-size: 0.85rem;
}

.cp-journey-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--cp-card-border);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    margin-bottom: 3rem;
}
.cp-step-item {
    position: relative;
    text-align: center;
    padding: 1rem;
}
.cp-step-num {
    width: 44px;
    height: 44px;
    background: var(--cp-primary);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(209, 156, 151, 0.4);
}
.cp-step-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cp-dark);
    margin-bottom: 0.5rem;
}
.cp-step-item p {
    font-size: 0.88rem;
    color: var(--cp-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.cp-cta-banner {
    background: linear-gradient(135deg, #fdf8f7 0%, #fbf3f2 100%);
    border: 1px solid rgba(209, 156, 151, 0.35);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
}
.cp-btn-main {
    background-color: var(--cp-primary);
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.cp-btn-main:hover {
    background-color: var(--cp-primary-dark);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 156, 151, 0.4);
}
.cp-btn-outline {
    background: transparent;
    color: var(--cp-dark);
    border: 1px solid #ced4da;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.cp-btn-outline:hover {
    background: #ffffff;
    border-color: var(--cp-dark);
    color: var(--cp-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

.cp-faq-card {
    border: 1px solid var(--cp-card-border);
    border-radius: 10px !important;
    margin-bottom: 0.85rem;
    background: #ffffff;
    overflow: hidden;
}
.cp-faq-header {
    background: #ffffff;
    border: none;
    padding: 0;
}
.cp-faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cp-dark);
    text-decoration: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}
.cp-faq-btn:hover {
    background-color: #fafbfc;
    color: var(--cp-primary-dark);
}
.cp-faq-btn[aria-expanded="true"] {
    color: var(--cp-primary-dark);
    background-color: var(--cp-primary-soft);
}
.cp-faq-btn i.fa-chevron-down {
    transition: transform 0.25s ease;
    font-size: 0.85rem;
    color: var(--cp-text-muted);
}
.cp-faq-btn[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--cp-primary-dark);
}
.cp-faq-body {
    padding: 1.25rem 1.5rem;
    font-size: 0.94rem;
    line-height: 1.65;
    color: #495057;
    background: #ffffff;
    border-top: 1px solid #f0f2f5;
}


/* ==========================================================================
   6. PÁGINAS CMS DINÁMICAS (/web/<slug>/)
   ========================================================================== */
:root {
    --cms-primary: #D19C97;
    --cms-primary-dark: #b87b76;
    --cms-primary-soft: #fcf4f3;
    --cms-dark: #1E1E2F;
    --cms-card-border: #edf0f5;
    --cms-text-muted: #6c757d;
}

.cms-header-card {
    background: #ffffff;
    border: 1px solid var(--cms-card-border);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.cms-header-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--cms-primary);
}

.cms-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cms-primary-soft);
    color: var(--cms-primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 50rem;
    margin-bottom: 0.85rem;
}

.cms-meta-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.88rem;
    color: var(--cms-text-muted);
    border-top: 1px solid #f1f3f7;
    padding-top: 1rem;
    margin-top: 1.25rem;
}
.cms-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.cms-toc-card {
    background: #fafbfc;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--cms-primary);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.cms-toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cms-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cms-toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.cms-toc-item {
    margin-bottom: 0.45rem;
}
.cms-toc-item.level-3 {
    padding-left: 1.25rem;
}
.cms-toc-link {
    color: #495057;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.cms-toc-link:hover {
    color: var(--cms-primary-dark);
    text-decoration: underline;
}

.cms-article-card {
    background: #ffffff;
    border: 1px solid var(--cms-card-border);
    border-radius: 14px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
    margin-bottom: 2rem;
}
.cms-body-content {
    font-size: 1.025rem;
    line-height: 1.8;
    color: #333a42;
    transition: font-size 0.2s ease;
}
.cms-body-content h1,
.cms-body-content h2,
.cms-body-content h3,
.cms-body-content h4 {
    color: var(--cms-dark);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    line-height: 1.35;
    scroll-margin-top: 100px;
}
.cms-body-content h2 {
    font-size: 1.45rem;
    border-bottom: 2px solid var(--cms-primary-soft);
    padding-bottom: 0.45rem;
}
.cms-body-content h3 {
    font-size: 1.22rem;
}
.cms-body-content p {
    margin-bottom: 1.25rem;
}
.cms-body-content ul,
.cms-body-content ol {
    margin-bottom: 1.35rem;
    padding-left: 1.6rem;
}
.cms-body-content li {
    margin-bottom: 0.5rem;
}
.cms-body-content blockquote {
    border-left: 4px solid var(--cms-primary);
    background: #fafbfc;
    padding: 1.1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: #495057;
}
.cms-body-content table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}
.cms-body-content table th,
.cms-body-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
}
.cms-body-content table th {
    background-color: #f8f9fa;
    color: var(--cms-dark);
    font-weight: 700;
}
.cms-body-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.cms-sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--cms-card-border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.cms-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cms-dark);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #f0f2f5;
}
.cms-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cms-nav-item {
    margin-bottom: 0.45rem;
}
.cms-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    color: #495057;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.cms-nav-link:hover {
    background-color: var(--cms-primary-soft);
    color: var(--cms-primary-dark);
    text-decoration: none;
    transform: translateX(3px);
}
.cms-nav-link.active {
    background-color: var(--cms-primary-soft);
    color: var(--cms-primary-dark);
    font-weight: 700;
    border-left: 3px solid var(--cms-primary);
}

.cms-support-banner {
    background: linear-gradient(135deg, #1E1E2F 0%, #2b2b40 100%);
    border-radius: 14px;
    color: #ffffff;
    padding: 2.25rem 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 24px rgba(30,30,47,0.12);
}

#shareToast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    min-width: 250px;
    background: #1E1E2F;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: none;
}
