/* ═══════════════════════════════════════════════════════
   Delivery & Shipping Page – 2026 Design System
   Prefix: tb-dv-
   Accent: #4e64df
   ═══════════════════════════════════════════════════════ */

/* ── Hero (preserved) ── */
.tb-dv-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b0d17;
}
.tb-dv-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ── Section Header (reusable) ── */
.tb-dv-section-head {
    text-align: center;
    margin-bottom: 44px;
}
.tb-dv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e3e6ed;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 1.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 18px;
}
.tb-dv-badge i { color: #4e64df; }
.tb-dv-heading {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 12px;
}
.tb-dv-heading span { color: #4e64df; }
.tb-dv-lead {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   Section 1: Shipping Info (2-col cards)
   ══════════════════════════════════════════ */
.tb-dv-info {
    padding: 60px 0;
    background: #fff;
}
.tb-dv-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.tb-dv-info-card {
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    border-radius: 18px;
    padding: 36px 32px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tb-dv-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    border-color: #4e64df;
}
.tb-dv-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4e64df, #6b7eff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.3rem;
}
.tb-dv-info-card h3 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
}
.tb-dv-info-card p {
    font-size: 1.85rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 12px;
}
.tb-dv-info-card p:last-child { margin-bottom: 0; }
.tb-dv-info-card strong { color: #1a1a2e; }

/* Check list inside card */
.tb-dv-check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.tb-dv-check-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 1.85rem;
    color: #555;
    font-weight: 600;
}
.tb-dv-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4e64df;
    font-size: .8rem;
}

/* Highlight box inside cards */
.tb-dv-highlight {
    background: #eef1f8;
    border-left: 3px solid #4e64df;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin-top: 16px;
}
.tb-dv-highlight p {
    font-size: 1.75rem;
    color: #555;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.tb-dv-highlight i { color: #4e64df; flex-shrink: 0; margin-top: 3px; }

/* ══════════════════════════════════════════
   Section 2: Shipping Details (4 blocks)
   ══════════════════════════════════════════ */
.tb-dv-details {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
}
.tb-dv-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.tb-dv-detail-block {
    background: #fff;
    border: 1px solid #eef1f8;
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.tb-dv-detail-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
}
.tb-dv-detail-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}
.tb-dv-detail-block h3 i {
    color: #4e64df;
    font-size: 2rem;
}
.tb-dv-detail-block p {
    font-size: 1.85rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 12px;
}
.tb-dv-detail-block p:last-child { margin-bottom: 0; }
.tb-dv-detail-block strong { color: #1a1a2e; }
.tb-dv-detail-block ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
}
.tb-dv-detail-block ul li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 1.85rem;
    color: #555;
}
.tb-dv-detail-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4e64df;
}

/* Price box */
.tb-dv-price-box {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}
.tb-dv-price-box p {
    font-size: 1.85rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 12px;
}
.tb-dv-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1.85rem;
}
.tb-dv-price-row span { color: #666; }
.tb-dv-price-row strong {
    color: #4e64df;
    font-weight: 700;
}

/* ══════════════════════════════════════════
   Section 3: Important Notes
   ══════════════════════════════════════════ */
.tb-dv-notes {
    padding: 60px 0;
    background: #fff;
}
.tb-dv-notes-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}
.tb-dv-notes-icon {
    width: 48px;
    height: 48px;
    background: #fff3cd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 1.2rem;
}
.tb-dv-notes-header h3 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.tb-dv-notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tb-dv-note-item {
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.tb-dv-note-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.tb-dv-note-item i {
    display: block;
    font-size: 3.3rem;
    color: #4e64df;
    margin-bottom: 14px;
}
.tb-dv-note-item p {
    font-size: 1.85rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* ══════════════════════════════════════════
   Section 4: CTA Banner
   ══════════════════════════════════════════ */
.tb-dv-cta {
    background: #111827;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tb-dv-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,100,223,.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}
.tb-dv-cta h2 {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.tb-dv-cta p {
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    margin: 0 0 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.tb-dv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #4e64df;
    color: #fff;
    border-radius: 12px;
    font-size: 1.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .15s ease;
}
.tb-dv-cta-btn:hover {
    background: #3d51c4;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.tb-dv-cta-btn i { font-size: .85rem; }

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .tb-dv-heading { font-size: 2.3rem; }
    .tb-dv-info-grid,
    .tb-dv-details-grid { grid-template-columns: 1fr; }
    .tb-dv-notes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .tb-dv-info,
    .tb-dv-details,
    .tb-dv-notes { padding: 40px 0; }
    .tb-dv-heading { font-size: 1.9rem; }
    .tb-dv-lead { font-size: 1rem; }
    .tb-dv-cta { padding: 50px 0; }
    .tb-dv-cta h2 { font-size: 1.6rem; }
    .tb-dv-notes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

@media (max-width: 480px) {
    .tb-dv-heading { font-size: 1.6rem; }
    .tb-dv-notes-grid { grid-template-columns: 1fr; }
    .tb-dv-info-card,
    .tb-dv-detail-block { padding: 26px 20px; }
}

i {
    color: white;
}

 #promoContent span:not(.free-shipping__icon) {
  color: #fff;
} 
div#promoBar {
    height: 39px;
    border-bottom: 2px solid #ffffff29;
}
.tb-cta.tb-cta--dark {
    border: 2px solid #ffffff38;
    border-radius: 6px;
}
a.link.btn--no-space.btn.c-link__button.tb-btn--medium.link--default {
    background: white;
    color: black;
    border-radius: 6px;
}
    .tb-cta { 
        -webkit-align-items: center;
        align-items: center;
        background: #000e5e !important;
        border-radius: 12px;
        box-shadow: 0 2px 4px 0 var(--color-neutral-900-a20);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 12px;
        gap: 8px
    }

    .bl-top-bar {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        justify-content: center;
        background: #000e5e !important;
        text-align: center;
        padding: 10px;
        width: 100%;
        gap: 4px
    }


    
    .tb-cta { 
        -webkit-align-items: center;
        align-items: center;
        background: #000e5e !important;
        border-radius: 12px;
        box-shadow: 0 2px 4px 0 var(--color-neutral-900-a20);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 12px;
        gap: 8px
    }
