/* ═══════════════════════════════════════════════════════
   Exhibition Page – 2026 Design System
   Prefix: tb-ex-
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.tb-ex-hero {
    padding: 50px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    position: relative;
    overflow: hidden;
}
.tb-ex-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,116,34,.07) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}
.tb-ex-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.tb-ex-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-ex-badge i { color: #4e64df; }
.tb-ex-title {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 18px;
}
.tb-ex-title span { color: #4e64df; }
.tb-ex-subtitle {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Filter Tabs ── */
.tb-ex-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 40px 0 10px;
}
.tb-ex-filter {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    padding: 9px 22px;
    font-size: 1.85rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .25s ease;
}
.tb-ex-filter:hover {
    border-color: #E87422;
    color: #E87422;
}
.tb-ex-filter.active {
    background: #E87422;
    border-color: #E87422;
    color: #fff;
}

/* ── Exhibition Grid ── */
.tb-ex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 50px 0 70px;
}
.tb-ex-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Exhibition Card ── */
.tb-ex-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
}
.tb-ex-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

/* Image wrapper */
.tb-ex-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.tb-ex-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.tb-ex-card:hover .tb-ex-img-wrap img {
    transform: scale(1.06);
}

/* Overlay gradient */
.tb-ex-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
    z-index: 1;
}

/* Number badge on image */
.tb-ex-num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.7rem;
    color: #4e64df;
    z-index: 2;
}

/* Tag on image */
.tb-ex-tag {
    position: absolute;
    bottom: 16px;
    left: 16px; 
    background: #4e64df;
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .3px;
    z-index: 2;
}

/* Card body */
.tb-ex-body {
    padding: 22px 24px 24px;
}
.tb-ex-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.35;
}
.tb-ex-desc {
    font-size: 1.75rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tb-ex-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}
.tb-ex-card-title a:hover { color: #E87422; }
.tb-ex-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.75rem;
    font-weight: 600;
    color: #E87422;
    text-decoration: none;
    transition: gap .25s ease, color .2s ease;
}
.tb-ex-btn i {
    font-size: 1.4rem;
    transition: transform .25s ease;
}
.tb-ex-card:hover .tb-ex-btn i { transform: translateX(4px); }

/* Empty state */
.tb-ex-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}
.tb-ex-empty-icon {
    width: 80px;
    height: 80px;
    background: #f0f0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #bbb;
}
.tb-ex-empty h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.tb-ex-empty p {
    color: #777;
    font-size: 1.85rem;
}

/* ── CTA / Contact Form Section ── */
.tb-ex-cta {
    background: #111827;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.tb-ex-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,116,34,.08) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    pointer-events: none;
}
.tb-ex-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CTA Left */
.tb-ex-cta-left {
    position: relative;
    z-index: 1;
}
.tb-ex-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 1.7rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: 20px;
}
.tb-ex-cta-badge i { color: #E87422; }
.tb-ex-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}
.tb-ex-cta-title span { color: #4e64df; }
.tb-ex-cta-text {
    font-size: 1.85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin: 0 0 32px;
}
i.fas.fa-paper-plane {
    color: white;
}
/* Profile card */
.tb-ex-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px 20px;
    max-width: 300px;
}
.tb-ex-profile-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.15);
}
.tb-ex-profile-name {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.tb-ex-profile-role {
    font-size: 1.6rem;
    color: rgba(255,255,255,.5);
    margin: 2px 0 0;
}

/* CTA Right – Form */
.tb-ex-form-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    z-index: 1;
}
.tb-ex-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}
.tb-ex-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.tb-ex-field {
    margin-bottom: 16px;
}
.tb-ex-field-full {
    grid-column: 1 / -1;
}
.tb-ex-label {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
}
.tb-ex-input {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 1.85rem;
    color: #fff;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
    font-family: 'Inter', sans-serif;
}
.tb-ex-input::placeholder { color: rgba(255,255,255,.3); }
.tb-ex-input:focus {
    border-color: #4e64df;
    box-shadow: 0 0 0 3px rgba(78,100,223,.15);
}
textarea.tb-ex-input {
    min-height: 110px;
    resize: vertical;
}

/* Validation */
.tb-ex-input.valid { border-color: #10b981; }
.tb-ex-input.invalid { border-color: #ef4444; }

/* Captcha */
.tb-ex-captcha {
    margin: 8px 0 20px;
    display: flex;
    justify-content: center;
}

/* Submit button */
.tb-ex-submit {
    width: 100%;
    background: #4e64df;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 28px;
    font-size: 1.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tb-ex-submit:hover {
    background: #3b4bbf;
    transform: translateY(-1px);
}
.tb-ex-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

/* Progress */
.tb-ex-progress {
    margin-top: 16px;
    display: none;
}
.tb-ex-progress-bar {
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}
.tb-ex-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E87422, #f59e0b);
    border-radius: 10px;
    width: 0%;
    transition: width .4s ease;
}
.tb-ex-progress-text {
    font-size: 1.5rem;
    color: rgba(255,255,255,.5);
    margin-top: 6px;
    text-align: center;
}

/* Toast notification */
.tb-ex-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    min-width: 320px;
    max-width: 420px;
    padding: 18px 22px;
    border-radius: 14px;
    color: #fff;
    font-size: 1.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.tb-ex-toast.show { transform: translateX(0); }
.tb-ex-toast.success { background: #059669; }
.tb-ex-toast.error { background: #dc2626; }
.tb-ex-toast.warning { background: #d97706; }
.tb-ex-toast i { font-size: 1.2rem; flex-shrink: 0; }

/* Loading overlay */
.tb-ex-loading {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    place-items: center;
}
.tb-ex-loading.show { display: grid; }
.tb-ex-loading-box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.tb-ex-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f0f0f0;
    border-top-color: #E87422;
    border-radius: 50%;
    animation: tb-ex-spin .8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes tb-ex-spin { to { transform: rotate(360deg); } }
.tb-ex-loading-box h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.tb-ex-loading-box p {
    font-size: 1.75rem;
    color: #777;
    margin: 0;
}

/* ── Stats Banner ── */
.tb-ex-stats {
    background: #f8f9fc;
    padding: 50px 0;
    border-top: 1px solid #eee;
}
.tb-ex-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.tb-ex-stat-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: #E87422;
    line-height: 1;
}
.tb-ex-stat-label {
    font-size: 1.85rem;
    color: #777;
    margin-top: 6px;
}

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .tb-ex-hero { padding: 80px 0 50px; }
    .tb-ex-title { font-size: 3.5rem; }
    .tb-ex-grid { gap: 24px; }
    .tb-ex-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tb-ex-cta-title { font-size: 2.8rem; }
    .tb-ex-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .tb-ex-hero { padding: 70px 0 40px; }
    .tb-ex-title { font-size: 3rem; }
    .tb-ex-subtitle { font-size: 1.4rem; }
    .tb-ex-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0 50px;
    }
    .tb-ex-cta { padding: 60px 0; }
    .tb-ex-cta-title { font-size: 2.4rem; }
    .tb-ex-form-card { padding: 28px 20px; }
    .tb-ex-form-row { grid-template-columns: 1fr; }
    .tb-ex-stats-inner { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
    .tb-ex-stat-num { font-size: 1.8rem; }
    .tb-ex-toast { min-width: unset; left: 16px; right: 16px; }
}

@media (max-width: 480px) {
    .tb-ex-title { font-size: 2.5rem; }
    .tb-ex-card-title { font-size: 1.85rem; }
    .tb-ex-body { padding: 18px 18px 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
    }
