/* ================================================================
   Travel Booking System — Frontend CSS
   Luxury Editorial Design · Theme-Compatible · RTL-Ready
   ================================================================ */

/* Fonts: inherited from theme or loaded dynamically via TB_Theme_Compat */

/* ----------------------------------------------------------------
   CSS Custom Properties — كل الألوان والقيم قابلة للتخصيص
   ---------------------------------------------------------------- */
.tb-plugin-root {
    --tb-ink:         #1c1c28;
    --tb-ink-soft:    #4a4a5a;
    --tb-muted:       #8a8a9a;
    --tb-gold:        #c9a251;
    --tb-gold-light:  #f5edda;
    --tb-teal:        #0b5351;
    --tb-teal-mid:    #1a7a77;
    --tb-teal-light:  #e4f2f1;
    --tb-surface:     #faf8f4;
    --tb-card:        #ffffff;
    --tb-border:      #e8e4dc;
    --tb-success:     #2d7a52;
    --tb-success-bg:  #eaf5ee;
    --tb-error:       #9b2626;
    --tb-error-bg:    #fdeaea;
    --tb-radius-sm:   8px;
    --tb-radius:      16px;
    --tb-radius-lg:   24px;
    --tb-shadow-sm:   0 2px 12px rgba(11,83,81,.07);
    --tb-shadow:      0 8px 32px rgba(11,83,81,.11);
    --tb-shadow-lg:   0 20px 60px rgba(11,83,81,.16);
    --tb-font-body:   inherit, 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --tb-font-display:'Playfair Display', Georgia, serif;
    --tb-transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* Box-sizing scoped — لا يتعارض مع الثيم */
.tb-plugin-root,
.tb-plugin-root *,
.tb-plugin-root *::before,
.tb-plugin-root *::after {
    box-sizing: border-box;
}

/* ----------------------------------------------------------------
   Base Container
   ---------------------------------------------------------------- */
.tb-offer-wrap,
.tb-offers-grid,
.tb-booking-form-wrap {
    font-family: var(--tb-font-body);
    color: var(--tb-ink);
    direction: rtl;
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   Hero Section
   ---------------------------------------------------------------- */
.tb-offer-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: var(--tb-radius-lg);
    margin-bottom: 36px;
}

.tb-hero-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    transform: translateY(0);
    transition: transform .1s linear;
    will-change: transform;
}

.tb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11,45,43,.88) 0%,
        rgba(11,45,43,.3) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 36px;
}

.tb-offer-title {
    font-family: var(--tb-font-display);
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.tb-offer-title em {
    font-style: italic;
    color: #f0d98a;
}

.tb-offer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tb-badge {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.25);
    letter-spacing: .02em;
}

/* ----------------------------------------------------------------
   Layout
   ---------------------------------------------------------------- */
.tb-offer-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 960px) {
    .tb-offer-body { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   Sections
   ---------------------------------------------------------------- */
.tb-section {
    background: var(--tb-card);
    border-radius: var(--tb-radius);
    padding: 28px 30px;
    margin-bottom: 20px;
    box-shadow: var(--tb-shadow-sm);
    border: 1px solid var(--tb-border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.tb-section.tb-visible {
    opacity: 1;
    transform: translateY(0);
}

.tb-section-title {
    font-family: var(--tb-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tb-teal);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--tb-teal-light);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tb-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(to bottom, var(--tb-gold), var(--tb-teal));
    border-radius: 4px;
    flex-shrink: 0;
}

.tb-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--tb-ink-soft);
}

/* ----------------------------------------------------------------
   Accordion — خط سير الرحلة
   ---------------------------------------------------------------- */
.tb-accordion-item {
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--tb-transition);
}

.tb-accordion-item:hover {
    border-color: var(--tb-teal-mid);
    box-shadow: var(--tb-shadow-sm);
}

.tb-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--tb-surface);
    border: none;
    padding: 16px 18px;
    cursor: pointer;
    text-align: right;
    transition: var(--tb-transition);
    font-family: var(--tb-font-body);
    color: var(--tb-ink);
}

.tb-accordion-btn:hover {
    background: var(--tb-teal-light);
}

.tb-accordion-item.open .tb-accordion-btn {
    background: var(--tb-teal-light);
}

.tb-day-num {
    background: linear-gradient(135deg, var(--tb-teal), var(--tb-teal-mid));
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(11,83,81,.3);
}

.tb-day-title {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    color: var(--tb-ink);
}

.tb-accordion-arrow {
    color: var(--tb-teal-mid);
    font-size: 12px;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    margin-right: auto;
}

.tb-accordion-item.open .tb-accordion-arrow {
    transform: rotate(180deg);
}

.tb-accordion-body {
    display: none;
    padding: 20px 22px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--tb-ink-soft);
    border-top: 1px solid var(--tb-border);
}

.tb-accordion-item.open .tb-accordion-body {
    display: block;
}

.tb-activities {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tb-activities li {
    padding: 6px 0 6px 0;
    padding-right: 22px;
    position: relative;
    font-size: 13px;
    color: var(--tb-ink-soft);
}

.tb-activities li::before {
    content: '';
    position: absolute;
    right: 4px;
    top: 14px;
    width: 7px;
    height: 7px;
    background: var(--tb-gold);
    border-radius: 50%;
}

/* ----------------------------------------------------------------
   Includes / Excludes
   ---------------------------------------------------------------- */
.tb-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 600px) {
    .tb-includes-grid { grid-template-columns: 1fr; }
}

.tb-includes-col h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-family: var(--tb-font-body);
}

.tb-included h3 { color: var(--tb-success); }
.tb-excluded h3 { color: var(--tb-error); }

.tb-includes-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tb-includes-col ul li {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: var(--tb-radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-included ul li {
    background: var(--tb-success-bg);
    color: var(--tb-success);
}

.tb-included ul li::before {
    content: '✓';
    font-weight: 900;
    flex-shrink: 0;
}

.tb-excluded ul li {
    background: var(--tb-error-bg);
    color: var(--tb-error);
}

.tb-excluded ul li::before {
    content: '✕';
    font-weight: 900;
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Pricing Table
   ---------------------------------------------------------------- */
.tb-table-wrap {
    overflow-x: auto;
    border-radius: var(--tb-radius-sm);
    box-shadow: 0 0 0 1px var(--tb-border);
}

.tb-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tb-price-table th {
    padding: 13px 16px;
    text-align: center;
    background: var(--tb-teal);
    color: #fff;
    font-weight: 600;
    letter-spacing: .02em;
    font-family: var(--tb-font-body);
}

.tb-price-table th:first-child { border-radius: var(--tb-radius-sm) 0 0 0; }
.tb-price-table th:last-child  { border-radius: 0 var(--tb-radius-sm) 0 0; }

.tb-price-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--tb-border);
    color: var(--tb-ink-soft);
}

.tb-price-table tbody tr:last-child td { border-bottom: none; }
.tb-price-table tbody tr:hover td { background: var(--tb-teal-light); }

.tb-price-highlight {
    color: var(--tb-teal);
    font-weight: 700;
    font-size: 15px;
}

.tb-discount-badge {
    background: var(--tb-gold);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

/* ----------------------------------------------------------------
   Sidebar
   ---------------------------------------------------------------- */
.tb-offer-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 24px;
}

/* Price Card */
.tb-price-card {
    background: linear-gradient(145deg, var(--tb-teal) 0%, #083e3d 100%);
    color: #fff;
    border-radius: var(--tb-radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tb-shadow);
}

.tb-price-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(201,162,81,.12);
    border-radius: 50%;
    pointer-events: none;
}

.tb-price-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.tb-price-old {
    margin: 0 0 4px;
    opacity: .7;
    font-size: 14px;
    text-decoration: line-through;
}

.tb-price-label {
    margin: 0 0 6px;
    font-size: 12px;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tb-price-current {
    font-size: 2.4rem;
    font-weight: 900;
    color: #f0d98a;
    line-height: 1.1;
    margin-bottom: 4px;
}

.tb-price-current span {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: .9;
    margin-right: 4px;
}

/* Info Card */
.tb-info-card {
    background: var(--tb-card);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    padding: 20px 22px;
    box-shadow: var(--tb-shadow-sm);
}

.tb-info-card h4 {
    margin: 0 0 14px;
    color: var(--tb-teal);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tb-border);
    font-family: var(--tb-font-body);
}

.tb-info-card p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--tb-ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-star {
    color: #d4d0c8;
    font-size: 18px;
    line-height: 1;
}

.tb-star.active {
    color: #f0b429;
    text-shadow: 0 0 8px rgba(240,180,41,.4);
}

/* ----------------------------------------------------------------
   Booking Form
   ---------------------------------------------------------------- */
.tb-booking-form-wrap {
    background: var(--tb-card);
    border-radius: var(--tb-radius);
    padding: 26px 24px;
    box-shadow: var(--tb-shadow);
    border: 1px solid var(--tb-border);
}

.tb-form-title {
    font-family: var(--tb-font-display);
    margin: 0 0 4px;
    font-size: 1.35rem;
    color: var(--tb-teal);
    font-weight: 700;
}

.tb-form-subtitle {
    margin: 0 0 20px;
    color: var(--tb-muted);
    font-size: 13px;
}

.tb-form-group {
    margin-bottom: 14px;
    position: relative;
}

.tb-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--tb-ink-soft);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tb-form-group input,
.tb-form-group textarea,
.tb-form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--tb-border);
    border-radius: var(--tb-radius-sm);
    font-size: 14px;
    font-family: var(--tb-font-body);
    color: var(--tb-ink);
    background: var(--tb-surface);
    direction: rtl;
    transition: var(--tb-transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.tb-form-group input:focus,
.tb-form-group textarea:focus,
.tb-form-group select:focus {
    border-color: var(--tb-teal-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,122,119,.12);
}

.tb-form-group input.tb-error,
.tb-form-group textarea.tb-error {
    border-color: var(--tb-error);
    box-shadow: 0 0 0 3px rgba(155,38,38,.1);
}

.tb-field-error {
    font-size: 11px;
    color: var(--tb-error);
    margin-top: 4px;
    display: none;
}

.tb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Contact Method Toggle */
.tb-radio-group {
    display: flex;
    gap: 10px;
}

.tb-radio-label {
    flex: 1;
    text-align: center;
    padding: 11px 8px;
    border: 1.5px solid var(--tb-border);
    border-radius: var(--tb-radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--tb-transition);
    background: var(--tb-surface);
    color: var(--tb-muted);
    user-select: none;
}

.tb-radio-label input[type=radio] { display: none; }

.tb-radio-label.active {
    border-color: var(--tb-teal);
    background: var(--tb-teal-light);
    color: var(--tb-teal);
}

/* Submit Button */
.tb-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--tb-teal) 0%, var(--tb-teal-mid) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--tb-font-body);
    letter-spacing: .04em;
    transition: var(--tb-transition);
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.tb-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.12) 100%);
    opacity: 0;
    transition: opacity .3s;
}

.tb-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,83,81,.35);
}

.tb-submit-btn:hover::after { opacity: 1; }
.tb-submit-btn:active { transform: translateY(0); }
.tb-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Response Messages */
#tb-form-response {
    margin-top: 14px;
    padding: 13px 16px;
    border-radius: var(--tb-radius-sm);
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: tb-fade-in .3s ease;
}

#tb-form-response.success {
    background: var(--tb-success-bg);
    color: var(--tb-success);
    border: 1px solid rgba(45,122,82,.2);
}

#tb-form-response.error {
    background: var(--tb-error-bg);
    color: var(--tb-error);
    border: 1px solid rgba(155,38,38,.2);
}

/* ----------------------------------------------------------------
   Offers Grid — Shortcode
   ---------------------------------------------------------------- */
.tb-offers-grid {
    display: grid;
    gap: 26px;
}

.tb-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tb-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
    .tb-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .tb-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tb-offers-grid { grid-template-columns: 1fr !important; }
}

/* Offer Card */
.tb-offer-card {
    background: var(--tb-card);
    border-radius: var(--tb-radius);
    overflow: hidden;
    box-shadow: var(--tb-shadow-sm);
    border: 1px solid var(--tb-border);
    transition: var(--tb-transition);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

.tb-offer-card.tb-visible {
    opacity: 1;
    transform: translateY(0);
}

.tb-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tb-shadow-lg);
    border-color: rgba(11,83,81,.2);
}

.tb-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--tb-gold), #a07a30);
    color: #fff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 3px 12px rgba(201,162,81,.4);
    letter-spacing: .04em;
}

.tb-card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.tb-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.tb-offer-card:hover .tb-card-img {
    transform: scale(1.06);
}

.tb-card-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11,45,43,.82);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
}

.tb-card-body {
    padding: 20px;
}

.tb-card-destination {
    color: var(--tb-teal-mid);
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 7px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tb-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.35;
}

.tb-card-title a {
    color: var(--tb-ink);
    text-decoration: none;
    transition: color .2s;
}

.tb-card-title a:hover { color: var(--tb-teal); }

.tb-card-desc {
    font-size: 13px;
    color: var(--tb-muted);
    line-height: 1.65;
    margin: 0 0 16px;
}

.tb-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--tb-border);
    gap: 8px;
}

.tb-old-price {
    color: var(--tb-muted);
    font-size: 12px;
    text-decoration: line-through;
    display: block;
    line-height: 1;
}

.tb-new-price {
    color: var(--tb-teal);
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1;
}

.tb-card-btn {
    background: linear-gradient(135deg, var(--tb-teal), var(--tb-teal-mid));
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--tb-transition);
    white-space: nowrap;
    letter-spacing: .02em;
    flex-shrink: 0;
    display: inline-block;
}

.tb-card-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(11,83,81,.3);
}

.tb-no-offers {
    text-align: center;
    padding: 60px 20px;
    color: var(--tb-muted);
    font-size: 15px;
}

/* ----------------------------------------------------------------
   Animations
   ---------------------------------------------------------------- */
@keyframes tb-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes tb-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(11,83,81,.3); }
    50%       { box-shadow: 0 0 0 8px rgba(11,83,81,0); }
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 640px) {
    .tb-offer-hero { height: 320px; border-radius: var(--tb-radius); }
    .tb-hero-overlay { padding: 24px 20px; }
    .tb-section { padding: 20px; }
    .tb-form-row { grid-template-columns: 1fr; }
    .tb-booking-form-wrap { padding: 20px; border-radius: var(--tb-radius); }
    .tb-price-current { font-size: 1.9rem; }
    .tb-offer-sidebar { position: static; }
}

/* ----------------------------------------------------------------
   Dark Mode Support
   ---------------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
    .tb-plugin-root {
        --tb-ink:        #f0ede6;
        --tb-ink-soft:   #b8b5ae;
        --tb-muted:      #7a7a8a;
        --tb-surface:    #1e2a29;
        --tb-card:       #243330;
        --tb-border:     #2e3f3d;
        --tb-teal-light: #1a3533;
        --tb-success-bg: #1a2e22;
        --tb-error-bg:   #2e1a1a;
    }
}

/* ================================================================
   Destination Page Styles
   ================================================================ */

/* Hero */
.tb-dest-hero {
    position: relative;
    height: 500px;
    border-radius: var(--tb-radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
}
.tb-dest-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.tb-dest-hero:hover .tb-dest-hero-img { transform: scale(1); }
.tb-dest-hero-placeholder { background: linear-gradient(135deg, var(--tb-teal), var(--tb-teal-mid)); }
.tb-dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,28,26,.92) 0%, rgba(8,28,26,.4) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 36px;
}
.tb-dest-hero-content { color: #fff; width: 100%; }
.tb-dest-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 14px;
    opacity: .8;
}
.tb-dest-breadcrumb a { color: #fff; text-decoration: none; }
.tb-dest-breadcrumb a:hover { opacity: .8; }
.tb-dest-title {
    font-family: var(--tb-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 8px;
    line-height: 1.15;
}
.tb-dest-country { font-size: 16px; opacity: .85; margin: 0 0 20px; }
.tb-dest-hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.tb-hero-stat { text-align: center; }
.tb-hero-stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: #f0d98a; line-height: 1; }
.tb-hero-stat-lbl { display: block; font-size: 12px; opacity: .75; margin-top: 3px; }

/* Body layout */
.tb-dest-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
@media (max-width: 960px) { .tb-dest-body { grid-template-columns: 1fr; } }

/* About */
.tb-dest-desc { font-size: 15px; line-height: 1.95; color: var(--tb-ink-soft); }

/* Highlights grid */
.tb-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.tb-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius-sm);
    background: var(--tb-surface);
    transition: var(--tb-transition);
}
.tb-highlight-card:hover { border-color: var(--tb-teal-mid); box-shadow: var(--tb-shadow-sm); transform: translateY(-2px); }
.tb-highlight-icon { font-size: 22px; flex-shrink: 0; }
.tb-highlight-body h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; color: var(--tb-ink); }
.tb-highlight-body p  { font-size: 12px; color: var(--tb-muted); margin: 0; line-height: 1.5; }

/* Gallery */
.tb-dest-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.tb-gallery-item {
    position: relative;
    height: 130px;
    border-radius: var(--tb-radius-sm);
    overflow: hidden;
    display: block;
}
.tb-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tb-gallery-item:hover img { transform: scale(1.08); }
.tb-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(11,45,43,.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
    font-size: 24px;
}
.tb-gallery-item:hover .tb-gallery-overlay { opacity: 1; }

/* Travel Tip */
.tb-dest-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--tb-gold-light);
    border-radius: var(--tb-radius-sm);
    border-right: 4px solid var(--tb-gold);
    margin-bottom: 20px;
}
.tb-dest-tip-icon { font-size: 22px; flex-shrink: 0; }
.tb-dest-tip strong { display: block; font-size: 14px; color: var(--tb-ink); margin-bottom: 4px; }
.tb-dest-tip p { font-size: 13px; color: var(--tb-ink-soft); margin: 0; line-height: 1.6; }

/* Offers section header */
.tb-offers-section { padding: 28px 30px; }
.tb-offers-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tb-offers-count-badge {
    display: inline-block;
    background: var(--tb-teal-light);
    color: var(--tb-teal);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-right: 10px;
    font-family: var(--tb-font-body);
}

/* Filter Bar */
.tb-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 20px;
    background: var(--tb-surface);
    border-radius: var(--tb-radius-sm);
    border: 1px solid var(--tb-border);
    margin-bottom: 24px;
    align-items: flex-end;
}
.tb-filter-group { display: flex; flex-direction: column; gap: 6px; }
.tb-filter-label { font-size: 11px; font-weight: 700; color: var(--tb-muted); letter-spacing: .05em; text-transform: uppercase; }
.tb-filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tb-chip {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--tb-border);
    background: var(--tb-card);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--tb-font-body);
    color: var(--tb-ink-soft);
    cursor: pointer;
    transition: var(--tb-transition);
    white-space: nowrap;
}
.tb-chip:hover { border-color: var(--tb-teal-mid); color: var(--tb-teal); }
.tb-chip-active { border-color: var(--tb-teal); background: var(--tb-teal-light); color: var(--tb-teal); }
.tb-price-range {
    width: 200px;
    accent-color: var(--tb-teal);
    cursor: pointer;
}
.tb-sort-select {
    padding: 6px 12px;
    border: 1.5px solid var(--tb-border);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--tb-font-body);
    color: var(--tb-ink);
    background: var(--tb-card);
    outline: none;
    cursor: pointer;
    min-width: 160px;
    -webkit-appearance: none;
    appearance: none;
}
.tb-sort-select:focus { border-color: var(--tb-teal-mid); }
.tb-reset-btn {
    padding: 7px 16px;
    border: 1.5px solid var(--tb-border);
    border-radius: 8px;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--tb-font-body);
    color: var(--tb-muted);
    cursor: pointer;
    transition: var(--tb-transition);
    align-self: flex-end;
}
.tb-reset-btn:hover { border-color: var(--tb-error); color: var(--tb-error); }

/* Grid loading state */
.tb-grid-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: var(--tb-muted);
    font-size: 14px;
}
.tb-grid-loading::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border: 3px solid var(--tb-border);
    border-top-color: var(--tb-teal);
    border-radius: 50%;
    animation: tb-spin .7s linear infinite;
    margin: 0 auto 12px;
}
@keyframes tb-spin { to { transform: rotate(360deg); } }

/* No offers state */
.tb-no-offers-dest {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--tb-muted);
}
.tb-no-offers-icon { font-size: 40px; margin-bottom: 12px; }
.tb-no-offers-dest p { font-size: 15px; margin-bottom: 14px; }
.tb-btn-ghost {
    padding: 9px 20px;
    border: 1.5px solid var(--tb-teal);
    border-radius: 8px;
    color: var(--tb-teal);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--tb-font-body);
    cursor: pointer;
    transition: var(--tb-transition);
}
.tb-btn-ghost:hover { background: var(--tb-teal-light); }

/* Category badge on card */
.tb-card-category-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    background: var(--tb-teal-light);
    color: var(--tb-teal);
    border-radius: 20px;
    margin-bottom: 7px;
    letter-spacing: .02em;
}

/* Card placeholder (no image) */
.tb-card-img-placeholder {
    background: linear-gradient(135deg, var(--tb-teal-light), var(--tb-surface));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Load more */
.tb-load-more-wrap { text-align: center; margin-top: 28px; }
.tb-load-more-btn {
    padding: 12px 36px;
    border: 2px solid var(--tb-teal);
    border-radius: 10px;
    background: transparent;
    color: var(--tb-teal);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--tb-font-body);
    cursor: pointer;
    transition: var(--tb-transition);
}
.tb-load-more-btn:hover { background: var(--tb-teal); color: #fff; }

/* Sidebar */
.tb-dest-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 24px; }

.tb-dest-info-card {
    background: var(--tb-card);
    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);
    padding: 20px 22px;
    box-shadow: var(--tb-shadow-sm);
}
.tb-dest-info-title {
    font-family: var(--tb-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--tb-teal);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tb-teal-light);
}
.tb-dest-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.tb-dest-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--tb-border);
    font-size: 13px;
}
.tb-dest-info-list li:last-child { border-bottom: none; }
.tb-info-icon { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.tb-info-lbl { color: var(--tb-muted); flex: 1; }
.tb-info-val { font-weight: 600; color: var(--tb-ink); text-align: left; }

.tb-dest-visa-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--tb-radius-sm);
    border: 1.5px solid;
}
.tb-visa-icon { font-size: 24px; flex-shrink: 0; }
.tb-dest-visa-card strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.tb-dest-visa-card p { margin: 3px 0 0; font-weight: 700; font-size: 14px; }

.tb-dest-cta-card {
    background: linear-gradient(145deg, var(--tb-teal), #083e3d);
    color: #fff;
    border-radius: var(--tb-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--tb-shadow);
}
.tb-cta-icon { font-size: 30px; margin-bottom: 10px; }
.tb-dest-cta-card h4 { font-family: var(--tb-font-display); font-size: 18px; margin: 0 0 6px; }
.tb-dest-cta-card p { font-size: 13px; opacity: .8; margin: 0 0 16px; }
.tb-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #f0d98a;
    color: #1c1c28 !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--tb-transition);
}
.tb-cta-btn:hover { background: #fff; }

/* Responsive */
@media (max-width: 640px) {
    .tb-dest-hero { height: 340px; }
    .tb-dest-hero-overlay { padding: 24px 20px; }
    .tb-dest-sidebar { position: static; }
    .tb-filter-bar { flex-direction: column; align-items: stretch; }
    .tb-price-range { width: 100%; }
    .tb-sort-select { width: 100%; }
    .tb-highlights-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   DESTINATIONS ARCHIVE PAGE
   ================================================================ */

.tb-archive-root {
    font-family: var(--tb-font-body);
    direction: rtl;
    color: var(--tb-ink);
    background: var(--tb-surface);
}

/* ────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────── */
.tb-arch-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.tb-arch-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(11,83,81,.85) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(201,162,81,.35) 0%, transparent 65%),
        linear-gradient(160deg, #0b3533 0%, #0d1f1e 60%, #1a1209 100%);
}

/* Grain overlay */
.tb-arch-hero-grain {
    position: absolute;
    inset: 0;
    opacity: .055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

/* Decorative diagonal line */
.tb-arch-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 80px;
    background: var(--tb-surface);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 40%);
}

.tb-arch-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 120px;
}

.tb-arch-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tb-gold);
    background: rgba(201,162,81,.12);
    border: 1px solid rgba(201,162,81,.3);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    animation: tbFadeDown .7s ease both;
}

.tb-arch-title {
    font-family: var(--tb-font-display);
    color: #fff;
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -.03em;
    text-shadow: 0 4px 40px rgba(0,0,0,.35);
    animation: tbFadeDown .75s .12s ease both;
}

.tb-arch-title em {
    font-style: italic;
    color: var(--tb-gold);
    display: block;
}

.tb-arch-subtitle {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    margin: 0 0 36px;
    animation: tbFadeDown .75s .22s ease both;
}

.tb-arch-hero-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,.45);
    font-size: 12px;
    letter-spacing: .08em;
    animation: tbFadeDown .75s .35s ease both;
}

.tb-scroll-indicator {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.tb-scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 4px;
    animation: tbScrollBounce 1.8s ease-in-out infinite;
}

/* Floating Stats */
.tb-arch-floating-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: 14px 32px;
    animation: tbFadeDown .75s .45s ease both;
    white-space: nowrap;
}

.tb-fstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 24px;
}

.tb-fstat-num {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.tb-fstat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    letter-spacing: .06em;
}

.tb-fstat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}

/* ────────────────────────────────────────────
   FILTER BAR
   ──────────────────────────────────────────── */
.tb-arch-filter-wrap {
    background: var(--tb-card);
    border-bottom: 1px solid var(--tb-border);
    position: relative;
    z-index: 50;
    transition: box-shadow .25s;
}

.tb-arch-filter-wrap.tb-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 24px rgba(11,83,81,.12);
}

.tb-arch-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tb-arch-search-wrap {
    position: relative;
    max-width: 400px;
}

.tb-arch-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    pointer-events: none;
}

.tb-arch-search {
    width: 100%;
    padding: 10px 42px 10px 16px;
    border: 1.5px solid var(--tb-border);
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    color: var(--tb-ink);
    background: var(--tb-surface);
    transition: border-color .2s, box-shadow .2s;
    direction: rtl;
}

.tb-arch-search:focus {
    outline: none;
    border-color: var(--tb-teal-mid);
    box-shadow: 0 0 0 3px rgba(26,122,119,.1);
    background: #fff;
}

.tb-arch-chips-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tb-arch-filter-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--tb-muted);
    letter-spacing: .06em;
    white-space: nowrap;
    min-width: 60px;
}

.tb-arch-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tb-arch-chip {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--tb-border);
    background: #fff;
    color: var(--tb-ink-soft);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.tb-arch-chip:hover {
    border-color: var(--tb-teal-mid);
    color: var(--tb-teal);
    background: var(--tb-teal-light);
}

.tb-arch-chip.active {
    background: var(--tb-teal);
    border-color: var(--tb-teal);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(11,83,81,.25);
}

.tb-arch-filter-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
    border-top: 1px dashed var(--tb-border);
}

.tb-arch-results-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--tb-teal);
}

.tb-arch-sort {
    padding: 7px 14px;
    border: 1.5px solid var(--tb-border);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: var(--tb-ink);
    background: #fff;
    cursor: pointer;
    direction: rtl;
}

/* ────────────────────────────────────────────
   GRID
   ──────────────────────────────────────────── */
.tb-arch-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 80px;
}

.tb-arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    transition: opacity .25s;
}

/* ────────────────────────────────────────────
   DESTINATION CARD
   ──────────────────────────────────────────── */
.tb-arch-dest-card {
    background: var(--tb-card);
    border-radius: var(--tb-radius);
    overflow: hidden;
    border: 1px solid var(--tb-border);
    box-shadow: var(--tb-shadow-sm);
    transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

.tb-arch-dest-card.tb-card-in {
    animation: tbCardReveal .55s cubic-bezier(.22,.68,0,1.1) forwards;
}

.tb-arch-dest-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--tb-shadow-lg);
    z-index: 2;
}

/* صورة الكارت */
.tb-arch-card-img-wrap {
    display: block;
    position: relative;
    height: 230px;
    overflow: hidden;
    text-decoration: none;
}

.tb-arch-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22,.68,0,1.1);
    display: block;
}

.tb-arch-dest-card:hover .tb-arch-card-img {
    transform: scale(1.07);
}

.tb-arch-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tb-teal-light), #e8f4f3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* Overlay تدرج من الأسفل */
.tb-arch-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11,45,43,.82) 0%,
        rgba(11,45,43,.2) 45%,
        transparent 70%
    );
    transition: opacity .35s;
}

.tb-arch-dest-card:hover .tb-arch-card-overlay {
    opacity: .75;
}

/* شارات أعلى الصورة */
.tb-arch-card-badges-top {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.tb-arch-visa-badge {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.tb-arch-season-badge {
    font-size: 16px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* اسم الوجهة فوق الصورة */
.tb-arch-card-name-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px 18px 18px;
}

.tb-arch-card-name {
    font-family: var(--tb-font-display);
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.tb-arch-card-country {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    font-weight: 600;
    letter-spacing: .03em;
}

/* Body الكارت */
.tb-arch-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* تقييم + حرارة */
.tb-arch-card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tb-arch-rating { display: flex; gap: 2px; }

.tb-arch-star {
    font-size: 13px;
    color: var(--tb-border);
    transition: color .2s;
}

.tb-arch-star.on { color: var(--tb-gold); }

.tb-arch-temp {
    font-size: 12px;
    color: var(--tb-muted);
    background: var(--tb-surface);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid var(--tb-border);
}

/* وصف */
.tb-arch-card-desc {
    font-size: 13.5px;
    color: var(--tb-ink-soft);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* معالم */
.tb-arch-highlights {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tb-arch-hl-tag {
    font-size: 11.5px;
    padding: 3px 10px;
    background: var(--tb-teal-light);
    color: var(--tb-teal);
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(11,83,81,.12);
}

/* Footer الكارت */
.tb-arch-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--tb-border);
    margin-top: auto;
}

.tb-arch-card-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tb-arch-offers-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--tb-teal);
}

.tb-arch-offers-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tb-teal-mid);
    animation: tbPulse 2s ease-in-out infinite;
}

.tb-arch-price-from {
    font-size: 12px;
    color: var(--tb-muted);
}

.tb-arch-price-from strong {
    color: var(--tb-ink);
    font-size: 14px;
}

.tb-arch-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--tb-teal);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.tb-arch-card-btn span {
    transition: transform .2s;
}

.tb-arch-card-btn:hover {
    background: var(--tb-teal-mid);
    box-shadow: 0 4px 16px rgba(11,83,81,.3);
}

.tb-arch-card-btn:hover span {
    transform: translateX(-4px);
}

/* ────────────────────────────────────────────
   SKELETON
   ──────────────────────────────────────────── */
.tb-arch-skeleton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tb-arch-skel-card {
    background: var(--tb-card);
    border-radius: var(--tb-radius);
    overflow: hidden;
    border: 1px solid var(--tb-border);
}

.tb-skel-img {
    height: 230px;
    background: linear-gradient(90deg, #f0ede6 25%, #e8e4dc 50%, #f0ede6 75%);
    background-size: 200% 100%;
    animation: tbShimmer 1.5s infinite;
}

.tb-skel-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }

.tb-skel-line {
    border-radius: 6px;
    background: linear-gradient(90deg, #f0ede6 25%, #e8e4dc 50%, #f0ede6 75%);
    background-size: 200% 100%;
    animation: tbShimmer 1.5s infinite;
}

.tb-skel-title { height: 18px; width: 70%; }
.tb-skel-sub   { height: 14px; width: 50%; }
.tb-skel-sm    { height: 12px; width: 40%; }

/* ────────────────────────────────────────────
   EMPTY STATE
   ──────────────────────────────────────────── */
.tb-arch-empty {
    flex-direction: column;
    align-items: center;
    padding: 80px 24px;
    text-align: center;
    grid-column: 1 / -1;
}

.tb-empty-icon { font-size: 52px; margin-bottom: 16px; opacity: .5; }

.tb-arch-empty h3 {
    font-size: 1.2rem;
    color: var(--tb-ink);
    margin: 0 0 8px;
}

.tb-arch-empty p {
    color: var(--tb-muted);
    font-size: 14px;
    margin: 0 0 24px;
}

.tb-arch-reset-btn {
    padding: 10px 28px;
    background: var(--tb-teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    font-weight: 700;
    transition: background .2s;
}

.tb-arch-reset-btn:hover { background: var(--tb-teal-mid); }

/* ────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────── */
@keyframes tbFadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes tbCardReveal {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes tbShimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

@keyframes tbScrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: .4; }
}

@keyframes tbPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.8); }
}

/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tb-arch-grid, .tb-arch-skeleton { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tb-arch-hero { min-height: 420px; }
    .tb-arch-floating-stats { padding: 10px 18px; bottom: 48px; }
    .tb-fstat { padding: 0 14px; }
    .tb-fstat-num { font-size: 18px; }
    .tb-arch-filter-inner { padding: 16px 18px; }
    .tb-arch-body { padding: 28px 18px 60px; }
    .tb-arch-grid, .tb-arch-skeleton { grid-template-columns: 1fr; gap: 20px; }
    .tb-arch-chip { font-size: 12px; padding: 5px 12px; }
    .tb-arch-card-img-wrap { height: 200px; }
}

