﻿/* ==============================================
   SAMRA — responsive.css  |  CLEAN VERSION
   ============================================== */

/* ══════════════════════════════════════════════
   ❶ LANGUAGE DISPLAY FIX — RTL/LTR
   ══════════════════════════════════════════════ */

[dir="rtl"] .lbl-en {
    display: none !important;
}

[dir="rtl"] .lbl-ar {
    display: inline !important;
}

[dir="ltr"] .lbl-ar {
    display: none !important;
}

[dir="ltr"] .lbl-en {
    display: inline !important;
}

/* ══════════════════════════════════════════════
   ❷ SEARCH BOX THEME FIXES
   ══════════════════════════════════════════════ */

.search-box {
    background: rgba(20, 15, 10, 0.92) !important;
}

[data-theme="light"] .search-box {
    background: rgba(255, 248, 238, 0.97) !important;
    border-color: rgba(156, 107, 46, 0.4) !important;
}

[data-theme="light"] .search-label {
    color: #1F2933 !important;
}

[data-theme="light"] .search-label-bar {
    border-color: #AD6029 !important;
}

[data-theme="light"] .search-field {
    background: rgba(255,255,255,0.85) !important;
    border-color: rgba(156,107,46,0.35) !important;
}

    [data-theme="light"] .search-field:focus-within {
        background: rgba(255,255,255,0.95) !important;
    }

    [data-theme="light"] .search-field > svg {
        color: #9C6137 !important;
    }

    [data-theme="light"] .search-field select,
    [data-theme="light"] .search-field input {
        color: #1F2933 !important;
    }

        [data-theme="light"] .search-field select option {
            background: #fff8ee !important;
            color: #1F2933 !important;
        }

        [data-theme="light"] .search-field input::placeholder {
            color: rgba(31,41,51,0.5) !important;
        }

[data-theme="light"] .field-divider {
    background: rgba(156,107,46,0.3) !important;
}

/* ══════════════════════════════════════════════
   ❸ DRP (DATE RANGE PICKER) STYLES
   ══════════════════════════════════════════════ */

.drp-wrap {
    position: relative;
    flex: 1.4 !important;
}

#drp-text {
    flex: 1;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    background: none;
    border: none;
    outline: none;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(200, 162, 122, 0.45);
    transition: color 0.2s;
    user-select: none;
}

    #drp-text.has-value {
        color: #D9D9D9;
    }

[data-theme="light"] #drp-text {
    color: rgba(31,41,51,0.45);
}

    [data-theme="light"] #drp-text.has-value {
        color: #1F2933;
    }

.drp-popup {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    z-index: 99999;
    background: rgba(20, 15, 10, 0.98);
    border: 1px solid var(--gold, #C8A27A);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.65);
    display: none;
    font-family: 'Tajawal', sans-serif;
    width: 280px;
    max-width: calc(100vw - 20px);
}

    .drp-popup.show {
        display: block;
        animation: drpFadeIn .2s ease both;
    }

    .drp-popup[dir="rtl"] {
        right: 0;
        left: auto;
        direction: rtl;
    }

    .drp-popup[dir="ltr"] {
        right: auto;
        left: 0;
        direction: ltr;
    }

[data-theme="light"] .drp-popup {
    background: rgba(255,248,238,0.98);
    border-color: rgba(156,107,46,0.35);
    box-shadow: 0 12px 48px rgba(60,35,10,0.18);
}

@keyframes drpFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drp-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.drp-nav-spacer {
    flex: 1;
}

.drp-nav {
    background: rgba(200,162,122,0.12);
    border: none;
    border-radius: 7px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold, #C8A27A);
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

    .drp-nav:hover {
        background: var(--gold, #C8A27A);
        color: #fff;
    }

[data-theme="light"] .drp-nav:hover {
    background: #AD6029;
    color: #fff;
}

.drp-months, .drp-month {
    width: 100%;
}

.drp-cal-title {
    text-align: center;
    margin-bottom: 10px;
}

.drp-mname {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold, #C8A27A);
}

.drp-myear {
    font-size: 11px;
    color: rgba(200,162,122,0.6);
}

[data-theme="light"] .drp-mname {
    color: #AD6029;
}

[data-theme="light"] .drp-myear {
    color: rgba(156,107,46,0.55);
}

.drp-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 2px;
    margin-top: 6px;
}

.drp-popup[dir="rtl"] .drp-grid {
    direction: rtl;
}

.drp-popup[dir="ltr"] .drp-grid {
    direction: ltr;
}

.drp-dow {
    text-align: center;
    font-size: 10px;
    color: rgba(200,162,122,0.55);
    padding: 4px 0;
    font-weight: 600;
}

[data-theme="light"] .drp-dow {
    color: rgba(156,107,46,0.5);
}

.drp-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #D9D9D9;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    position: relative;
    user-select: none;
}

    .drp-day:hover:not(.past):not(.empty) {
        background: rgba(200,162,122,0.2);
    }

    .drp-day.empty {
        cursor: default;
        pointer-events: none;
    }

    .drp-day.past {
        color: rgba(200,162,122,0.2);
        cursor: not-allowed;
        pointer-events: none;
    }

    .drp-day.today {
        color: var(--gold, #C8A27A);
        font-weight: 700;
    }

[data-theme="light"] .drp-day {
    color: #1F2933;
}

    [data-theme="light"] .drp-day:hover:not(.past):not(.empty) {
        background: rgba(156,107,46,0.18);
    }

    [data-theme="light"] .drp-day.past {
        color: rgba(156,107,46,0.2);
    }

    [data-theme="light"] .drp-day.today {
        color: #69452B;
    }

/* Selection RTL */
.drp-popup[dir="rtl"] .drp-day.sel-start {
    background: var(--gold-grad);
    color: #fff;
    font-weight: 700;
    border-radius: 0 6px 6px 0;
    z-index: 1;
}

.drp-popup[dir="rtl"] .drp-day.sel-end {
    background: var(--gold-grad);
    color: #fff;
    font-weight: 700;
    border-radius: 6px 0 0 6px;
    z-index: 1;
}

.drp-popup[dir="rtl"] .drp-day.sel-start.sel-end {
    border-radius: 6px;
}
/* Selection LTR */
.drp-popup[dir="ltr"] .drp-day.sel-start {
    background: var(--gold-grad);
    color: #fff;
    font-weight: 700;
    border-radius: 6px 0 0 6px;
    z-index: 1;
}

.drp-popup[dir="ltr"] .drp-day.sel-end {
    background: var(--gold-grad);
    color: #fff;
    font-weight: 700;
    border-radius: 0 6px 6px 0;
    z-index: 1;
}

.drp-popup[dir="ltr"] .drp-day.sel-start.sel-end {
    border-radius: 6px;
}

.drp-day.in-range {
    background: rgba(200,162,122,0.14);
    border-radius: 0;
    color: #D9D9D9;
}

[data-theme="light"] .drp-day.in-range {
    background: rgba(156,107,46,0.1);
    color: #1F2933;
}

.drp-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(200,162,122,0.2);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

[data-theme="light"] .drp-footer {
    border-top-color: rgba(156,107,46,0.2);
}

.drp-summary {
    font-size: 12px;
    color: rgba(200,162,122,0.85);
    font-family: 'Tajawal', sans-serif;
    flex: 1;
}

[data-theme="light"] .drp-summary {
    color: #69452B;
}

.drp-clear {
    background: transparent;
    border: 1px solid rgba(200,162,122,0.3);
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--gold, #C8A27A);
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: background 0.2s;
}

    .drp-clear:hover {
        background: rgba(200,162,122,0.12);
    }

[data-theme="light"] .drp-clear {
    border-color: rgba(156,107,46,0.35);
    color: #69452B;
}

    [data-theme="light"] .drp-clear:hover {
        background: rgba(156,107,46,0.08);
    }

/* ══════════════════════════════════════════════
   ❹ HERO CATS MOBILE WRAP (desktop: hidden)
   ══════════════════════════════════════════════ */
.hero-cats-mobile-wrap {
    display: none;
}

/* ══════════════════════════════════════════════
   ❺ MOBILE — ≤ 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Topbar ── */
    .topbar {
        height: auto;
        min-height: 36px;
        padding: 6px 16px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .topbar-left {
        gap: 8px;
        order: 1;
    }

    .topbar-social {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 16px;
        padding: 4px 0;
        border-top: 1px solid var(--border);
        display: flex;
    }

    .topbar-phone {
        order: 2;
        font-size: 12px;
    }

        .topbar-phone svg {
            width: 13px;
            height: 13px;
        }

    /* ── Navbar ── */
    .navbar {
        height: auto;
        min-height: 60px;
        padding: 10px 16px;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .nav-brand {
        grid-column: 1;
        grid-row: 1;
    }

    [dir="rtl"] .nav-brand {
        grid-column: 2;
        justify-self: end;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: var(--bg-card);
        padding: 10px;
        border-radius: 10px;
        order: 3;
        gap: 5px;
    }

        .nav-links .nav-link {
            text-align: center;
            width: 100%;
            padding: 8px;
        }

    .nav-link::after {
        display: none;
    }

    .nav-signin-wrap {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    [dir="rtl"] .nav-signin-wrap {
        grid-column: 1;
        justify-self: start;
    }

    .nav-brand-text {
        font-size: 20px;
    }

    .nav-brand-subtext {
        font-size: 9px;
    }

    .nav-brand-img {
        width: 36px;
        height: 36px;
    }

    .nav-link.btn-signin {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* ── Hero ── */
    .hero {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        display: block !important;
    }

    .hero-carousel {
        position: relative !important;
        width: 100%;
        height: 420px;
        z-index: 0;
    }

    .hero-carousel-slide {
        position: absolute;
        inset: 0;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        height: 420px;
        z-index: 1;
    }

    .hero-cats {
        display: none !important;
    }

    .hero-content {
        position: absolute !important;
        bottom: 80px !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 16px !important;
        z-index: 5 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 10px !important;
        max-width: 100% !important;
    }

    .hero-accent-line {
        width: 0;
        height: 60px;
        border-left-width: 4px !important;
        border-right: none !important;
        flex-shrink: 0;
    }

    [dir="rtl"] .hero-accent-line {
        border-left: none !important;
        border-right-width: 4px !important;
        order: 2;
    }

    [dir="rtl"] .hero-text {
        order: 1;
    }

    .hero-tagline {
        font-size: 14px !important;
        line-height: 1.4 !important;
        animation: none !important;
        opacity: 1 !important;
    }

    .hero-title {
        font-size: 20px !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
        animation: none !important;
        opacity: 1 !important;
    }

    /* ── Hero Cats Mobile (أفقية) ── */
    .hero-cats-mobile-wrap {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        padding: 12px 12px 0 !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        background: var(--bg) !important;
        width: 100% !important;
    }

        .hero-cats-mobile-wrap::-webkit-scrollbar {
            display: none;
        }

    .cat-card-h {
        flex: 0 0 calc(25% - 6px) !important;
        min-width: 76px !important;
        height: 100px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        position: relative !important;
        border: 1.5px solid rgba(200,162,122,0.55) !important;
        text-decoration: none !important;
        display: block !important;
        flex-shrink: 0 !important;
        background: #1a1a1a !important;
    }

        .cat-card-h img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            display: block !important;
        }

        .cat-card-h .cat-lbl {
            position: absolute !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            background: rgba(0,0,0,0.5) !important;
            backdrop-filter: blur(4px) !important;
            color: #fff !important;
            font-family: 'Tajawal', sans-serif !important;
            font-size: 12px !important;
            font-weight: 500 !important;
            text-align: center !important;
            padding: 5px 4px !important;
        }

    /* ── Search Wrap ── */
    .search-wrap {
        position: relative !important;
        bottom: auto !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        padding: 12px 12px !important;
        margin-top: 0 !important;
        filter: none !important;
        z-index: 10 !important;
        background: var(--bg) !important;
    }

    .search-box {
        padding: 16px 14px !important;
        min-height: auto !important;
        border-radius: 14px !important;
        gap: 10px !important;
        align-items: stretch !important;
        background: rgba(20,15,10,0.96) !important;
        border: 1px solid rgba(200,162,122,0.55) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    [data-theme="light"] .search-box {
        background: rgba(255,248,238,0.97) !important;
        border-color: rgba(156,107,46,0.4) !important;
    }

    .search-label {
        font-size: 15px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        gap: 10px !important;
        color: #fff !important;
    }

    [data-theme="light"] .search-label {
        color: #1F2933 !important;
    }

    .search-label-bar {
        height: 22px !important;
        flex-shrink: 0 !important;
    }

    .search-bar {
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }

    [dir="rtl"] .search-bar {
        flex-direction: column !important;
    }

    .search-field {
        width: 100% !important;
        flex: unset !important;
        height: 50px !important;
        padding: 0 14px !important;
        border-radius: 10px !important;
    }

    .drp-wrap {
        flex: unset !important;
        width: 100% !important;
    }

    #drp-text {
        font-size: 15px !important;
    }

    .btn-search {
        width: 100% !important;
        height: 52px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        font-family: 'Tajawal', sans-serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
    }

        .btn-search::after {
            content: 'بحث';
            color: #fff;
            font-family: 'Tajawal', sans-serif;
            font-size: 18px;
            font-weight: 700;
        }

    [dir="ltr"] .btn-search::after {
        content: 'Search';
    }

    .btn-search svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* DRP + Bk + Loc — bottom sheet */
    .drp-popup,
    .drp-popup[dir="rtl"],
    .drp-popup[dir="ltr"],
    .bk-panel,
    .loc-panel {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 20px 20px 0 0 !important;
        z-index: 999999 !important;
        padding-bottom: env(safe-area-inset-bottom, 16px) !important;
    }

        .bk-panel::before, .loc-panel::before {
            display: none !important;
        }

    /* ══════════════════════════════════════
       CATS BAR — ONE CLEAN DEFINITION
    ══════════════════════════════════════ */
    .cats-bar-wrap {
        padding: 0 12px 14px !important;
        margin-top: 0 !important;
        background: var(--bg) !important;
    }

    .cats-bar-inner {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        border-radius: 14px !important;
        min-height: auto !important;
        overflow: hidden !important;
    }

    .cats-bar-viewport {
        flex: 1 !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }

    .cats-bar-track {
        display: flex !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }

    .cats-bar-arrow {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }

        .cats-bar-arrow svg {
            width: 16px !important;
            height: 16px !important;
        }

    .cat-bar-pill {
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 7px !important;
        padding: 8px 14px !important;
        border-radius: 50px !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        height: 44px !important;
        /* ✅ المهم جداً: شيل الـ fixed width */
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important; /* ← مش 50px */
    }

    .cat-bar-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;
        min-height: 28px !important;
        max-height: 28px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

        .cat-bar-icon svg {
            width: 15px !important;
            height: 15px !important;
            min-width: 15px !important;
            display: block !important;
            flex-shrink: 0 !important;
        }

    .cat-bar-label {
        font-size: 14px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
        display: inline !important; /* ← شيل أي display:none */
    }

    /* ── Services ── */
    .services-section {
        padding: 20px 12px 28px !important;
    }

    .services-grid {
        flex-direction: column;
        gap: 14px;
    }

    .service-card {
        padding: 20px 16px;
        border-radius: 12px;
        gap: 14px;
    }

    .service-card-icon {
        width: 26px;
        height: 26px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-text {
        font-size: 15px;
    }

    .service-card-list {
        gap: 8px;
    }

    /* ── Offers ── */
    .offers-inner {
        flex-direction: column !important;
        gap: 24px;
        padding: 40px 16px !important;
    }

    .offers-collage {
        display: none;
    }

    .offers-content {
        max-width: 100%;
        gap: 20px;
        align-items: stretch !important;
    }

    .offers-title {
        font-size: 24px;
    }

    .offers-desc {
        font-size: 16px;
        line-height: 1.7;
    }

    .btn-gold {
        width: 100%;
        height: 50px;
        font-size: 17px;
        border-radius: 10px;
    }

    /* ── Partners ── */
    .partners-section {
        padding: 36px 12px;
    }

    .partners-title {
        font-size: 20px;
    }

    .partners-logos {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
    }

    .partner-logo-card {
        flex: unset;
        height: 76px;
        padding: 10px 8px;
        border-radius: 10px;
    }

    /* ── Units ── */
    .units-section {
        padding: 36px 12px;
    }

    .units-inner {
        gap: 28px;
        padding: 0;
    }

    .section-title-center {
        font-size: 22px;
    }

    .section-desc-center {
        font-size: 15px;
    }

    .units-carousel-wrap {
        overflow: visible;
    }

    .units-grid {
        display: flex;
        flex-direction: row;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
        transition: none !important;
    }

        .units-grid::-webkit-scrollbar {
            display: none;
        }

    .unit-card {
        flex: 0 0 calc(100vw - 56px);
        scroll-snap-align: start;
    }

    .unit-card-img-wrap {
        height: 210px;
    }

    .unit-card-name {
        font-size: 16px;
    }

    .unit-card-location span, .unit-price-text, .unit-price-currency {
        font-size: 14px;
    }

    .carousel-arrow {
        display: none !important;
    }

    /* ── About ── */
    .about-section {
        padding: 44px 12px;
    }

    .about-inner {
        flex-direction: column !important;
        gap: 24px;
    }

    .about-img-frame {
        width: 100%;
        max-width: 300px;
        height: 240px;
        margin: 0 auto;
    }

    .about-img-main {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-diamond-ring-1, .about-diamond-ring-2 {
        display: none;
    }

    .about-content {
        gap: 18px;
        align-items: stretch !important;
    }

    .about-title {
        font-size: 26px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    /* ── Contact ── */
    .contact-section {
        padding: 44px 12px;
    }

    .contact-inner {
        flex-direction: column !important;
        gap: 28px;
    }

    .contact-content {
        width: 100%;
        align-items: stretch !important;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 14px;
    }

    .contact-info-item {
        align-items: flex-end !important;
    }

    [dir="ltr"] .contact-info-item {
        align-items: flex-start !important;
    }

    .contact-info-label-text {
        font-size: 17px;
    }

    .contact-info-value {
        font-size: 15px;
    }

    .contact-info-label svg {
        width: 20px;
        height: 20px;
    }

    .contact-btns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-gold-sm {
        height: 50px;
        font-size: 16px;
        padding: 0 16px;
    }

    .btn-gold-wide {
        height: 50px;
        font-size: 16px;
        flex: 1;
        min-width: 130px;
    }

    /* ── App ── */
    .app-section {
        padding: 44px 12px;
    }

    .app-inner, [dir="ltr"] .app-inner, [dir="rtl"] .app-inner {
        flex-direction: column !important;
        gap: 28px;
        align-items: center;
    }

    .app-phone-wrap {
        width: 200px;
        height: 260px;
    }

    .app-phone-img {
        width: 170px;
    }

    .app-blob {
        width: 200px;
        height: 190px;
    }

    .app-glow {
        width: 260px;
        height: 260px;
    }

    .app-content, [dir="rtl"] .app-content, [dir="ltr"] .app-content {
        align-items: center;
        width: 100%;
    }

    .app-title, [dir="rtl"] .app-title, [dir="ltr"] .app-title {
        font-size: 24px;
        text-align: center;
    }

    .app-subtitle, [dir="rtl"] .app-subtitle, [dir="ltr"] .app-subtitle {
        font-size: 15px;
        text-align: center;
    }

    .app-desc, [dir="rtl"] .app-desc, [dir="ltr"] .app-desc {
        font-size: 14px;
        text-align: center;
    }

    .app-store-btns, [dir="rtl"] .app-store-btns, [dir="ltr"] .app-store-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-store {
        height: 50px;
        font-size: 16px;
        padding: 0 18px;
        flex: 1;
        min-width: 130px;
        max-width: 190px;
    }

    /* ── Stats ── */
    .stats-section {
        padding: 36px 12px;
        background-attachment: scroll;
    }

    .stats-grid {
        flex-direction: column;
        gap: 0;
    }

    .stat-item {
        flex: 1 1 100%;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding: 18px 12px;
        align-items: center;
        text-align: center;
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    .stat-label {
        font-size: 14px;
        text-align: center;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-desc {
        font-size: 13px;
        text-align: center;
        max-width: 220px;
    }

    /* ── Footer ── */
    .footer {
        padding: 36px 12px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo-ar {
        font-size: 42px;
    }

    .footer-logo-en {
        font-size: 17px;
    }

    .footer-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .footer-col-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links a, .footer-social-link, .footer-contact-label, .footer-contact-value {
        font-size: 15px;
    }

    /*.footer-links, .footer-socials, .footer-contact {
        align-items: flex-end;
    }*/

    [dir="ltr"] .footer-links, [dir="ltr"] .footer-socials, [dir="ltr"] .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        padding: 14px 0 22px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

/* ══════════════════════════════════════════════
   ❻ DESKTOP RESET — ≥ 769px
   ══════════════════════════════════════════════ */
@media (min-width: 769px) {
    .hero {
        position: relative !important;
        display: flex !important;
        align-items: flex-end !important;
        height: calc(100vh - var(--topbar-h) - var(--nav-h)) !important;
        min-height: 600px !important;
        overflow: visible !important;
    }

    .hero-carousel {
        position: absolute !important;
        inset: 0 !important;
        height: auto !important;
    }

    .hero-overlay {
        position: absolute !important;
        inset: 0 !important;
        height: auto !important;
    }

    .hero-content {
        position: absolute !important;
        bottom: 220px !important;
    }

    .search-wrap {
        position: absolute !important;
        bottom: -78px !important;
        padding: 0 120px !important;
        background: transparent !important;
        margin-top: 0 !important;
    }

    .btn-search::after {
        display: none;
    }

    .bk-panel, .loc-panel {
        position: absolute !important;
        bottom: auto !important;
        border-radius: 16px !important;
    }

    .drp-popup, .drp-popup[dir="rtl"], .drp-popup[dir="ltr"] {
        position: absolute !important;
        bottom: auto !important;
        width: 280px !important;
        border-radius: 16px !important;
    }

    .hero-cats-mobile-wrap {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════
   ❼ EXTRA SMALL — ≤ 375px
   ══════════════════════════════════════════════ */
@media (max-width: 375px) {
    .hero-title {
        font-size: 18px !important;
    }

    .hero-tagline {
        font-size: 13px !important;
    }

    .offers-title {
        font-size: 20px;
    }

    .about-title, .contact-title, .app-title {
        font-size: 21px;
    }

    .unit-card {
        flex: 0 0 calc(100vw - 40px);
    }

    .partners-logos {
        grid-template-columns: repeat(2,1fr);
    }

    .btn-store {
        font-size: 14px;
        padding: 0 12px;
    }
}

/* ══════════════════════════════════════════════
   ❽ TABLET — 769px → 1024px
   ══════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
    .topbar {
        padding: 0 20px;
    }

    .navbar {
        padding: 0 24px;
    }

    .hero-content {
        left: 40px;
        bottom: 180px;
    }

    [dir="rtl"] .hero-content {
        right: 40px;
        left: auto;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-cats {
        right: 24px;
        width: 160px;
        height: 460px;
    }

    [dir="rtl"] .hero-cats {
        left: 24px;
        right: auto;
    }

    .search-wrap {
        bottom: -72px;
        padding: 0 24px;
    }

    .search-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .search-field {
        flex: 1 1 calc(50% - 6px);
        min-width: 150px;
    }

    .drp-wrap {
        flex: 1 1 calc(50% - 6px) !important;
    }

    .btn-search {
        width: 100%;
        height: 48px;
    }

    .cats-bar-wrap {
        padding: 96px 24px 28px;
    }

    .services-section {
        padding: 36px 24px 48px;
    }

    .services-grid {
        flex-direction: column;
        gap: 14px;
    }

    .offers-inner {
        gap: 36px;
        padding: 48px 24px !important;
    }

    .offers-collage {
        width: 320px;
        height: 300px;
    }

    .partners-section {
        padding: 44px 24px;
    }

    .partners-logos {
        flex-wrap: wrap;
    }

    .partner-logo-card {
        flex: 1 1 calc(33% - 14px);
        height: 96px;
    }

    .units-section {
        padding: 44px 12px;
    }

    .about-section {
        padding: 56px 24px;
    }

    .about-inner {
        flex-direction: column !important;
        gap: 32px;
    }

    .about-img-frame {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .contact-section {
        padding: 56px 24px;
    }

    .contact-inner {
        flex-direction: column !important;
        gap: 32px;
    }

    .app-section {
        padding: 56px 24px;
    }

    .app-inner, [dir="ltr"] .app-inner, [dir="rtl"] .app-inner {
        flex-direction: row !important;
        gap: 36px;
    }

    .app-phone-wrap {
        width: 260px;
        height: 340px;
    }

    .app-phone-img {
        width: 210px;
    }

    .stats-section {
        padding: 44px 24px;
        background-attachment: scroll;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .footer {
        padding: 44px 24px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/* ══════════════════════════════════════════════
   ❾ MEDIUM DESKTOP — 1025px → 1200px
   ══════════════════════════════════════════════ */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-content {
        left: 60px;
        bottom: 200px;
    }

    [dir="rtl"] .hero-content {
        right: 60px;
        left: auto;
    }

    .hero-cats {
        right: 60px;
    }

    [dir="rtl"] .hero-cats {
        left: 60px;
        right: auto;
    }

    .search-wrap {
        padding: 0 60px;
    }

    .cats-bar-wrap {
        padding: 100px 60px 28px;
    }

    .services-section {
        padding: 120px 60px 56px;
    }

    .offers-inner {
        padding: 56px 60px !important;
        gap: 56px;
    }

    .offers-collage {
        width: 400px;
        height: 380px;
    }

    .partners-section {
        padding: 44px 60px;
    }

    .units-section {
        padding: 44px 12px;
    }

    .about-section {
        padding: 56px 60px;
    }

    .about-inner {
        gap: 80px;
    }

    .contact-section {
        padding: 56px 60px;
    }

    .app-section {
        padding: 56px 60px;
    }

    .footer {
        padding: 44px 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    }
}
/* ==============================================
   SAMRA — Footer Mobile Accordion
   يضاف في آخر ملف responsive.css أو samra.css
   ============================================== */

@media (max-width: 768px) {

    /* ── Grid: عمود واحد ── */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* ── Brand: يظهر كامل بدون accordion ── */
    .footer-brand {
        padding: 24px 0 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* ── كل قسم accordion ── */
    .footer-accordion {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* ── رأس القسم (زر الفتح) ── */
    .footer-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        cursor: pointer;
        user-select: none;
        list-style: none;
    }

        .footer-accordion-header .footer-col-title {
            margin: 0;
        }

    /* سهم الـ chevron */
    .footer-accordion-icon {
        width: 20px;
        height: 20px;
        color: var(--gold, #C8A27A);
        flex-shrink: 0;
        transition: transform 0.3s ease;
        display: block;
    }

    /* السهم يتقلب لما يفتح */
    .footer-accordion.open .footer-accordion-icon {
        transform: rotate(180deg);
    }

    /* ── محتوى القسم ── */
    .footer-accordion-body {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.35s ease;
        overflow: hidden;
    }

    .footer-accordion.open .footer-accordion-body {
        grid-template-rows: 1fr;
    }

    .footer-accordion-body-inner {
        overflow: hidden;
        padding-bottom: 4px;
    }

    /* ── Links داخل accordion ── */
    .footer-accordion-body .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 4px 0 16px;
    }

    .footer-accordion-body .footer-socials {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 4px 0 16px;
    }

    .footer-accordion-body .footer-contact {
        padding: 4px 0 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
/* ══════════════════════════════════════════════
   BOOKING CONFIRM — bc-page
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

    .bc-page {
        padding: 20px 12px 60px;
    }

    .bc-title {
        font-size: 22px;
    }

    .bc-title-underline {
        margin-bottom: 24px;
    }

    /* ── Section header: العنوان والـ badge يتكسروا تحت بعض ── */
    .bc-section-header {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    [dir="ltr"] .bc-section-header {
        align-items: flex-start;
    }

    .bc-section-title {
        font-size: 16px;
    }

    .bc-counter-badge {
        width: 100%;
        justify-content: space-between;
        padding: 6px 12px;
    }

    .bc-add-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    /* ── Grids: كل حاجة عمود واحد ── */
    .bc-grid-4,
    .bc-grid-3,
    .bc-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    /* ── Phone wrap ── */
    .bc-phone-wrap {
        flex-direction: row;
        gap: 6px;
    }

    .bc-phone-flag {
        padding: 0 8px;
        font-size: 12px;
        flex-shrink: 0;
    }

        .bc-phone-flag .flag-emoji {
            font-size: 15px;
        }

    /* ── Row item ── */
    .bc-row-item {
        padding: 12px;
    }

    .bc-row-header {
        margin-bottom: 10px;
    }

    /* ── Details card ── */
    .bc-details-card {
        border-radius: 10px;
    }

    .bc-details-row {
        grid-template-columns: 1fr 1fr !important;
    }

    .bc-detail-cell {
        padding: 10px 12px;
    }

    .bc-detail-label {
        font-size: 10px;
    }

    .bc-detail-value {
        font-size: 13px;
    }

    /* ── صف المبلغ والتأمين: عمود واحد ── */
    .bc-details-row[style*="repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    /* ── Bottom bar ── */
    .bc-bottom-bar {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 14px;
        margin-top: 20px;
    }

    .bc-confirm-btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
        font-size: 15px;
    }

    .bc-payment-link-wrap {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }

    [dir="ltr"] .bc-payment-link-wrap {
        justify-content: flex-start;
    }

    .bc-payment-phone-wrap.visible {
        width: 100%;
        flex-direction: row;
        gap: 6px;
        margin-top: 6px;
    }

    #bc-other-phone-input {
        width: 100% !important;
    }

    /* ── Toast ── */
    .bc-toast {
        inset-inline-start: 12px;
        inset-inline-end: 12px;
        transform: none;
        white-space: normal;
        text-align: center;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .bc-details-row {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════════════
   UNIT DETAIL PAGE — ud-*
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── Back bar ── */
    .ud-back-bar {
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ud-breadcrumb {
        font-size: 12px;
        gap: 5px;
        min-width: 0;
    }

        .ud-breadcrumb span {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .ud-actions {
        gap: 8px;
        margin-inline-start: auto;
    }

    .ud-action-btn {
        font-size: 0; /* يخفي النص، يخلي الأيقونة بس */
        gap: 0;
    }

        .ud-action-btn svg {
            width: 20px;
            height: 20px;
        }

    /* ── Header ── */
    .ud-header {
        padding: 14px 14px 0;
        gap: 6px;
    }

    .ud-code {
        font-size: 16px;
    }

    .ud-license {
        font-size: 11px;
    }

    .ud-meta-row {
        gap: 10px;
        margin-top: 6px;
        flex-wrap: wrap;
    }

    .ud-meta-item {
        font-size: 12px;
    }

    /* ── Gallery ── */
    .ud-gallery {
        padding: 10px 14px;
        grid-template-columns: 80px 1fr;
        height: 240px;
        gap: 8px;
    }

    .ud-thumbs {
        gap: 6px;
    }

    .ud-thumb {
        height: 72px;
        border-radius: 6px;
    }

    .ud-main-photo {
        border-radius: 8px;
    }

    .ud-gallery-btn {
        bottom: 10px;
        inset-inline-start: 10px;
        padding: 5px 10px;
        font-size: 11px;
    }

    /* ── Tabs — Desktop hidden on mobile (already handled) ── */
    .ud-tabs:not(.ud-tabs-mobile) {
        display: none !important;
    }

    .ud-tabs-mobile {
        display: flex !important;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
        scrollbar-width: none;
        margin-bottom: 16px;
    }

        .ud-tabs-mobile::-webkit-scrollbar {
            display: none;
        }

        .ud-tabs-mobile .ud-tab {
            padding: 10px 14px;
            font-size: 13px;
            white-space: nowrap;
            flex-shrink: 0;
        }

    /* ── Main layout ── */
    .ud-main {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 12px 40px !important;
        margin-top: 12px;
        gap: 16px;
    }

    /* ── Calendar card ── */
    .ud-cal-card {
        position: static !important;
        order: 1;
        padding: 14px;
        border-radius: 12px;
    }

    .ud-cal-month {
        font-size: 16px;
    }

    .ud-cal-sub {
        font-size: 10px;
    }

    .ud-cal-day {
        font-size: 12px;
        min-height: 32px;
        border-radius: 6px;
    }

    .ud-cal-nav {
        width: 28px;
        height: 28px;
    }

    .ud-times {
        margin-top: 10px;
        padding-top: 10px;
    }

    .ud-time-value {
        font-size: 14px;
    }

    .ud-time-date {
        font-size: 11px;
    }

    .ud-book-btn {
        padding: 12px;
        font-size: 15px;
        margin-top: 12px;
    }

    /* Price breakdown */
    .ud-price-breakdown {
        margin-top: 10px;
        padding-top: 10px;
    }

    .ud-price-row {
        font-size: 12px;
        padding: 4px 0;
    }

        .ud-price-row .ud-pr-lbl,
        .ud-price-row .ud-pr-val {
            font-size: 12px;
        }

        .ud-price-row.ud-pr-total .ud-pr-lbl,
        .ud-price-row.ud-pr-total .ud-pr-val {
            font-size: 13px;
        }

    /* Notes */
    .ud-notes {
        margin-top: 10px;
        gap: 6px;
    }

    .ud-note-item {
        font-size: 10px;
    }

    /* ── Info panel ── */
    .ud-info-panel {
        order: 2;
        padding-inline-start: 0 !important;
    }

    /* ── Owner card ── */
    .ud-owner-card {
        padding: 12px 14px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .ud-owner-avatar {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .ud-owner-name {
        font-size: 14px;
    }

    .ud-owner-desc {
        font-size: 12px;
        margin-top: 4px;
    }

    .ud-owner-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* ── Specs / Reviews / Terms ── */
    .ud-specs-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .ud-spec-item {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 6px;
    }

    .ud-specs-list {
        gap: 8px;
    }

    /* ── Map tab ── */
    #ud-tab-map > div[style*="height:320px"] {
        height: 220px !important;
    }
}

/* ── تحسين إضافي للشاشات الضيقة جداً ── */
@media (max-width: 380px) {

    .ud-gallery {
        grid-template-columns: 70px 1fr;
        height: 200px;
    }

    .ud-thumb {
        height: 58px;
    }

    .bc-phone-flag span:last-child {
        display: none; /* يخفي الـ +966 ويخلي الـ flag بس */
    }

    .ud-cal-day {
        font-size: 11px;
        min-height: 28px;
    }
}
/* ══════════════════════════════════════════════
   OFFERS CATS STRIP — All Screens
   ══════════════════════════════════════════════ */

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {

    .offers-section {
        min-height: auto !important;
    }

    .offers-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 32px 14px !important;
    }

    .offers-cats-strip {
        width: 100% !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 24px 0 !important;
    }

    /* إخفاء العمود الثالث على الموبايل */
    .offers-cat-col:nth-child(3) {
        display: none !important;
    }

    .offers-cat-col {
        width: calc(50% - 5px) !important;
        max-width: 160px !important;
        height: 300px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
    }

        .offers-cat-col.translate-up {
            transform: translateY(-18px) !important;
        }

        .offers-cat-col.translate-down {
            transform: translateY(18px) !important;
        }

        .offers-cat-col.translate-up:hover {
            transform: translateY(-18px) scale(1.02) !important;
        }

        .offers-cat-col.translate-down:hover {
            transform: translateY(18px) scale(1.02) !important;
        }

    .oc-mini-card {
        height: 120px !important;
    }

    .oc-mini-label {
        font-size: 11px !important;
        padding: 16px 8px 8px !important;
        line-height: 1.3 !important;
    }

    .oc-col-fade {
        height: 40px !important;
    }

    /* ── Text content ── */
    .offers-content {
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
        align-items: stretch !important;
    }

    .offers-content-inner {
        gap: 14px !important;
        align-items: stretch !important;
    }

    .offers-title {
        font-size: 22px !important;
        text-align: right !important;
    }

    [dir="ltr"] .offers-title {
        text-align: left !important;
    }

    .offers-desc {
        font-size: 14px !important;
        line-height: 1.8 !important;
        text-align: right !important;
    }

    [dir="ltr"] .offers-desc {
        text-align: left !important;
    }

    .btn-gold {
        width: 100% !important;
        height: 50px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
}

/* ── Extra Small ≤ 400px ── */
@media (max-width: 400px) {

    .offers-cat-col {
        width: calc(50% - 4px) !important;
        max-width: 140px !important;
        height: 260px !important;
    }

    .oc-mini-card {
        height: 100px !important;
    }

    .oc-mini-label {
        font-size: 10px !important;
    }

    .offers-cat-col.translate-up {
        transform: translateY(-14px) !important;
    }

    .offers-cat-col.translate-down {
        transform: translateY(14px) !important;
    }

    .offers-title {
        font-size: 20px !important;
    }

    .offers-desc {
        font-size: 13px !important;
    }
}

/* ── Tablet 769px → 1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {

    .offers-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 28px !important;
        padding: 48px 24px !important;
    }

    .offers-cats-strip {
        gap: 12px !important;
        padding: 32px 0 !important;
    }

    .offers-cat-col {
        width: 130px !important;
        height: 380px !important;
    }

    .oc-mini-card {
        height: 130px !important;
    }

    .oc-mini-label {
        font-size: 12px !important;
    }

    .offers-cat-col.translate-up {
        transform: translateY(-32px) !important;
    }

    .offers-cat-col.translate-down {
        transform: translateY(32px) !important;
    }

    .offers-cat-col.translate-up:hover {
        transform: translateY(-32px) scale(1.02) !important;
    }

    .offers-cat-col.translate-down:hover {
        transform: translateY(32px) scale(1.02) !important;
    }

    .offers-content {
        max-width: 100% !important;
        align-items: stretch !important;
    }

    .offers-title {
        font-size: 28px !important;
    }

    .offers-desc {
        font-size: 16px !important;
    }

    .btn-gold {
        width: 100% !important;
    }
}

/* ── Medium Desktop 1025px → 1200px ── */
@media (min-width: 1025px) and (max-width: 1200px) {

    .offers-cats-strip {
        gap: 14px !important;
    }

    .offers-cat-col {
        width: 140px !important;
        height: 430px !important;
    }

    .oc-mini-card {
        height: 145px !important;
    }

    .offers-cat-col.translate-up {
        transform: translateY(-40px) !important;
    }

    .offers-cat-col.translate-down {
        transform: translateY(40px) !important;
    }
}

/* ══════════════════════════════════════════════
   OFFERS CATS STRIP — 3 columns always visible
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

    .offers-cats-strip {
        width: 100% !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 20px 0 !important;
    }

    /* ✅ الثلاثة يظهروا */
    .offers-cat-col:nth-child(3) {
        display: block !important;
    }

    .offers-cat-col {
        width: calc(33.333% - 6px) !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 280px !important;
        border-radius: 10px !important;
        flex-shrink: 1 !important;
    }

    .oc-mini-card {
        height: 110px !important;
    }

    .oc-mini-label {
        font-size: 10px !important;
        padding: 14px 6px 6px !important;
        line-height: 1.2 !important;
    }

    .offers-cat-col.translate-up {
        transform: translateY(-16px) !important;
    }

    .offers-cat-col.translate-down {
        transform: translateY(16px) !important;
    }
}

@media (max-width: 400px) {

    .offers-cats-strip {
        gap: 5px !important;
    }

    .offers-cat-col {
        height: 240px !important;
    }

    .oc-mini-card {
        height: 90px !important;
    }

    .oc-mini-label {
        font-size: 9px !important;
        padding: 12px 4px 5px !important;
    }

    .offers-cat-col.translate-up {
        transform: translateY(-12px) !important;
    }

    .offers-cat-col.translate-down {
        transform: translateY(12px) !important;
    }
}