/* ═══════════════════════════════════════════════════════
   Bundled Portfolio Page – 2026 Design System
   Prefix: tb-bp-
   Accent: #4e64df
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.tb-bp-hero {
    padding: 50px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    position: relative;
    overflow: hidden;
}
.tb-bp-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78,100,223,.08) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}
.tb-bp-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,100,223,.06) 0%, transparent 70%);
    bottom: -180px;
    right: -80px;
    pointer-events: none;
}
.tb-bp-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.tb-bp-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: 24px;
}
.tb-bp-badge i { color: #4e64df; }
.tb-bp-title {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 18px;
}
.tb-bp-title span { color: #4e64df; }
.tb-bp-subtitle {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Portfolio Items Section ── */
.tb-bp-items {
    padding: 60px 0 80px;
    background: #fff;
}

/* Single Portfolio Item Block */
.tb-bp-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}
.tb-bp-item:last-child {
    margin-bottom: 0;
}
/* Reverse layout for right-aligned image items */
.tb-bp-item--img-right {
    direction: rtl;
}
.tb-bp-item--img-right > * {
    direction: ltr;
}

/* Image Side */
.tb-bp-item-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.tb-bp-item-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform .4s ease;
}
.tb-bp-item:hover .tb-bp-item-img img {
    transform: scale(1.03);
}
.tb-bp-item-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #eef1f8;
    border-radius: 20px;
    pointer-events: none;
}

/* Content Side */
.tb-bp-item-content {
    padding: 10px 0;
}
.tb-bp-item-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f2ff;
    border: 1px solid #dde1f9;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 1.85rem;
    font-weight: 600;
    color: #4e64df;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.tb-bp-item-tagline i {
    font-size: 0.75rem;
    color: #4e64df;
}
.tb-bp-item-title {
    font-size: 3.3rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin: 0 0 16px;
}
.tb-bp-item-title span { color: #4e64df; }
.tb-bp-item-desc {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* Bullet Points */
.tb-bp-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tb-bp-bullet {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8f9fc;
    border: 1px solid #eef1f8;
    border-radius: 14px;
    padding: 20px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tb-bp-bullet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border-color: #4e64df;
}
.tb-bp-bullet-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #4e64df, #6b7eff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tb-bp-bullet-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.tb-bp-bullet-content h4 {
    font-size: 1.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.tb-bp-bullet-content p {
    font-size: 1.85rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Item Number Badge */
.tb-bp-item-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #4e64df;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Section Divider */
.tb-bp-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4e64df 0%, rgba(78,100,223,0) 100%);
    margin: 0 auto 80px;
    border-radius: 3px;
}
.tb-bp-item + .tb-bp-divider:last-of-type {
    display: none;
}

/* ── CTA Banner ── */
.tb-bp-cta {
    background: #111827;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tb-bp-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-bp-cta h2 {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.tb-bp-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-bp-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-bp-cta-btn:hover {
    background: #3d51c4;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.tb-bp-cta-btn i { font-size: .85rem; }

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .tb-bp-hero { padding: 80px 0 50px; }
    .tb-bp-title { font-size: 2.3rem; }
    .tb-bp-item {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .tb-bp-item--img-right {
        direction: ltr;
    }
    .tb-bp-item-title { font-size: 1.8rem; }
    .tb-bp-item-desc { font-size: 1rem; }
    .tb-bp-divider { margin-bottom: 50px; }
}

@media (max-width: 767px) {
    .tb-bp-hero { padding: 70px 0 40px; }
    .tb-bp-title { font-size: 1.9rem; }
    .tb-bp-subtitle { font-size: .95rem; }
    .tb-bp-items { padding: 40px 0 60px; }
    .tb-bp-item { margin-bottom: 50px; gap: 24px; }
    .tb-bp-item-title { font-size: 1.6rem; }
    .tb-bp-bullet { padding: 16px; }
    .tb-bp-cta { padding: 50px 0; }
    .tb-bp-cta h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .tb-bp-title { font-size: 1.6rem; }
    .tb-bp-item-title { font-size: 1.4rem; }
    .tb-bp-bullet-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .tb-bp-bullet-icon img {
        width: 20px;
        height: 20px;
    }
}
 #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
    }
