/* ═══════════════════════════════════════════════════════
   Cart Page – 2026 Design System
   Prefix: tb-cr-
   Accent: #4e64df
   ═══════════════════════════════════════════════════════ */

/* ── Page Wrapper ── */
.tb-cr-page {
    padding: 30px 0 80px;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
    min-height: 60vh;
}

/* ── Breadcrumb ── */
.tb-cr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.75rem;
    color: #999;
    margin-bottom: 28px;
}
.tb-cr-breadcrumb a {
    color: #4e64df;
    text-decoration: none;
    transition: color .2s;
}
.tb-cr-breadcrumb a:hover { color: #3d51c4; }
.tb-cr-breadcrumb span { color: #bbb; }

/* ── Layout: 2 columns — items left, summary right ── */
.tb-cr-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* ── Items Panel ── */
.tb-cr-items {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eef1f8;
    overflow: hidden;
}
.tb-cr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #eef1f8;
}
.tb-cr-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.tb-cr-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #4e64df;
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 1.75rem;
    font-weight: 600;
}

/* ── Single Cart Item Row ── */
.tb-cr-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid #f3f4f8;
    transition: background .2s;
}
.tb-cr-item:last-child { border-bottom: none; }
.tb-cr-item:hover { background: #fafbfe; }

/* Product Image */
.tb-cr-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #eef1f8;
}

/* Product Info */
.tb-cr-info { min-width: 0; }
.tb-cr-name {
    font-size: 1.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tb-cr-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 1.75rem;
    color: #888;
    margin-bottom: 10px;
}
.tb-cr-meta span { white-space: nowrap; }

/* Quantity + Remove Row */
.tb-cr-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tb-cr-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dde0e9;
    border-radius: 10px;
    overflow: hidden;
}
.tb-cr-qty-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #555;
    transition: background .2s;
    padding: 0;
}
.tb-cr-qty-btn:hover { background: #eef1f8; }
.tb-cr-qty-val {
    width: 40px;
    text-align: center;
    font-size: 1.85rem;
    font-weight: 600;
    color: #1a1a2e;
    border: none;
    border-left: 1px solid #dde0e9;
    border-right: 1px solid #dde0e9;
    padding: 6px 0;
    background: #fff;
}
.tb-cr-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    border-radius: 8px;
    transition: color .2s, background .2s;
}
.tb-cr-remove:hover {
    color: #ef4444;
    background: #fdf2f2;
}

/* Price Column */
.tb-cr-prices {
    text-align: right;
    white-space: nowrap;
}
.tb-cr-price {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px;
}
.tb-cr-unit-price {
    font-size: 1.65rem;
    color: #999;
}

/* ── Summary Panel (sticky) ── */
.tb-cr-summary {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eef1f8;
    padding: 28px;
    position: sticky;
    top: 100px;
}
.tb-cr-summary-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 22px;
}

/* Summary Rows */
.tb-cr-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 1.85rem;
}
.tb-cr-row-label { color: #666; }
.tb-cr-row-value {
    font-weight: 600;
    color: #1a1a2e;
}
.tb-cr-divider {
    border: none;
    border-top: 1px solid #eef1f8;
    margin: 8px 0;
}
.tb-cr-row-total .tb-cr-row-label,
.tb-cr-row-total .tb-cr-row-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* Checkout Button */
.tb-cr-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    margin-top: 22px;
    background: #4e64df;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, transform .15s;
}
.tb-cr-checkout:hover {
    background: #3d51c4;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.tb-cr-checkout i { font-size: .85rem; }

/* Continue Shopping Link */
.tb-cr-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    margin-top: 12px;
    color: #4e64df;
    background: transparent;
    border: 1.5px solid #4e64df;
    border-radius: 12px;
    font-size: 1.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
}
.tb-cr-continue:hover {
    background: #4e64df;
    color: #fff;
    text-decoration: none;
}

/* Secure Badge */
.tb-cr-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 1.7rem;
    color: #999;
}
.tb-cr-secure i { color: #10b981; }

/* ── Empty Cart ── */
.tb-cr-empty {
    text-align: center;
    padding: 80px 20px;
}
.tb-cr-empty-icon {
    width: 100px;
    height: 100px;
    background: #f0f2fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: #4e64df;
}
.tb-cr-empty h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.tb-cr-empty p {
    font-size: 1.85rem;
    color: #666;
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.tb-cr-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #4e64df;
    color: #fff;
    border-radius: 12px;
    font-size: 1.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s, transform .15s;
}
.tb-cr-empty-btn:hover {
    background: #3d51c4;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .tb-cr-layout {
        grid-template-columns: 1fr;
    }
    .tb-cr-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    .tb-cr-page { padding: 20px 0 60px; }
    .tb-cr-item {
        grid-template-columns: 70px 1fr;
        gap: 14px;
    }
    .tb-cr-img { width: 70px; height: 70px; }
    .tb-cr-prices {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding-top: 8px;
        border-top: 1px dashed #eef1f8;
    }
    .tb-cr-header { padding: 20px 20px; }
    .tb-cr-item { padding: 18px 20px; }
    .tb-cr-summary { padding: 22px 20px; }
}

@media (max-width: 480px) {
    .tb-cr-name { font-size: 1.8rem; }
    .tb-cr-breadcrumb { font-size: 1.6rem; }
}

i.fas.fa-arrow-right {
    color: white;
}
i.fas.fa-shopping-bag {
    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
    }
