:root {
    --brand: #60252b;
    --brand-dark: #40171c;
    --brand-soft: #f4e9e6;

    --gold: #c89b4b;

    --ink: #161414;
    --muted: #716b68;

    --cream: #f7f3ef;
    --soft: #eee7e2;
    --white: #ffffff;

    --border: #e3dbd5;

    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 17px;

    --shadow: 0 18px 50px rgba(49, 23, 20, .08);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1420px, calc(100% - 64px));
    margin-inline: auto;
}


/* =========================================================
   TOP STRIP
========================================================= */

.top-strip {
    height: 34px;
    background: #211719;
    color: #dfd2d3;
    font-size: 11px;
}

.top-strip-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-strip-left,
.top-strip-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-strip-right a:hover {
    color: white;
}

.top-divider {
    width: 1px;
    height: 11px;
    background: rgba(255,255,255,.2);
}


/* =========================================================
   HEADER
========================================================= */

.market-header {
    position: relative;
    z-index: 30;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
}

.header-main {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* LOGO */

.mawajib-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-symbol {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--brand);
    color: white;

    border-radius: 12px;

    font-size: 19px;
    font-weight: 800;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.055em;
}


/* SEARCH */

.header-search-form {
    flex: 1;

    max-width: 750px;
    min-height: 50px;

    display: flex;
    align-items: center;

    background: #f7f5f3;

    border: 1px solid var(--border);
    border-radius: 15px;

    overflow: hidden;
}

.header-search-icon {
    padding-left: 18px;

    color: #86807d;

    font-size: 23px;
}

.header-search-form input {
    flex: 1;

    height: 48px;

    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 0 14px;

    color: var(--ink);
}

.header-search-form input::placeholder {
    color: #8d8784;
}

.header-search-form button {
    height: 42px;

    margin-right: 4px;

    padding: 0 22px;

    border: 0;

    border-radius: 11px;

    background: var(--brand);
    color: white;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.header-search-form button:hover {
    background: var(--brand-dark);
}


/* ACTIONS */

.header-actions {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 17px;
}

.header-action {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 3px;

    min-width: 50px;
}

.header-action-icon {
    font-size: 20px;
}

.header-action-label {
    font-size: 10px;
    color: var(--muted);
}

.header-action:hover {
    color: var(--brand);
}

.mobile-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--brand-soft);

    color: var(--brand);

    font-size: 19px;
}


/* NAVIGATION */

.main-navigation {
    border-top: 1px solid #f0ece9;
}

.navigation-inner {
    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 27px;

    overflow-x: auto;

    scrollbar-width: none;
}

.navigation-inner::-webkit-scrollbar {
    display: none;
}

.navigation-link {
    position: relative;

    white-space: nowrap;

    color: #67615e;

    font-size: 12px;
    font-weight: 600;

    padding: 16px 0;
}

.navigation-link:hover,
.navigation-link.active {
    color: var(--brand);
}

.navigation-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    border-radius: 2px;

    background: var(--brand);
}


/* =========================================================
   HERO
========================================================= */

.market-hero {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 20%,
            rgba(200,155,75,.15),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #faf6f2,
            #eee1dc
        );
}

.market-hero-grid {
    min-height: 610px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(440px, .86fr);

    gap: 55px;

    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;

    color: var(--brand);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .18em;
}

.hero-content h1 {
    max-width: 760px;

    margin: 17px 0;

    font-size: clamp(52px, 5vw, 80px);

    line-height: .94;

    letter-spacing: -.068em;
}

.hero-content h1 em {
    color: var(--brand);
    font-style: normal;
}

.hero-description {
    max-width: 610px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;
}

.hero-search-large {
    max-width: 690px;

    min-height: 67px;

    margin-top: 30px;

    display: flex;
    align-items: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.hero-search-icon {
    padding-left: 21px;

    color: #918b88;

    font-size: 26px;
}

.hero-search-large input {
    flex: 1;

    min-width: 0;

    height: 65px;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;
}

.hero-search-large button {
    height: 55px;

    margin-right: 6px;

    padding: 0 28px;

    border: 0;

    border-radius: 14px;

    color: white;

    background: var(--brand);

    font-weight: 700;

    cursor: pointer;
}

.hero-popular {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-top: 17px;

    font-size: 12px;

    color: var(--muted);
}

.hero-popular a {
    padding: 8px 12px;

    border-radius: 999px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.65);

    transition: .2s;
}

.hero-popular a:hover {
    background: white;
    color: var(--brand);
}


/* =========================================================
   HERO MARKETING VISUAL
========================================================= */

.hero-showcase {
    position: relative;

    height: 520px;
}

.hero-main-image {
    position: absolute;

    inset: 25px 22px 25px 55px;

    overflow: hidden;

    border-radius: 35px;

    background: #32151a;

    box-shadow: 0 35px 80px rgba(53,23,22,.18);
}

.hero-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-main-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(32,10,14,.83),
            transparent 58%
        );
}

.hero-image-overlay {
    position: absolute;

    z-index: 2;

    left: 30px;
    right: 30px;
    bottom: 29px;

    color: white;
}

.hero-image-overlay span {
    display: block;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;
}

.hero-image-overlay strong {
    display: block;

    margin-top: 7px;

    font-size: 29px;

    letter-spacing: -.04em;
}

.hero-image-overlay small {
    display: block;

    margin-top: 6px;

    color: #dfd2d3;

    font-size: 12px;
}


/* marketing cards */

.hero-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 11px;

    width: 230px;

    padding: 9px;

    background: rgba(255,255,255,.95);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 17px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(14px);
}

.hero-floating-card img {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    border-radius: 12px;

    object-fit: cover;
}

.hero-floating-card span {
    display: block;

    color: var(--muted);

    font-size: 9px;
}

.hero-floating-card strong {
    display: block;

    margin-top: 4px;

    font-size: 13px;
}

.hero-floating-top {
    top: 8px;
    left: 0;
}

.hero-floating-bottom {
    bottom: 7px;
    right: 0;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 82px 0;
}

.section-heading-large {
    margin-bottom: 32px;
}

.section-heading-large h2,
.section-heading-row h2 {
    margin: 9px 0 7px;

    font-size: clamp(34px, 3.1vw, 49px);

    line-height: 1;

    letter-spacing: -.055em;
}

.section-heading-large p,
.section-heading-row p {
    max-width: 640px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.section-heading-row {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 25px;

    margin-bottom: 32px;
}

.section-heading-row > a {
    white-space: nowrap;

    color: var(--brand);

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   EVENT CARDS
========================================================= */

.event-section {
    background: white;
}

.event-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.event-card {
    position: relative;

    min-height: 245px;

    overflow: hidden;

    border-radius: 25px;

    background: var(--brand);

    transition: .25s;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.event-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255,255,255,.18),
            transparent 30%
        );
}

.event-wedding {
    background:
        linear-gradient(145deg,#6b343b,#341319);
}

.event-birthday {
    background:
        linear-gradient(145deg,#94603d,#48231d);
}

.event-corporate {
    background:
        linear-gradient(145deg,#505763,#1c222b);
}

.event-private {
    background:
        linear-gradient(145deg,#80564d,#3e211f);
}

.event-card-content {
    position: absolute;

    z-index: 2;

    left: 21px;
    right: 21px;
    bottom: 21px;

    color: white;
}

.event-card-content > span {
    font-size: 9px;

    letter-spacing: .16em;

    font-weight: 800;

    opacity: .7;
}

.event-card h3 {
    margin: 8px 0;

    font-size: 24px;

    line-height: 1.02;

    letter-spacing: -.045em;
}

.event-card p {
    max-width: 220px;

    margin: 0 0 15px;

    color: #eadedf;

    font-size: 12px;

    line-height: 1.5;
}

.event-card strong {
    font-size: 11px;
}


/* =========================================================
   CATEGORIES — GRID, NO SCROLLBAR
========================================================= */

.category-section {
    background: var(--cream);
}

.category-rail {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 12px;
}

.category-tile {
    min-height: 145px;

    padding: 17px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid var(--border);

    border-radius: 17px;

    background: white;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.category-tile:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow);
}

.category-tile-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--brand-soft);

    font-size: 20px;
}

.category-tile h3 {
    max-width: 170px;

    margin: 12px 0 4px;

    font-size: 13px;

    line-height: 1.25;

    letter-spacing: -.01em;
}

.category-tile span {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   SERVICES — REAL GRID, NO SCROLLBAR
========================================================= */

.services-section {
    background: var(--soft);
}

.service-carousel {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.modern-service-card {
    min-width: 0;

    overflow: hidden;

    background: white;
    
    contain: layout paint;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,.035);
}

.modern-service-image {
    position: relative;

    display: block;

    height: 205px;

    overflow: hidden;
}

.modern-service-image
.image-loader-shell {
    width: 100%;
    height: 100%;
}

.modern-service-image
.progressive-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.modern-service-card:hover .modern-service-image img {
    transform: scale(1.045);
}

.service-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background: var(--brand-dark);

    color: white;

    font-weight: 800;
}

.service-save {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    font-size: 16px;
}

.service-badge {
    position: absolute;

    bottom: 1px;
    left: 70px;

    padding: 6px 9px;

    border-radius: 999px;

    background: rgba(255,255,255,.94);

    color: #21733a;

    font-size: 9px;

    font-weight: 800;
}

.modern-service-content {
    padding: 16px;
}

.modern-service-category {
    color: var(--brand);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.modern-service-content h3 {
    margin: 8px 0 12px;

    font-size: 17px;

    line-height: 1.14;

    letter-spacing: -.03em;
}

.modern-service-vendor {
    display: flex;

    justify-content: space-between;

    gap: 8px;

    font-size: 10px;

    color: var(--muted);
}

.modern-service-vendor span:first-child {
    color: var(--ink);

    font-weight: 700;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.modern-service-vendor span:last-child {
    white-space: nowrap;
}

.modern-service-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    margin-top: 14px;

    padding-top: 12px;

    border-top: 1px solid var(--border);
}

.modern-service-bottom span {
    min-width: 0;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    color: var(--muted);

    font-size: 9px;
}

.modern-service-bottom a {
    flex-shrink: 0;

    color: var(--brand);

    font-size: 10px;

    font-weight: 800;
}

/* =========================================================
   SERVICE CARD BADGES
========================================================= */

.service-card-badges {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 6px;

    pointer-events: none;
}


/* Verified */

.service-verified-badge {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    min-height: 28px;

    padding: 0 10px;

    border-radius: 999px;

    background: rgba(255,255,255,.96);

    color: #68272e;

    font-size: 8px;

    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 5px 16px
        rgba(0,0,0,.08);

    backdrop-filter: blur(8px);
}


.service-verified-check {
    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #68272e;

    color: #fff;

    font-size: 8px;

    line-height: 1;
}


/* Active */

.service-badge {
    position: static;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 28px;

    padding: 0 10px;

    border-radius: 999px;

    background: rgba(255,255,255,.96);

    color: #21733a;

    font-size: 8px;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    box-shadow:
        0 5px 16px
        rgba(0,0,0,.08);

    backdrop-filter: blur(8px);
}

html[dir="rtl"] .service-card-badges {
    left: auto;
    right: 14px;
}

.service-verified-badge {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    min-height: 27px;

    padding: 0 9px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.94);

    color: #67262d;

    font-size: 8px;

    font-weight: 800;

    box-shadow:
        0 6px 18px
        rgba(0,0,0,.10);

    backdrop-filter:
        blur(8px);
}

.service-verified-badge span {
    width: 14px;
    height: 14px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #67262d;

    color: #fff;

    font-size: 7px;
}

/* =========================================================
   VENDORS
========================================================= */

.vendors-section {
    background: white;
}

.vendor-carousel {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.modern-vendor-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;
}

.vendor-cover-modern {
    height: 170px;

    overflow: hidden;

    background: var(--brand-dark);
}

.vendor-cover-modern img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vendor-cover-placeholder {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(140deg,#60252b,#2a1115);
}

.modern-vendor-content {
    position: relative;

    padding: 54px 18px 18px;
}

.vendor-logo-modern {
    position: absolute;

    top: -35px;
    left: 18px;

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border: 4px solid white;

    border-radius: 18px;

    background: white;

    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.vendor-logo-modern img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vendor-logo-modern span {
    color: var(--brand);

    font-weight: 800;
}

.vendor-name-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.vendor-name-row h3 {
    margin: 0;

    font-size: 20px;

    letter-spacing: -.035em;
}

.vendor-name-row span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
}

.vendor-rating {
    white-space: nowrap;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;
}

.modern-vendor-content p {
    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

    min-height: 54px;

    margin: 14px 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;
}

.vendor-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 13px;

    border-top: 1px solid var(--border);
}

.vendor-bottom span {
    color: var(--muted);

    font-size: 10px;
}

.vendor-bottom a {
    color: var(--brand);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   EVENT ESSENTIALS
========================================================= */

.essentials-section {
    background: var(--brand-dark);

    color: white;
}

.essentials-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.essentials-copy h2 {
    max-width: 610px;

    margin: 12px 0 17px;

    font-size: clamp(40px, 4vw, 62px);

    line-height: .98;

    letter-spacing: -.06em;
}

.essentials-copy p {
    max-width: 520px;

    color: #d6caca;

    font-size: 14px;

    line-height: 1.7;
}

.dark-button {
    display: inline-flex;

    margin-top: 22px;

    padding: 13px 17px;

    border-radius: 11px;

    background: white;

    color: var(--brand-dark);

    font-size: 12px;

    font-weight: 800;
}

.essentials-list {
    border-top: 1px solid rgba(255,255,255,.14);
}

.essentials-list a {
    display: grid;

    grid-template-columns: 38px 1fr auto;

    align-items: center;

    gap: 12px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.essentials-list a > span {
    color: #ac999b;

    font-size: 10px;
}

.essentials-list strong {
    font-size: 16px;
}

.essentials-list small {
    color: #ac999b;

    font-size: 10px;
}


/* =========================================================
   APP
========================================================= */

.app-promo {
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(200,155,75,.15),
            transparent 29%
        ),
        var(--cream);
}

.app-promo-inner {
    min-height: 400px;

    display: grid;

    grid-template-columns: 1fr .6fr;

    align-items: center;
}

.app-promo h2 {
    max-width: 620px;

    margin: 12px 0;

    font-size: clamp(43px, 4.4vw, 68px);

    line-height: .97;

    letter-spacing: -.06em;
}

.app-promo p {
    max-width: 520px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.store-buttons {
    display: flex;

    gap: 9px;

    margin-top: 23px;
}

.store-buttons a {
    padding: 12px 15px;

    border-radius: 10px;

    background: var(--ink);

    color: white;

    font-size: 11px;

    font-weight: 700;
}

.app-visual {
    display: flex;

    justify-content: center;
}

.app-phone-card {
    width: 225px;
    height: 340px;

    padding: 27px 22px;

    display: flex;

    flex-direction: column;

    justify-content: end;

    border: 7px solid #292223;

    border-radius: 35px;

    background:
        radial-gradient(
            circle at 72% 13%,
            #a06067,
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #60252b,
            #291014
        );

    color: white;

    box-shadow: 0 30px 70px rgba(40,20,18,.2);
}

.app-phone-card > span {
    margin-bottom: auto;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .15em;
}

.app-phone-card strong {
    font-size: 28px;

    line-height: 1;

    letter-spacing: -.045em;
}

.app-phone-line {
    width: 100%;

    height: 7px;

    margin-top: 13px;

    border-radius: 999px;

    background: rgba(255,255,255,.3);
}

.app-phone-line.short {
    width: 63%;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #120d0e;

    color: white;

    padding: 65px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 45px;
}

.footer-logo {
    display: inline-block;

    font-size: 27px;

    font-weight: 800;

    letter-spacing: -.05em;
}

.footer-company p {
    max-width: 360px;

    color: #9b9190;

    font-size: 12px;

    line-height: 1.7;
}

.footer-socials {
    display: flex;

    gap: 16px;

    margin-top: 20px;
}

.footer-socials a {
    color: #a79d9c;

    font-size: 11px;
}

.footer-column h4 {
    margin: 2px 0 15px;

    font-size: 12px;
}

.footer-column a {
    display: block;

    margin: 10px 0;

    color: #9d9492;

    font-size: 11px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 18px;

    border-top: 1px solid #292123;

    color: #6f6665;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

    .category-rail {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-carousel {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 1050px) {

    .container {
        width: min(100% - 40px, 1420px);
    }

    .header-main {
        gap: 17px;
    }

    .header-action-label {
        display: none;
    }

    .market-hero-grid {
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 65px;
    }

    .hero-showcase {
        max-width: 650px;
        width: 100%;
        margin-inline: auto;
    }

    .essentials-grid,
    .app-promo-inner {
        grid-template-columns: 1fr;
    }

    .app-visual {
        margin-top: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

}


@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, 1420px);
    }

    .top-strip {
        display: none;
    }

    .header-main {
        min-height: 72px;

        flex-wrap: wrap;

        padding: 10px 0;
    }

    .header-search-form {
        order: 3;

        width: 100%;

        max-width: none;
    }

    .header-actions {
        gap: 5px;
    }

    .header-action {
        min-width: 38px;
    }

    .mobile-menu-button {
        display: flex;
    }

    .main-navigation {
        display: none;
    }

    .market-hero-grid {
        padding-top: 55px;
    }

    .hero-content h1 {
        font-size: 47px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-search-large {
        flex-wrap: wrap;

        padding: 5px;
    }

    .hero-search-icon {
        padding-left: 10px;
    }

    .hero-search-large input {
        width: calc(100% - 50px);

        height: 54px;
    }

    .hero-search-large button {
        width: 100%;

        height: 49px;

        margin: 0;
    }

    .hero-showcase {
        height: 390px;
    }

    .hero-main-image {
        inset: 10px 0;
    }

    .hero-floating-card {
        width: 195px;
    }

    .section {
        padding: 62px 0;
    }

    .section-heading-row {
        flex-direction: column;

        align-items: flex-start;
    }

    .category-rail {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .category-tile {
        min-height: 125px;
    }

    .service-carousel {
        grid-template-columns: repeat(2, 1fr);

        gap: 11px;
    }

    .modern-service-image {
        height: 180px;
    }

    .modern-service-content {
        padding: 13px;
    }

    .modern-service-content h3 {
        font-size: 15px;
    }

    .vendor-carousel {
        grid-template-columns: 1fr;
    }

    .essentials-grid {
        gap: 40px;
    }

    .essentials-copy h2 {
        font-size: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

}


@media (max-width: 500px) {

    .logo-text {
        font-size: 21px;
    }

    .logo-symbol {
        width: 36px;
        height: 36px;
    }

    .header-search-form button {
        padding-inline: 17px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-showcase {
        height: 340px;
    }

    .hero-floating-card {
        width: 175px;
        padding: 7px;
    }

    .hero-floating-card img {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .hero-floating-card strong {
        font-size: 11px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .service-carousel {
        grid-template-columns: 1fr;
    }

    .modern-service-image {
        height: 230px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

/* =========================================================
   ARABIC / RTL
========================================================= */

html[dir="rtl"] body {
    direction: rtl;
}

html[dir="rtl"] .top-strip-left,
html[dir="rtl"] .top-strip-right {
    direction: rtl;
}

html[dir="rtl"] .header-main {
    direction: rtl;
}

html[dir="rtl"] .header-actions {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-popular {
    justify-content: flex-start;
}

html[dir="rtl"] .section-heading-row {
    direction: rtl;
}

html[dir="rtl"] .section-heading-row > a {
    text-align: left;
}

html[dir="rtl"] .event-card-content {
    text-align: right;
}

html[dir="rtl"] .modern-service-content {
    text-align: right;
}

html[dir="rtl"] .modern-service-vendor,
html[dir="rtl"] .modern-service-bottom,
html[dir="rtl"] .vendor-name-row,
html[dir="rtl"] .vendor-bottom {
    direction: rtl;
}

html[dir="rtl"] .hero-search-icon {
    padding-left: 0;
    padding-right: 21px;
}

html[dir="rtl"] .hero-search-large button {
    margin-right: 0;
    margin-left: 6px;
}

html[dir="rtl"] .hero-floating-top {
    left: auto;
    right: 0;
}

html[dir="rtl"] .hero-floating-bottom {
    right: auto;
    left: 0;
}

html[dir="rtl"] .vendor-logo-modern {
    left: auto;
    right: 18px;
}

html[dir="rtl"] .essentials-list a {
    grid-template-columns: auto 1fr 38px;
}

html[dir="rtl"] .essentials-list a > span {
    order: 3;
}

html[dir="rtl"] .app-promo {
    direction: rtl;
}

html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom {
    direction: rtl;
}

html[dir="rtl"] input {
    text-align: right;
}

html[dir="rtl"] .modern-service-image,
html[dir="rtl"] .vendor-cover-modern {
    direction: ltr;
}

.mawajib-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* =========================================================
   SERVICES PAGE
========================================================= */

.services-page {
    padding: 65px 0 90px;
    background: var(--cream);
}

.services-page-heading {
    max-width: 760px;
    margin-bottom: 25px;
}

.services-page-heading h1 {
    margin: 10px 0;
    font-size: clamp(40px, 4vw, 62px);
    line-height: .98;
    letter-spacing: -.06em;
}

.services-page-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* SEARCH */

.services-search {
    min-height: 66px;

    display: flex;
    align-items: center;

    max-width: 900px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 17px;

    box-shadow: 0 12px 38px rgba(38, 19, 16, .06);
}

.services-search-icon {
    padding-left: 20px;

    color: #908985;

    font-size: 25px;
}

.services-search input {
    flex: 1;

    min-width: 0;

    height: 64px;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;
}

.services-search button {
    height: 54px;

    margin-right: 6px;

    padding: 0 25px;

    border: 0;

    border-radius: 13px;

    background: var(--brand);

    color: white;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;
}


/* CATEGORY GRID */

.services-category-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 10px;

    margin: 25px 0 45px;
}

.services-category-grid a {
    min-height: 96px;

    padding: 13px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: white;

    color: var(--ink);

    font-size: 11px;

    font-weight: 700;

    transition: .2s;
}

.services-category-grid a:hover,
.services-category-grid a.active {
    border-color: var(--brand);

    color: var(--brand);

    transform: translateY(-2px);
}

.category-shortcut-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--brand-soft);

    font-size: 17px;
}


/* LAYOUT */

.services-layout {
    display: grid;

    grid-template-columns: 255px minmax(0, 1fr);

    gap: 24px;

    align-items: start;
}


/* FILTER PANEL */

.services-filter-panel {
    position: sticky;

    top: 20px;

    padding: 19px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 19px;
}

.filter-panel-header {
    display: flex;

    justify-content: space-between;

    align-items: start;

    margin-bottom: 22px;

    padding-bottom: 17px;

    border-bottom: 1px solid var(--border);
}

.filter-panel-header h2 {
    margin: 5px 0 0;

    font-size: 20px;

    letter-spacing: -.035em;
}

.filter-panel-header a {
    color: var(--brand);

    font-size: 10px;

    font-weight: 800;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 800;
}

.filter-group select {
    width: 100%;

    min-height: 45px;

    padding: 0 12px;

    border: 1px solid var(--border);

    border-radius: 11px;

    background: #faf8f6;

    color: var(--ink);

    font-size: 11px;

    outline: 0;
}

.filter-group select:focus {
    border-color: var(--brand);
}

.apply-filter-button {
    width: 100%;

    min-height: 45px;

    margin-top: 5px;

    border: 0;

    border-radius: 11px;

    background: var(--brand);

    color: white;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;
}


/* RESULT TOOLBAR */

.results-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 17px;

    padding: 14px 16px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: white;
}

.results-summary {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 5px;
}

.results-summary strong {
    font-size: 16px;
}

.results-summary span,
.results-summary small {
    color: var(--muted);

    font-size: 11px;
}

.results-summary small {
    display: block;

    width: 100%;

    margin-top: 2px;
}

.sort-control {
    display: flex;

    align-items: center;

    gap: 8px;
}

.sort-control label {
    color: var(--muted);

    font-size: 10px;
}

.sort-control select {
    min-height: 36px;

    padding: 0 10px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: white;

    font-size: 10px;
}


/* SERVICE GRID */

.services-result-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.listing-service-card {
    min-width: 0;

    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 19px;

    box-shadow: 0 5px 20px rgba(0,0,0,.03);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.listing-service-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow);
}

.listing-service-image {
    position: relative;

    display: block;

    height: 220px;

    overflow: hidden;
}

.listing-service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.listing-service-card:hover .listing-service-image img {
    transform: scale(1.045);
}

.listing-image-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background: var(--brand-dark);

    color: white;

    font-size: 13px;

    font-weight: 800;
}

.listing-save {
    position: absolute;

    top: 11px;
    right: 11px;

    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    font-size: 15px;
}

.listing-service-body {
    padding: 15px;
}

.listing-category {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    color: var(--brand);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.listing-service-body h2 {
    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

    min-height: 38px;

    margin: 8px 0;

    font-size: 17px;

    line-height: 1.12;

    letter-spacing: -.03em;
}

.listing-service-vendor {
    display: flex;

    justify-content: space-between;

    gap: 8px;

    font-size: 10px;
}

.listing-service-vendor strong {
    max-width: 58%;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.listing-service-vendor span {
    color: var(--muted);

    white-space: nowrap;
}

.listing-service-body p {
    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

    min-height: 54px;

    margin: 12px 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.55;
}

.listing-service-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    padding-top: 12px;

    border-top: 1px solid var(--border);
}

.listing-service-footer span {
    max-width: 65%;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    color: var(--muted);

    font-size: 9px;
}

.listing-service-footer a {
    color: var(--brand);

    font-size: 10px;

    font-weight: 800;
}


/* EMPTY */

.services-empty {
    padding: 80px 20px;

    text-align: center;

    border: 1px dashed var(--border);

    border-radius: 20px;

    background: white;
}

.services-empty-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background: var(--brand-soft);

    color: var(--brand);

    font-size: 25px;
}

.services-empty h2 {
    margin: 0 0 8px;

    font-size: 23px;

    letter-spacing: -.04em;
}

.services-empty p {
    margin: 0 0 17px;

    color: var(--muted);

    font-size: 12px;
}

.services-empty a {
    display: inline-flex;

    padding: 10px 15px;

    border-radius: 10px;

    background: var(--brand);

    color: white;

    font-size: 11px;

    font-weight: 800;
}


/* RTL */

html[dir="rtl"] .services-search-icon {
    padding-left: 0;
    padding-right: 20px;
}

html[dir="rtl"] .services-search button {
    margin-right: 0;
    margin-left: 6px;
}

html[dir="rtl"] .services-filter-panel,
html[dir="rtl"] .results-toolbar,
html[dir="rtl"] .listing-service-body {
    text-align: right;
}

html[dir="rtl"] .sort-control {
    direction: rtl;
}

html[dir="rtl"] .listing-save {
    left: 11px;
    right: auto;
}


/* RESPONSIVE */

@media (max-width: 1200px) {

    .services-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-result-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 950px) {

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-filter-panel {
        position: static;
    }

    .services-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-result-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 700px) {

    .services-page {
        padding-top: 45px;
    }

    .services-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-toolbar {
        align-items: flex-start;

        flex-direction: column;
    }

    .sort-control {
        width: 100%;

        justify-content: space-between;
    }

    .sort-control select {
        flex: 1;
    }

}

@media (max-width: 500px) {

    .services-search {
        flex-wrap: wrap;

        padding: 5px;
    }

    .services-search-icon {
        padding-left: 9px;
    }

    html[dir="rtl"] .services-search-icon {
        padding-left: 0;
        padding-right: 9px;
    }

    .services-search input {
        height: 52px;

        width: calc(100% - 45px);
    }

    .services-search button {
        width: 100%;

        margin: 0;

        height: 45px;
    }

    .services-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-result-grid {
        grid-template-columns: 1fr;
    }

    .listing-service-image {
        height: 245px;
    }

}

/* =========================================================
   SERVICE DETAIL PAGE
========================================================= */

.service-detail-page {
    padding: 35px 0 90px;
    background: var(--cream);
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 10px;
}

.service-breadcrumb a:hover {
    color: var(--brand);
}


/* MAIN */

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
    gap: 48px;
    align-items: start;
}


/* GALLERY */

.service-gallery {
    position: sticky;
    top: 20px;
}

.service-gallery-main {
    position: relative;
    height: 570px;
    overflow: hidden;
    border-radius: 28px;
    background: #e8dfda;
}

.service-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--brand-dark);
    color: white;
    font-size: 40px;
    font-weight: 800;
}

.service-gallery-heart {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    font-size: 19px;
}

.service-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
    margin-top: 10px;
}

.service-thumbnail {
    height: 78px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    background: white;
    cursor: pointer;
}

.service-thumbnail.active {
    border-color: var(--brand);
}

.service-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* INFO */

.service-detail-info {
    padding-top: 10px;
}

.service-detail-category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.detail-dot {
    opacity: .5;
}

.service-detail-info h1 {
    max-width: 700px;
    margin: 13px 0;
    font-size: clamp(39px, 4vw, 60px);
    line-height: .98;
    letter-spacing: -.06em;
}

.service-rating-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 23px;
}

.rating-stars,
.demo-stars {
    color: var(--gold);
    letter-spacing: 1px;
}

.service-rating-demo strong {
    font-size: 13px;
}

.service-rating-demo span:last-child {
    color: var(--muted);
    font-size: 10px;
}

.service-detail-location {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 0;
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 19px;
}

.service-detail-location small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
}

.service-detail-location strong {
    font-size: 13px;
}

.service-detail-divider {
    height: 1px;
    margin: 10px 0 20px;
    background: var(--border);
}


/* VENDOR */

.service-vendor-detail {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 0 20px;
}

.service-vendor-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 18px;
    font-weight: 800;
}

.service-vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-vendor-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-vendor-info small {
    color: var(--muted);
    font-size: 9px;
}

.service-vendor-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.service-vendor-info span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
}

.view-vendor-link {
    margin-left: auto;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}


/* CTA */

.service-action-box {
    margin-top: 8px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    box-shadow: 0 12px 35px rgba(40,20,18,.06);
}

.service-action-box > div:first-child > span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.service-action-box > div:first-child > strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
}

.service-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 15px;
}

.service-action {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
    transition: .2s;
}

.service-action.secondary {
    border: 1px solid var(--border);
    background: white;
    color: var(--ink);
}

.service-action.primary {
    background: var(--brand);
    color: white;
}

.service-action:hover {
    transform: translateY(-2px);
}


/* DETAILS */

.service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 25px;
    margin-top: 70px;
    align-items: start;
}

.service-description-panel,
.service-summary-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
}

.detail-section-header h2 {
    margin: 8px 0 22px;
    font-size: 31px;
    letter-spacing: -.045em;
}

.service-description-text {
    color: #4f4a48;
    font-size: 14px;
    line-height: 1.9;
    white-space: pre-line;
}

.service-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.service-fact {
    display: flex;
    gap: 11px;
    padding: 14px;
    border-radius: 14px;
    background: var(--cream);
}

.service-fact > span {
    color: var(--brand);
    font-size: 18px;
}

.service-fact small {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.service-fact strong {
    display: block;
    margin-top: 4px;
    font-size: 11px;
}


/* SUMMARY */

.service-summary-card {
    position: sticky;
    top: 20px;
}

.summary-label {
    color: var(--brand);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.service-summary-card h3 {
    margin: 9px 0 25px;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-top: 1px solid var(--border);
    font-size: 10px;
}

.summary-row span {
    color: var(--muted);
}

.summary-row strong {
    max-width: 60%;
    text-align: right;
}

.summary-status {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #edf7ef;
    color: #27733d;
    font-size: 10px;
    font-weight: 800;
}


/* RATING */

.rating-section {
    margin-top: 70px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 25px;
    background: var(--brand-dark);
    color: white;
}

.rating-section h2 {
    margin: 9px 0;
    font-size: 31px;
    letter-spacing: -.045em;
}

.rating-section p {
    max-width: 600px;
    margin: 0;
    color: #ccbfc0;
    font-size: 12px;
    line-height: 1.6;
}

.rating-demo-box {
    min-width: 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    background: rgba(255,255,255,.05);
}

.demo-rating-number {
    font-size: 34px;
    font-weight: 800;
}

.rating-demo-box span {
    color: #cbbfc0;
    font-size: 9px;
}


/* RELATED */

.related-services-section {
    padding-top: 75px;
}

.related-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: white;
}

.related-service-image {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.045);
}

.related-service-image > span {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    font-size: 15px;
}

.related-service-body {
    padding: 15px;
}

.related-service-body > small {
    color: var(--brand);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-service-body h3 {
    margin: 7px 0 11px;
    min-height: 38px;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.related-service-body > div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 9px;
}

.related-service-body > div strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.related-service-body > div span {
    color: var(--muted);
    white-space: nowrap;
}

.related-view {
    display: inline-block;
    margin-top: 13px;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
}


/* RTL */

html[dir="rtl"] .service-detail-info,
html[dir="rtl"] .service-description-panel,
html[dir="rtl"] .service-summary-card {
    text-align: right;
}

html[dir="rtl"] .service-vendor-detail {
    direction: rtl;
}

html[dir="rtl"] .view-vendor-link {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .service-action-box,
html[dir="rtl"] .rating-section {
    direction: rtl;
}

html[dir="rtl"] .service-gallery-heart {
    right: auto;
    left: 18px;
}

html[dir="rtl"] .related-service-image > span {
    right: auto;
    left: 11px;
}

html[dir="rtl"] .summary-row strong {
    text-align: left;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        position: static;
    }

    .service-gallery-main {
        height: 560px;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-summary-card {
        position: static;
    }

    .related-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    .service-detail-page {
        padding-top: 25px;
    }

    .service-gallery-main {
        height: 480px;
    }

    .service-content-grid {
        margin-top: 45px;
    }

    .rating-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 560px) {

    .service-detail-layout {
        gap: 25px;
    }

    .service-gallery-main {
        height: 370px;
        border-radius: 20px;
    }

    .service-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-thumbnail {
        height: 62px;
    }

    .service-detail-info h1 {
        font-size: 39px;
    }

    .service-actions {
        grid-template-columns: 1fr;
    }

    .service-facts {
        grid-template-columns: 1fr;
    }

    .service-description-panel,
    .service-summary-card {
        padding: 20px;
    }

    .rating-section {
        padding: 25px 20px;
    }

    .rating-demo-box {
        width: 100%;
    }

    .related-service-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PREMIUM SERVICE DETAIL
========================================================= */

.service-detail-page {
    padding: 32px 0 100px;
    background:
        linear-gradient(
            180deg,
            #faf7f4 0%,
            var(--cream) 40%
        );
}


    /* ---------------------------------------------------------
       BREADCRUMB
    --------------------------------------------------------- */
    
    .service-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 9px;
    
        margin-bottom: 27px;
    
        color: #8a817c;
    
        font-size: 10px;
    }
    
    .service-breadcrumb a:hover {
        color: var(--brand);
    }
    
    
    /* ---------------------------------------------------------
       MAIN LAYOUT
    --------------------------------------------------------- */
    
    .service-detail-layout {
        display: grid;
    
        grid-template-columns:
            minmax(0, 1.12fr)
            minmax(390px, .88fr);
    
        gap: 44px;
    
        align-items: start;
    }
    
    
    /* ---------------------------------------------------------
       GALLERY
    --------------------------------------------------------- */
    
    .service-gallery {
        min-width: 0;
    }
    
    .service-gallery-main {
        position: relative;
    
        height: 610px;
    
        overflow: hidden;
    
        border-radius: 30px;
    
        background: #ddd5d0;
    
        box-shadow:
            0 25px 65px rgba(53, 28, 25, .10);
    }
    
    .service-gallery-track {
        position: relative;
    
        width: 100%;
        height: 100%;
    }
    
    .service-gallery-slide {
        position: absolute;
    
        inset: 0;
    
        opacity: 0;
    
        visibility: hidden;
    
        transition:
            opacity .45s ease,
            visibility .45s ease;
    }
    
    .service-gallery-slide.active {
        opacity: 1;
    
        visibility: visible;
    }
    
    .service-gallery-slide img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: cover;
    }
    
    
    .service-detail-placeholder {
        width: 100%;
        height: 100%;
    
        display: grid;
        place-items: center;
    
        background:
            linear-gradient(
                145deg,
                #61262c,
                #241013
            );
    
        color: white;
    
        font-size: 38px;
        font-weight: 800;
    }
    
    
    /* image gradient */
    
    .service-gallery-main::after {
        content: "";
    
        position: absolute;
    
        inset: 0;
    
        pointer-events: none;
    
        background:
            linear-gradient(
                to top,
                rgba(22, 10, 11, .23),
                transparent 32%
            );
    }
    
    
    /* save */
    
    .gallery-heart {
        position: absolute;
    
        z-index: 5;
    
        top: 17px;
        right: 17px;
    
        width: 45px;
        height: 45px;
    
        display: grid;
        place-items: center;
    
        border: 0;
    
        border-radius: 50%;
    
        background: rgba(255,255,255,.96);
    
        box-shadow:
            0 8px 25px rgba(0,0,0,.12);
    
        font-size: 20px;
    
        cursor: pointer;
    }
    
    
    /* arrows */
    
    .gallery-arrow {
        position: absolute;
    
        z-index: 5;
    
        top: 50%;
    
        transform: translateY(-50%);
    
        width: 43px;
        height: 43px;
    
        display: grid;
        place-items: center;
    
        border: 1px solid rgba(255,255,255,.55);
    
        border-radius: 50%;
    
        background: rgba(20,12,13,.48);
    
        backdrop-filter: blur(10px);
    
        color: white;
    
        font-size: 28px;
    
        line-height: 1;
    
        cursor: pointer;
    
        transition: .2s;
    }
    
    .gallery-arrow:hover {
        background: rgba(20,12,13,.72);
    
        transform:
            translateY(-50%)
            scale(1.05);
    }
    
    .gallery-prev {
        left: 17px;
    }
    
    .gallery-next {
        right: 17px;
    }
    
    
    /* dots */
    
    .gallery-dots {
        position: absolute;
    
        z-index: 5;
    
        left: 50%;
        bottom: 17px;
    
        transform: translateX(-50%);
    
        display: flex;
    
        align-items: center;
    
        gap: 6px;
    }
    
    .gallery-dot {
        width: 7px;
        height: 7px;
    
        padding: 0;
    
        border: 0;
    
        border-radius: 50%;
    
        background: rgba(255,255,255,.5);
    
        cursor: pointer;
    
        transition: .2s;
    }
    
    .gallery-dot.active {
        width: 19px;
    
        border-radius: 999px;
    
        background: white;
    }
    
    
    /* thumbnails */
    
    .service-thumbnails {
        display: grid;
    
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    
        gap: 9px;
    
        margin-top: 10px;
    }
    
    .service-thumbnail {
        height: 79px;
    
        overflow: hidden;
    
        padding: 0;
    
        border: 2px solid transparent;
    
        border-radius: 13px;
    
        background: white;
    
        cursor: pointer;
    
        transition: .2s;
    }
    
    .service-thumbnail:hover {
        transform: translateY(-2px);
    }
    
    .service-thumbnail.active {
        border-color: var(--brand);
    }
    
    .service-thumbnail img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: cover;
    }
    
    
    /* ---------------------------------------------------------
       SERVICE INFO
    --------------------------------------------------------- */
    
    .service-detail-info {
        min-width: 0;
    
        padding-top: 8px;
    }
    
    .service-category-line {
        display: flex;
    
        align-items: center;
    
        flex-wrap: wrap;
    
        gap: 7px;
    
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .1em;
    
        text-transform: uppercase;
    }
    
    .service-category-line i {
        opacity: .45;
    
        font-style: normal;
    }
    
    .service-detail-title {
        max-width: 700px;
    
        margin: 13px 0 12px;
    
        font-size:
            clamp(
                40px,
                4.2vw,
                65px
            );
    
        line-height: .97;
    
        letter-spacing: -.065em;
    }
    
    .service-rating-row {
        display: flex;
    
        align-items: center;
    
        gap: 8px;
    
        margin-bottom: 28px;
    }
    
    .rating-stars {
        color: var(--gold);
    
        font-size: 13px;
    
        letter-spacing: 1px;
    }
    
    .service-rating-row strong {
        font-size: 13px;
    }
    
    .service-rating-row > span:last-child {
        color: var(--muted);
    
        font-size: 10px;
    }
    
    
    /* location */
    
    .service-location-card {
        display: flex;
    
        align-items: center;
    
        gap: 12px;
    
        padding: 15px 0;
    
        border-top: 1px solid var(--border);
    
        border-bottom: 1px solid var(--border);
    }
    
    .detail-icon {
        width: 43px;
        height: 43px;
    
        flex: 0 0 43px;
    
        display: grid;
        place-items: center;
    
        border-radius: 13px;
    
        background: var(--brand-soft);
    
        color: var(--brand);
    
        font-size: 19px;
    }
    
    .service-location-card small {
        display: block;
    
        margin-bottom: 4px;
    
        color: var(--muted);
    
        font-size: 9px;
    }
    
    .service-location-card strong {
        font-size: 13px;
    }
    
    
    /* ---------------------------------------------------------
       VENDOR
    --------------------------------------------------------- */
    
    .service-vendor-card {
        display: flex;
    
        align-items: center;
    
        gap: 13px;
    
        padding: 22px 0;
    }
    
    .vendor-avatar-large {
        width: 59px;
        height: 59px;
    
        flex: 0 0 59px;
    
        display: grid;
        place-items: center;
    
        overflow: hidden;
    
        border-radius: 17px;
    
        background: var(--brand-soft);
    
        color: var(--brand);
    
        font-size: 18px;
    
        font-weight: 800;
    }
    
    .vendor-avatar-large img {
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    }
    
    .vendor-detail-copy {
        min-width: 0;
    
        display: flex;
    
        flex-direction: column;
    
        gap: 3px;
    }
    
    .vendor-detail-copy small {
        color: var(--muted);
    
        font-size: 9px;
    }
    
    .vendor-detail-copy strong {
        overflow: hidden;
    
        white-space: nowrap;
    
        text-overflow: ellipsis;
    
        font-size: 14px;
    }
    
    .vendor-rating {
        color: var(--gold);
    
        font-size: 10px;
    
        font-weight: 700;
    }
    
    .vendor-profile-link {
        margin-left: auto;
    
        flex-shrink: 0;
    
        color: var(--brand);
    
        font-size: 10px;
    
        font-weight: 800;
    }
    
    
    /* ---------------------------------------------------------
       CTA
    --------------------------------------------------------- */
    
    .service-cta {
        padding: 19px;
    
        border: 1px solid var(--border);
    
        border-radius: 21px;
    
        background: white;
    
        box-shadow:
            0 15px 40px rgba(53, 28, 25, .07);
    }
    
    .service-cta-copy span {
        display: block;
    
        color: var(--muted);
    
        font-size: 9px;
    }
    
    .service-cta-copy strong {
        display: block;
    
        margin-top: 4px;
    
        font-size: 15px;
    }
    
    .service-cta-buttons {
        display: grid;
    
        grid-template-columns: 1fr 1fr;
    
        gap: 9px;
    
        margin-top: 15px;
    }
    
    .service-btn {
        min-height: 50px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 7px;
    
        border-radius: 12px;
    
        font-size: 10px;
    
        font-weight: 800;
    
        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }
    
    .service-btn:hover {
        transform: translateY(-2px);
    }
    
    .service-btn-secondary {
        border: 1px solid var(--border);
    
        background: white;
    
        color: var(--ink);
    }
    
    .service-btn-primary {
        background: var(--brand);
    
        color: white;
    
        box-shadow:
            0 10px 25px rgba(96,37,43,.18);
    }
    
    
    /* ---------------------------------------------------------
       TRUST ROW
    --------------------------------------------------------- */
    
    .service-trust-row {
        display: grid;
    
        grid-template-columns: repeat(3, 1fr);
    
        gap: 9px;
    
        margin-top: 13px;
    }
    
    .service-trust-row > div {
        display: flex;
    
        align-items: center;
    
        gap: 7px;
    
        padding: 9px 10px;
    
        border-radius: 10px;
    
        background: rgba(255,255,255,.55);
    }
    
    .service-trust-row span {
        color: var(--brand);
    
        font-size: 12px;
    
        font-weight: 800;
    }
    
    .service-trust-row small {
        color: var(--muted);
    
        font-size: 8px;
    
        line-height: 1.2;
    }
    
    
    /* ---------------------------------------------------------
       INFORMATION GRID
    --------------------------------------------------------- */
    
    .service-information-grid {
        display: grid;
    
        grid-template-columns:
            minmax(0, 1fr)
            320px;
    
        gap: 18px;
    
        margin-top: 68px;
    
        align-items: start;
    }
    
    .service-about-card,
    .service-overview-card {
        padding: 30px;
    
        border: 1px solid var(--border);
    
        border-radius: 23px;
    
        background: white;
    }
    
    .service-section-heading > span,
    .service-overview-label {
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .12em;
    
        text-transform: uppercase;
    }
    
    .service-section-heading h2 {
        margin: 8px 0 22px;
    
        font-size: 32px;
    
        letter-spacing: -.05em;
    }
    
    .service-description {
        max-width: 920px;
    
        color: #514b48;
    
        font-size: 14px;
    
        line-height: 1.9;
    
        white-space: pre-line;
    }
    
    
    /* facts */
    
    .service-facts {
        display: grid;
    
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    
        gap: 9px;
    
        margin-top: 28px;
    
        padding-top: 22px;
    
        border-top: 1px solid var(--border);
    }
    
    .service-fact {
        display: flex;
    
        align-items: center;
    
        gap: 10px;
    
        min-height: 67px;
    
        padding: 12px;
    
        border-radius: 14px;
    
        background: var(--cream);
    }
    
    .fact-icon {
        width: 34px;
        height: 34px;
    
        display: grid;
        place-items: center;
    
        flex: 0 0 34px;
    
        border-radius: 10px;
    
        background: white;
    
        color: var(--brand);
    
        font-size: 14px;
    }
    
    .service-fact small {
        display: block;
    
        color: var(--muted);
    
        font-size: 8px;
    }
    
    .service-fact strong {
        display: block;
    
        margin-top: 4px;
    
        font-size: 11px;
    }
    
    
    /* ---------------------------------------------------------
       OVERVIEW
    --------------------------------------------------------- */
    
    .service-overview-card {
        position: sticky;
    
        top: 20px;
    }
    
    .service-overview-card h3 {
        margin: 9px 0 22px;
    
        font-size: 20px;
    
        line-height: 1.18;
    
        letter-spacing: -.035em;
    }
    
    .overview-row {
        display: flex;
    
        justify-content: space-between;
    
        gap: 15px;
    
        padding: 13px 0;
    
        border-top: 1px solid var(--border);
    
        font-size: 9px;
    }
    
    .overview-row span {
        color: var(--muted);
    }
    
    .overview-row strong {
        max-width: 62%;
    
        text-align: right;
    }
    
    .overview-status {
        margin-top: 14px;
    
        padding: 11px 12px;
    
        border-radius: 11px;
    
        background: #edf7ef;
    
        color: #2a7540;
    
        font-size: 10px;
    
        font-weight: 800;
    }
    
    
    /* ---------------------------------------------------------
       REVIEWS
    --------------------------------------------------------- */
    
    .service-review-section {
        margin-top: 18px;
    
        padding: 37px 40px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    
        gap: 30px;
    
        border-radius: 25px;
    
        background:
            linear-gradient(
                135deg,
                #4e1b20,
                #2c1115
            );
    
        color: white;
    }
    
    .service-review-kicker {
        color: #d5b1b4;
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .12em;
    }
    
    .review-copy h2 {
        margin: 9px 0 8px;
    
        font-size: 32px;
    
        letter-spacing: -.05em;
    }
    
    .review-copy p {
        max-width: 650px;
    
        margin: 0;
    
        color: #cababc;
    
        font-size: 11px;
    
        line-height: 1.6;
    }
    
    .review-score {
        min-width: 188px;
    
        padding: 20px;
    
        display: flex;
    
        align-items: center;
    
        gap: 15px;
    
        border: 1px solid rgba(255,255,255,.14);
    
        border-radius: 17px;
    
        background: rgba(255,255,255,.055);
    }
    
    .review-score > strong {
        font-size: 37px;
    
        letter-spacing: -.06em;
    }
    
    .review-stars {
        color: var(--gold);
    
        font-size: 12px;
    
        letter-spacing: 1px;
    }
    
    .review-score small {
        display: block;
    
        margin-top: 4px;
    
        color: #c4b3b5;
    
        font-size: 8px;
    }
    
    
    /* ---------------------------------------------------------
       RELATED
    --------------------------------------------------------- */
    
    .related-services-section {
        padding-top: 73px;
    }
    
    .related-heading {
        display: flex;
    
        align-items: end;
    
        justify-content: space-between;
    
        gap: 20px;
    
        margin-bottom: 25px;
    }
    
    .related-heading > div > span {
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .12em;
    }
    
    .related-heading h2 {
        margin: 8px 0 0;
    
        font-size: 34px;
    
        letter-spacing: -.05em;
    }
    
    .related-heading > a {
        color: var(--brand);
    
        font-size: 10px;
    
        font-weight: 800;
    }
    
    .related-service-grid {
        display: grid;
    
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    
        gap: 14px;
    }
    
    .related-service-card {
        overflow: hidden;
    
        border: 1px solid var(--border);
    
        border-radius: 19px;
    
        background: white;
    }
    
    .related-image {
        position: relative;
    
        display: block;
    
        height: 215px;
    
        overflow: hidden;
    }
    
    .related-image img {
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    
        transition: transform .35s ease;
    }
    
    .related-service-card:hover
    .related-image img {
        transform: scale(1.045);
    }
    
    .related-image > span {
        position: absolute;
    
        top: 11px;
        right: 11px;
    
        width: 33px;
        height: 33px;
    
        display: grid;
        place-items: center;
    
        border-radius: 50%;
    
        background: white;
    
        font-size: 15px;
    }
    
    .related-body {
        padding: 15px;
    }
    
    .related-body > small {
        color: var(--brand);
    
        font-size: 8px;
    
        font-weight: 800;
    
        text-transform: uppercase;
    }
    
    .related-body h3 {
        min-height: 38px;
    
        margin: 7px 0 11px;
    
        font-size: 15px;
    
        line-height: 1.17;
    }
    
    .related-meta {
        display: flex;
    
        justify-content: space-between;
    
        gap: 8px;
    
        font-size: 9px;
    }
    
    .related-meta strong {
        max-width: 60%;
    
        overflow: hidden;
    
        white-space: nowrap;
    
        text-overflow: ellipsis;
    }
    
    .related-meta span {
        color: var(--muted);
    
        white-space: nowrap;
    }
    
    .related-link {
        display: inline-block;
    
        margin-top: 12px;
    
        color: var(--brand);
    
        font-size: 10px;
    
        font-weight: 800;
    }
    
    
    /* ---------------------------------------------------------
       RTL
    --------------------------------------------------------- */
    
    html[dir="rtl"] .service-detail-info,
    html[dir="rtl"] .service-about-card,
    html[dir="rtl"] .service-overview-card {
        text-align: right;
    }
    
    html[dir="rtl"] .service-category-line,
    html[dir="rtl"] .service-rating-row,
    html[dir="rtl"] .service-vendor-card,
    html[dir="rtl"] .service-trust-row {
        direction: rtl;
    }
    
    html[dir="rtl"] .vendor-profile-link {
        margin-left: 0;
        margin-right: auto;
    }
    
    html[dir="rtl"] .gallery-heart {
        right: auto;
        left: 17px;
    }
    
    html[dir="rtl"] .gallery-prev {
        left: auto;
        right: 17px;
    }
    
    html[dir="rtl"] .gallery-next {
        right: auto;
        left: 17px;
    }
    
    html[dir="rtl"] .related-image > span {
        right: auto;
        left: 11px;
    }
    
    html[dir="rtl"] .overview-row strong {
        text-align: left;
    }
    
    html[dir="rtl"] .service-review-section,
    html[dir="rtl"] .related-heading {
        direction: rtl;
    }
    
    
    /* ---------------------------------------------------------
       RESPONSIVE
    --------------------------------------------------------- */
    
    @media (max-width: 1150px) {
    
        .service-detail-layout {
            grid-template-columns:
                minmax(0, 1fr)
                minmax(350px, .8fr);
    
            gap: 28px;
        }
    
        .service-gallery-main {
            height: 540px;
        }
    
        .service-information-grid {
            grid-template-columns: 1fr 285px;
        }
    
        .related-service-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    
    }
    
    
    @media (max-width: 950px) {
    
        .service-detail-layout {
            grid-template-columns: 1fr;
        }
    
        .service-detail-info {
            padding-top: 0;
        }
    
        .service-gallery {
            position: static;
        }
    
        .service-gallery-main {
            height: 600px;
        }
    
        .service-overview-card {
            position: static;
        }
    
        .service-information-grid {
            grid-template-columns: 1fr;
        }
    
    }
    
    
    @media (max-width: 720px) {
    
        .service-detail-page {
            padding-top: 22px;
        }
    
        .service-gallery-main {
            height: 480px;
    
            border-radius: 22px;
        }
    
        .service-detail-title {
            font-size: 45px;
        }
    
        .service-trust-row {
            grid-template-columns: 1fr;
        }
    
        .service-information-grid {
            margin-top: 48px;
        }
    
        .service-review-section {
            flex-direction: column;
    
            align-items: flex-start;
    
            padding: 28px 24px;
        }
    
        .review-score {
            width: 100%;
        }
    
        .related-service-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    
    }
    
    
    @media (max-width: 520px) {
    
        .service-detail-layout {
            gap: 22px;
        }
    
        .service-gallery-main {
            height: 370px;
        }
    
        .service-detail-title {
            font-size: 39px;
        }
    
        .service-category-line {
            font-size: 8px;
        }
    
        .service-cta {
            padding: 15px;
        }
    
        .service-cta-buttons {
            grid-template-columns: 1fr;
        }
    
        .service-facts {
            grid-template-columns: 1fr;
        }
    
        .service-about-card,
        .service-overview-card {
            padding: 21px;
        }
    
        .service-description {
            font-size: 13px;
            line-height: 1.8;
        }
    
        .service-thumbnails {
            grid-template-columns: repeat(4, 1fr);
        }
    
        .service-thumbnail {
            height: 62px;
        }
    
        .related-heading {
            align-items: flex-start;
    
            flex-direction: column;
        }
    
        .related-heading h2 {
            font-size: 28px;
        }
    
        .related-service-grid {
            grid-template-columns: 1fr;
        }
    
        .related-image {
            height: 245px;
        }
    
    }
    
    /* =========================================================
       PREMIUM AUTH / LOGIN
    ========================================================= */
    
    .auth-page-body {
        min-height: 100vh;
        margin: 0;
        background: #f5f0ec;
    }
    
    .auth-shell {
        min-height: 100vh;
    
        display: grid;
    
        grid-template-columns:
            minmax(380px, .9fr)
            minmax(500px, 1.1fr);
    }
    
    
    /* ---------------------------------------------------------
       BRAND SIDE
    --------------------------------------------------------- */
    
    .auth-brand-panel {
        position: relative;
    
        min-height: 100vh;
    
        display: flex;
    
        flex-direction: column;
    
        overflow: hidden;
    
        padding: 38px 48px;
    
        background:
            radial-gradient(
                circle at 20% 20%,
                rgba(255,255,255,.11),
                transparent 30%
            ),
            linear-gradient(
                145deg,
                #5d242a 0%,
                #40171b 50%,
                #241013 100%
            );
    
        color: white;
    }
    
    .auth-brand-panel::before {
        content: "";
    
        position: absolute;
    
        width: 380px;
        height: 380px;
    
        right: -180px;
        bottom: -170px;
    
        border: 1px solid rgba(255,255,255,.08);
    
        border-radius: 50%;
    }
    
    .auth-brand-panel::after {
        content: "";
    
        position: absolute;
    
        width: 210px;
        height: 210px;
    
        left: -125px;
        top: 36%;
    
        border: 1px solid rgba(255,255,255,.07);
    
        border-radius: 50%;
    }
    
    .auth-brand-top {
        position: relative;
    
        z-index: 2;
    
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    }
    
    .auth-logo {
        display: inline-flex;
    
        align-items: center;
    }
    
    .auth-logo img {
        width: 148px;
        height: auto;
    
        display: block;
    
        filter: brightness(0) invert(1);
    }
    
    .auth-language {
        color: rgba(255,255,255,.82);
    
        font-size: 11px;
    
        font-weight: 600;
    }
    
    .auth-brand-content {
        position: relative;
    
        z-index: 2;
    
        max-width: 580px;
    
        margin: auto 0;
    }
    
    .auth-eyebrow,
    .auth-form-eyebrow {
        display: inline-block;
    
        color: #e4bfc1;
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .16em;
    
        text-transform: uppercase;
    }
    
    .auth-brand-content h1 {
        max-width: 570px;
    
        margin: 17px 0 20px;
    
        font-size: clamp(48px, 5vw, 78px);
    
        line-height: .94;
    
        letter-spacing: -.065em;
    }
    
    .auth-brand-content > p {
        max-width: 510px;
    
        margin: 0;
    
        color: rgba(255,255,255,.68);
    
        font-size: 14px;
    
        line-height: 1.8;
    }
    
    .auth-benefits {
        display: grid;
    
        gap: 14px;
    
        max-width: 490px;
    
        margin-top: 42px;
    }
    
    .auth-benefits > div {
        display: flex;
    
        align-items: center;
    
        gap: 13px;
    
        padding: 13px 0;
    }
    
    .auth-benefits > div > span {
        width: 37px;
        height: 37px;
    
        flex: 0 0 37px;
    
        display: grid;
    
        place-items: center;
    
        border: 1px solid rgba(255,255,255,.12);
    
        border-radius: 12px;
    
        background: rgba(255,255,255,.06);
    
        color: #efcbcd;
    }
    
    .auth-benefits strong {
        display: block;
    
        margin-bottom: 2px;
    
        font-size: 12px;
    }
    
    .auth-benefits small {
        display: block;
    
        color: rgba(255,255,255,.48);
    
        font-size: 9px;
    }
    
    .auth-brand-footer {
        position: relative;
    
        z-index: 2;
    
        color: rgba(255,255,255,.42);
    
        font-size: 9px;
    }
    
    
    /* ---------------------------------------------------------
       FORM SIDE
    --------------------------------------------------------- */
    
    .auth-form-panel {
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        padding: 50px 30px;
    
        background:
            linear-gradient(
                180deg,
                #fbfaf9 0%,
                #f5f0ec 100%
            );
    }
    
    .auth-form-wrap {
        width: min(440px, 100%);
    }
    
    .auth-mobile-logo {
        display: none;
    }
    
    .auth-form-eyebrow {
        color: var(--brand);
    }
    
    .auth-form-wrap h2 {
        margin: 11px 0 9px;
    
        font-size: clamp(35px, 4vw, 50px);
    
        line-height: 1;
    
        letter-spacing: -.06em;
    }
    
    .auth-form-intro {
        max-width: 390px;
    
        margin: 0 0 30px;
    
        color: var(--muted);
    
        font-size: 12px;
    
        line-height: 1.7;
    }
    
    
    /* ERROR */
    
    .auth-error {
        margin-bottom: 18px;
    
        padding: 11px 13px;
    
        border: 1px solid #e7b7ba;
    
        border-radius: 10px;
    
        background: #fff1f2;
    
        color: #9a2d35;
    
        font-size: 10px;
    
        line-height: 1.5;
    }
    
    
    /* FORM */
    
    .auth-form {
        display: grid;
    
        gap: 17px;
    }
    
    .auth-field {
        display: grid;
    
        gap: 7px;
    }
    
    .auth-field > label,
    .auth-label-row label {
        font-size: 10px;
    
        font-weight: 800;
    }
    
    .auth-label-row {
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    }
    
    .auth-label-row a {
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 700;
    }
    
    .auth-input-wrap {
        display: flex;
    
        align-items: center;
    
        min-height: 54px;
    
        border: 1px solid #ded7d2;
    
        border-radius: 13px;
    
        background: white;
    
        transition: .2s;
    }
    
    .auth-input-wrap:focus-within {
        border-color: var(--brand);
    
        box-shadow:
            0 0 0 4px rgba(96,37,43,.06);
    }
    
    .auth-input-wrap > span {
        width: 45px;
    
        display: grid;
    
        place-items: center;
    
        color: #958d89;
    
        font-size: 12px;
    }
    
    .auth-input-wrap input {
        min-width: 0;
        flex: 1;
    
        height: 52px;
    
        border: 0;
    
        outline: 0;
    
        background: transparent;
    
        color: var(--ink);
    
        font-size: 12px;
    }
    
    .auth-password-toggle {
        width: 44px;
        height: 42px;
    
        margin-right: 4px;
    
        border: 0;
    
        background: transparent;
    
        color: #8b8380;
    
        cursor: pointer;
    }
    
    
    /* SUBMIT */
    
    .auth-submit {
        position: relative;
    
        min-height: 54px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 9px;
    
        border: 0;
    
        border-radius: 13px;
    
        background:
            linear-gradient(
                135deg,
                #6b292f,
                #4b1a20
            );
    
        color: white;
    
        font-size: 11px;
    
        font-weight: 800;
    
        cursor: pointer;
    
        box-shadow:
            0 13px 25px rgba(77,29,34,.18);
    
        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }
    
    .auth-submit:hover:not(:disabled) {
        transform: translateY(-2px);
    
        box-shadow:
            0 17px 30px rgba(77,29,34,.22);
    }
    
    .auth-submit:disabled {
        opacity: .65;
    
        cursor: wait;
    }
    
    .auth-spinner {
        width: 15px;
        height: 15px;
    
        border: 2px solid rgba(255,255,255,.35);
    
        border-top-color: white;
    
        border-radius: 50%;
    
        animation:
            auth-spin .7s linear infinite;
    }
    
    @keyframes auth-spin {
    
        to {
            transform: rotate(360deg);
        }
    
    }
    
    
    /* DIVIDER */
    
    .auth-divider {
        display: flex;
    
        align-items: center;
    
        gap: 12px;
    
        margin: 25px 0 16px;
    
        color: #a29a96;
    
        font-size: 9px;
    }
    
    .auth-divider::before,
    .auth-divider::after {
        content: "";
    
        height: 1px;
    
        flex: 1;
    
        background: #e2dcd8;
    }
    
    
    /* SOCIAL */
    
    .auth-socials {
        display: grid;
    
        grid-template-columns: 1fr 1fr;
    
        gap: 9px;
    }
    
    .auth-social {
        min-height: 49px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 8px;
    
        border: 1px solid #ded7d2;
    
        border-radius: 12px;
    
        background: white;
    
        color: var(--ink);
    
        font-size: 10px;
    
        font-weight: 700;
    
        cursor: pointer;
    
        transition: .2s;
    }
    
    .auth-social:hover {
        border-color: #c9beb9;
    
        transform: translateY(-1px);
    }
    
    .social-google,
    .social-apple {
        font-size: 15px;
    
        font-weight: 800;
    }
    
    
    /* ACCOUNT NOTE */
    
    .auth-account-note {
        margin: 24px 0 0;
    
        text-align: center;
    
        color: var(--muted);
    
        font-size: 10px;
    }
    
    .auth-account-note a {
        color: var(--brand);
    
        font-weight: 800;
    }
    
    
    /* SECURITY */
    
    .auth-security-note {
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 7px;
    
        margin-top: 17px;
    
        color: #9d9591;
    
        font-size: 8px;
    }
    
    
    /* RTL */
    
    html[dir="rtl"] .auth-shell {
        direction: rtl;
    }
    
    html[dir="rtl"] .auth-label-row,
    html[dir="rtl"] .auth-benefits,
    html[dir="rtl"] .auth-brand-content,
    html[dir="rtl"] .auth-form-wrap {
        text-align: right;
    }
    
    html[dir="rtl"] .auth-password-toggle {
        margin-right: 0;
        margin-left: 4px;
    }
    
    html[dir="rtl"] .auth-benefits > div {
        direction: rtl;
    }
    
    html[dir="rtl"] .auth-language {
        direction: ltr;
    }
    
    
    /* RESPONSIVE */
    
    @media (max-width: 900px) {
    
        .auth-shell {
            grid-template-columns: 1fr;
        }
    
        .auth-brand-panel {
            display: none;
        }
    
        .auth-form-panel {
            min-height: 100vh;
    
            padding: 30px 22px;
        }
    
        .auth-mobile-logo {
            display: flex;
    
            justify-content: center;
    
            margin-bottom: 35px;
        }
    
        .auth-mobile-logo img {
            width: 150px;
    
            display: block;
        }
    
    }
    
    
    @media (max-width: 520px) {
    
        .auth-form-panel {
            padding: 25px 16px;
        }
    
        .auth-form-wrap {
            width: 100%;
        }
    
        .auth-form-wrap h2 {
            font-size: 36px;
        }
    
        .auth-socials {
            grid-template-columns: 1fr;
        }
    
    }
    
    /* =========================================================
       HEADER AUTH STATE
    ========================================================= */
    
    .header-account-area {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .header-user {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }
    
    .header-user-avatar {
        width: 32px;
        height: 32px;
    
        flex: 0 0 32px;
    
        display: grid;
        place-items: center;
    
        overflow: hidden;
    
        border-radius: 50%;
    
        background: var(--brand-soft);
    
        color: var(--brand);
    
        font-size: 11px;
        font-weight: 800;
    }
    
    .header-user-avatar img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
    
    .header-user-name {
        max-width: 110px;
    
        overflow: hidden;
    
        text-overflow: ellipsis;
    
        white-space: nowrap;
    
        color: var(--ink);
    
        font-size: 10px;
        font-weight: 700;
    }
    
    .header-logout-form {
        margin: 0;
    }
    
    .header-logout-button {
        display: flex;
        align-items: center;
        gap: 6px;
    
        padding: 0;
    
        border: 0;
    
        background: transparent;
    
        color: var(--brand);
    
        font: inherit;
    
        cursor: pointer;
    
        transition: opacity .2s ease;
    }
    
    .header-logout-button:hover {
        opacity: .7;
    }
    
    .header-login-action {
        color: inherit;
    }
    
    @media (max-width: 720px) {
    
        .header-user-name {
            display: none;
        }
    
        .header-account-area {
            gap: 10px;
        }
    
    }
    
    /* =========================================================
       RESPONSIVE MARKETPLACE NAVIGATION
    ========================================================= */
    
    .mobile-menu-button {
        display: none;
    
        width: 42px;
        height: 42px;
    
        align-items: center;
        justify-content: center;
    
        border: 1px solid #e1d9d4;
        border-radius: 12px;
    
        background: #f5ece8;
    
        color: var(--brand);
    
        cursor: pointer;
    
        transition:
            background .2s ease,
            border-color .2s ease,
            transform .2s ease;
    }
    
    .mobile-menu-button:hover {
        background: #efe3de;
    
        border-color: #d8c9c3;
    
        transform: translateY(-1px);
    }
    
    .menu-icon {
        width: 17px;
    
        display: flex;
    
        flex-direction: column;
    
        gap: 4px;
    }
    
    .menu-icon span {
        width: 100%;
        height: 1.5px;
    
        display: block;
    
        background: currentColor;
    
        transition:
            transform .25s ease,
            opacity .2s ease;
    }
    
    
    /* =========================================================
       MOBILE DRAWER
    ========================================================= */
    
    .mobile-nav-overlay {
        position: fixed;
    
        inset: 0;
    
        z-index: 998;
    
        background: rgba(21, 14, 15, .42);
    
        opacity: 0;
    
        visibility: hidden;
    
        backdrop-filter: blur(4px);
    
        transition:
            opacity .28s ease,
            visibility .28s ease;
    }
    
    .mobile-nav-overlay.is-open {
        opacity: 1;
    
        visibility: visible;
    }
    
    
    .mobile-navigation {
        position: fixed;
    
        top: 0;
        bottom: 0;
    
        left: 0;
    
        z-index: 999;
    
        width: min(390px, 88vw);
    
        display: flex;
    
        flex-direction: column;
    
        overflow-y: auto;
    
        background:
            linear-gradient(
                180deg,
                #fffdfc 0%,
                #f7f1ed 100%
            );
    
        box-shadow:
            20px 0 60px rgba(42, 20, 22, .16);
    
        transform: translateX(-105%);
    
        transition:
            transform .34s cubic-bezier(.22,.61,.36,1);
    }
    
    .mobile-navigation.is-open {
        transform: translateX(0);
    }
    
    
    /* RTL */
    
    html[dir="rtl"] .mobile-navigation {
        left: auto;
    
        right: 0;
    
        transform:
            translateX(105%);
    
        box-shadow:
            -20px 0 60px rgba(42, 20, 22, .16);
    }
    
    html[dir="rtl"] .mobile-navigation.is-open {
        transform: translateX(0);
    }
    
    
    /* =========================================================
       DRAWER HEADER
    ========================================================= */
    
    .mobile-navigation-header {
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    
        padding: 22px 20px 18px;
    
        border-bottom: 1px solid #ebe3de;
    }
    
    .mobile-navigation-logo img {
        width: 105px;
    
        display: block;
    }
    
    .mobile-navigation-close {
        width: 39px;
        height: 39px;
    
        display: grid;
    
        place-items: center;
    
        border: 1px solid #e1d9d4;
    
        border-radius: 11px;
    
        background: white;
    
        color: var(--ink);
    
        font-size: 24px;
    
        line-height: 1;
    
        cursor: pointer;
    
        transition:
            transform .2s ease,
            background .2s ease;
    }
    
    .mobile-navigation-close:hover {
        transform: rotate(4deg);
    
        background: #f4ebe7;
    }
    
    
    /* =========================================================
       MOBILE SEARCH
    ========================================================= */
    
    .mobile-navigation-search {
        display: flex;
    
        align-items: center;
    
        gap: 8px;
    
        margin: 20px;
    
        min-height: 48px;
    
        padding: 4px;
    
        border: 1px solid #ded6d1;
    
        border-radius: 13px;
    
        background: white;
    
        box-shadow:
            0 8px 24px rgba(38, 21, 22, .05);
    }
    
    .mobile-navigation-search > span {
        width: 34px;
    
        display: grid;
    
        place-items: center;
    
        color: #847a75;
    
        font-size: 14px;
    }
    
    .mobile-navigation-search input {
        min-width: 0;
    
        flex: 1;
    
        border: 0;
    
        outline: 0;
    
        background: transparent;
    
        font: inherit;
    
        color: var(--ink);
    
        font-size: 11px;
    }
    
    .mobile-navigation-search button {
        min-height: 39px;
    
        padding: 0 13px;
    
        border: 0;
    
        border-radius: 10px;
    
        background: var(--brand);
    
        color: white;
    
        font: inherit;
    
        font-size: 10px;
    
        font-weight: 800;
    
        cursor: pointer;
    }
    
    
    /* =========================================================
       LINKS
    ========================================================= */
    
    .mobile-navigation-links {
        padding: 2px 20px;
    }
    
    .mobile-navigation-link {
        position: relative;
    
        display: flex;
    
        align-items: center;
    
        gap: 14px;
    
        min-height: 54px;
    
        border-bottom: 1px solid #ebe4df;
    
        color: var(--ink);
    
        font-size: 12px;
    
        font-weight: 700;
    
        transition:
            color .2s ease,
            padding .2s ease;
    }
    
    .mobile-navigation-link span {
        width: 24px;
    
        color: #a29893;
    
        font-size: 8px;
    
        font-weight: 700;
    
        letter-spacing: .08em;
    
        transition:
            color .2s ease;
    }
    
    .mobile-navigation-link:hover {
        padding-left: 5px;
    
        color: var(--brand);
    }
    
    .mobile-navigation-link:hover span {
        color: var(--brand);
    }
    
    html[dir="rtl"] .mobile-navigation-link:hover {
        padding-left: 0;
    
        padding-right: 5px;
    }
    
    
    /* =========================================================
       ACCOUNT
    ========================================================= */
    
    .mobile-account-section {
        margin: auto 20px 20px;
    
        padding-top: 22px;
    }
    
    .mobile-user-card {
        display: flex;
    
        align-items: center;
    
        gap: 11px;
    
        padding: 13px;
    
        border: 1px solid #e3dad5;
    
        border-radius: 14px;
    
        background: white;
    }
    
    .mobile-user-avatar {
        width: 40px;
        height: 40px;
    
        flex: 0 0 40px;
    
        display: grid;
    
        place-items: center;
    
        overflow: hidden;
    
        border-radius: 50%;
    
        background: var(--brand-soft);
    
        color: var(--brand);
    
        font-size: 12px;
    
        font-weight: 800;
    }
    
    .mobile-user-avatar img {
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    }
    
    .mobile-user-info {
        min-width: 0;
    }
    
    .mobile-user-info span {
        display: block;
    
        margin-bottom: 3px;
    
        color: var(--muted);
    
        font-size: 8px;
    }
    
    .mobile-user-info strong {
        display: block;
    
        overflow: hidden;
    
        text-overflow: ellipsis;
    
        white-space: nowrap;
    
        font-size: 11px;
    }
    
    .mobile-login-button,
    .mobile-logout-form button {
        width: 100%;
    
        min-height: 48px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 9px;
    
        margin-top: 10px;
    
        border-radius: 12px;
    
        background: var(--brand);
    
        color: white;
    
        font-size: 10px;
    
        font-weight: 800;
    
        cursor: pointer;
    
        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }
    
    .mobile-login-button:hover,
    .mobile-logout-form button:hover {
        transform: translateY(-1px);
    
        box-shadow:
            0 9px 22px rgba(94, 36, 43, .18);
    }
    
    .mobile-logout-form {
        margin: 0;
    }
    
    .mobile-logout-form button {
        border: 0;
    }
    
    .mobile-logout-form button span {
        font-size: 15px;
    }
    
    .mobile-account-secondary {
        display: grid;
    
        grid-template-columns: 1fr 1fr;
    
        gap: 8px;
    
        margin-top: 9px;
    }
    
    .mobile-account-secondary a {
        min-height: 41px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        border: 1px solid #e1d8d3;
    
        border-radius: 11px;
    
        background: rgba(255,255,255,.7);
    
        color: var(--ink);
    
        font-size: 9px;
    
        font-weight: 700;
    
        transition:
            border-color .2s ease,
            background .2s ease;
    }
    
    .mobile-account-secondary a:hover {
        border-color: #cdbdb6;
    
        background: white;
    }
    
    
    /* =========================================================
       FOOTER
    ========================================================= */
    
    .mobile-navigation-footer {
        display: flex;
    
        justify-content: space-between;
    
        padding: 15px 20px 20px;
    
        border-top: 1px solid #e8dfda;
    
        color: #9c928d;
    
        font-size: 8px;
    }
    
    
    /* =========================================================
       BODY LOCK
    ========================================================= */
    
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    
    /* =========================================================
       DESKTOP HEADER POLISH
    ========================================================= */
    
    @media (min-width: 1025px) {
    
        .navigation-link,
        .header-action,
        .header-logout-button {
            transition:
                color .2s ease,
                opacity .2s ease;
        }
    
        .navigation-link:hover {
            color: var(--brand);
        }
    
        .header-action:hover {
            color: var(--brand);
        }
    
    }
    
    
    /* =========================================================
       TABLET
    ========================================================= */
    
    @media (max-width: 1024px) {
    
        .top-strip {
            display: none;
        }
    
        .market-header {
            position: relative;
    
            z-index: 900;
        }
    
        .header-main {
            min-height: 76px;
    
            display: grid;
    
            grid-template-columns:
                auto
                1fr
                auto;
    
            gap: 14px;
    
            padding: 10px 18px;
        }
    
        .mawajib-logo-image {
            width: 95px;
            max-height: 54px;
    
            object-fit: contain;
        }
    
        .header-search-form {
            max-width: none;
    
            min-width: 0;
        }
    
        .header-search-form input {
            min-width: 0;
        }
    
        .header-actions {
            gap: 10px;
        }
    
        .main-navigation {
            overflow-x: auto;
        }
    
        .navigation-inner {
            justify-content: flex-start;
    
            gap: 24px;
    
            padding-left: 18px;
            padding-right: 18px;
        }
    
        .mobile-menu-button {
            display: flex;
        }
    
    }
    
    
    /* =========================================================
       PHONE
    ========================================================= */
    
    @media (max-width: 700px) {
    
        .header-main {
            min-height: 70px;
    
            grid-template-columns:
                auto
                1fr
                auto;
    
            padding: 8px 14px;
    
            gap: 9px;
        }
    
        .mawajib-logo-image {
            width: 83px;
    
            max-height: 52px;
        }
    
        .header-search-form {
            min-height: 46px;
    
            margin: 0;
        }
    
        .header-search-form .header-search-icon {
            display: none;
        }
    
        .header-search-form input {
            min-width: 0;
    
            font-size: 10px;
        }
    
        .header-search-form button {
            min-width: 72px;
    
            padding: 0 12px;
        }
    
        .header-actions {
            gap: 6px;
        }
    
        .header-actions > .header-action {
            display: none;
        }
    
        .header-account-area {
            display: none;
        }
    
        .mobile-menu-button {
            width: 42px;
            height: 42px;
    
            display: flex;
        }
    
        .main-navigation {
            display: none;
        }
    
    }
    
    
    /* =========================================================
       SMALL PHONE
    ========================================================= */
    
    @media (max-width: 430px) {
    
        .header-main {
            grid-template-columns:
                auto
                1fr
                auto;
        }
    
        .mawajib-logo-image {
            width: 73px;
        }
    
        .header-search-form {
            min-height: 43px;
        }
    
        .header-search-form input {
            font-size: 9px;
        }
    
        .header-search-form button {
            min-width: 61px;
    
            font-size: 9px;
        }
    
        .mobile-navigation {
            width: min(360px, 91vw);
        }
    
    }
    
    /* =========================================================
       CUSTOMER ACCOUNT
    ========================================================= */
    
    .account-page {
        min-height: 100vh;
    
        padding:
            55px 0
            90px;
    
        background:
            linear-gradient(
                180deg,
                #f8f3ef 0%,
                #fdfbf9 100%
            );
    }
    
    .account-container {
        max-width: 1280px;
    }
    
    
    /* PROFILE */
    
    .account-profile-card {
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    
        gap: 30px;
    
        padding: 30px;
    
        border: 1px solid #e4dad4;
    
        border-radius: 22px;
    
        background: rgba(255,255,255,.82);
    
        box-shadow:
            0 16px 45px rgba(49, 27, 28, .055);
    
        backdrop-filter: blur(12px);
    }
    
    .account-profile-main {
        display: flex;
    
        align-items: center;
    
        gap: 20px;
    
        min-width: 0;
    }
    
    .account-avatar {
        width: 88px;
        height: 88px;
    
        flex: 0 0 88px;
    
        display: grid;
    
        place-items: center;
    
        overflow: hidden;
    
        border-radius: 24px;
    
        background:
            linear-gradient(
                135deg,
                #6b292f,
                #3f171c
            );
    
        color: white;
    
        font-size: 28px;
    
        font-weight: 800;
    
        box-shadow:
            0 15px 30px rgba(73, 29, 34, .17);
    }
    
    .account-avatar img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: cover;
    }
    
    .account-eyebrow,
    .account-section-heading > div > span,
    .account-side-card > span,
    .account-placeholder-section > span {
        display: block;
    
        margin-bottom: 7px;
    
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .14em;
    
        text-transform: uppercase;
    }
    
    .account-profile-copy h1 {
        margin: 0;
    
        font-size: clamp(28px, 3vw, 42px);
    
        line-height: 1;
    
        letter-spacing: -.05em;
    }
    
    .account-profile-copy p {
        margin: 8px 0 0;
    
        color: var(--muted);
    
        font-size: 11px;
    }
    
    .account-edit-button {
        display: inline-flex;
    
        align-items: center;
    
        justify-content: center;
    
        min-height: 43px;
    
        padding: 0 18px;
    
        border: 1px solid #ded3ce;
    
        border-radius: 11px;
    
        background: white;
    
        color: var(--ink);
    
        font-size: 10px;
    
        font-weight: 800;
    
        transition:
            transform .2s ease,
            border-color .2s ease;
    }
    
    .account-edit-button:hover {
        transform: translateY(-1px);
    
        border-color: var(--brand);
    }
    
    
    /* STATS */
    
    .account-stats {
        display: grid;
    
        grid-template-columns:
            repeat(4, 1fr);
    
        gap: 10px;
    
        margin-top: 13px;
    }
    
    .account-stat {
        display: flex;
    
        flex-direction: column;
    
        justify-content: center;
    
        min-height: 92px;
    
        padding: 18px;
    
        border: 1px solid #e5dbd6;
    
        border-radius: 16px;
    
        background: white;
    
        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }
    
    .account-stat:hover {
        transform: translateY(-2px);
    
        box-shadow:
            0 12px 28px rgba(54, 29, 31, .06);
    }
    
    .account-stat strong {
        font-size: 25px;
    
        letter-spacing: -.04em;
    }
    
    .account-stat span {
        margin-top: 3px;
    
        color: var(--muted);
    
        font-size: 9px;
    }
    
    
    /* CONTENT */
    
    .account-content-grid {
        display: grid;
    
        grid-template-columns:
            minmax(0, 1fr)
            290px;
    
        gap: 20px;
    
        margin-top: 20px;
    }
    
    .account-main-column {
        display: grid;
    
        gap: 20px;
    }
    
    .account-section {
        padding: 27px;
    
        border: 1px solid #e5dbd6;
    
        border-radius: 20px;
    
        background: white;
    }
    
    .account-section-heading {
        display: flex;
    
        align-items: flex-end;
    
        justify-content: space-between;
    
        margin-bottom: 21px;
    }
    
    .account-section-heading h2,
    .account-placeholder-section h2 {
        margin: 0;
    
        font-size: 25px;
    
        line-height: 1.05;
    
        letter-spacing: -.045em;
    }
    
    
    /* INTERESTS */
    
    .interest-chips {
        display: flex;
    
        flex-wrap: wrap;
    
        gap: 8px;
    }
    
    .interest-chips span {
        padding: 10px 13px;
    
        border: 1px solid #e6dad5;
    
        border-radius: 999px;
    
        background: #faf5f2;
    
        color: var(--ink);
    
        font-size: 9px;
    
        font-weight: 700;
    }
    
    .account-section-note {
        max-width: 640px;
    
        margin: 17px 0 0;
    
        color: var(--muted);
    
        font-size: 10px;
    
        line-height: 1.7;
    }
    
    
    /* FOLLOWING */
    
    .following-grid {
        display: grid;
    
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    
        gap: 13px;
    }
    
    .following-card {
        overflow: hidden;
    
        border: 1px solid #e5dbd6;
    
        border-radius: 16px;
    
        background: #fff;
    }
    
    .following-cover {
        position: relative;
    
        height: 120px;
    
        overflow: hidden;
    
        background: #eee5df;
    }
    
    .following-cover img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: cover;
    }
    
    .following-cover-placeholder {
        width: 100%;
        height: 100%;
    
        background:
            linear-gradient(
                135deg,
                #ddd0c8,
                #f2eae5
            );
    }
    
    .following-logo {
        position: absolute;
    
        left: 15px;
        bottom: -19px;
    
        width: 48px;
        height: 48px;
    
        display: grid;
    
        place-items: center;
    
        overflow: hidden;
    
        border: 3px solid white;
    
        border-radius: 14px;
    
        background: white;
    
        box-shadow:
            0 8px 18px rgba(40, 23, 25, .11);
    }
    
    .following-logo img {
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    }
    
    .following-logo span {
        color: var(--brand);
    
        font-size: 15px;
    
        font-weight: 800;
    }
    
    .following-content {
        padding: 31px 15px 15px;
    }
    
    .following-content > span {
        color: var(--brand);
    
        font-size: 8px;
    
        font-weight: 800;
    
        letter-spacing: .1em;
    
        text-transform: uppercase;
    }
    
    .following-content h3 {
        margin: 5px 0 4px;
    
        font-size: 15px;
    
        letter-spacing: -.025em;
    }
    
    .following-content p {
        margin: 0;
    
        min-height: 15px;
    
        overflow: hidden;
    
        color: var(--muted);
    
        font-size: 9px;
    
        text-overflow: ellipsis;
    
        white-space: nowrap;
    }
    
    .following-meta {
        display: flex;
    
        gap: 10px;
    
        margin-top: 12px;
    
        color: #7f7672;
    
        font-size: 8px;
    }
    
    .following-meta span:first-child {
        color: #a36f19;
    
        font-weight: 700;
    }
    
    .following-view {
        display: block;
    
        margin-top: 14px;
    
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 800;
    }
    
    
    /* EMPTY */
    
    .account-empty-state {
        padding: 45px 25px;
    
        text-align: center;
    
        border: 1px dashed #ddcfca;
    
        border-radius: 14px;
    
        background: #fcf8f5;
    }
    
    .account-empty-icon {
        width: 42px;
        height: 42px;
    
        display: grid;
    
        place-items: center;
    
        margin: 0 auto 14px;
    
        border-radius: 50%;
    
        background: #f1e5df;
    
        color: var(--brand);
    }
    
    .account-empty-state h3 {
        margin: 0;
    
        font-size: 15px;
    }
    
    .account-empty-state p {
        max-width: 390px;
    
        margin: 8px auto 17px;
    
        color: var(--muted);
    
        font-size: 10px;
    
        line-height: 1.6;
    }
    
    .account-empty-state a {
        color: var(--brand);
    
        font-size: 10px;
    
        font-weight: 800;
    }
    
    
    /* SIDEBAR */
    
    .account-sidebar {
        display: grid;
    
        align-content: start;
    
        gap: 13px;
    }
    
    .account-side-card {
        padding: 21px;
    
        border: 1px solid #e5dbd6;
    
        border-radius: 17px;
    
        background: white;
    }
    
    .account-side-card > a,
    .account-side-card form button {
        width: 100%;
    
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    
        min-height: 45px;
    
        border-bottom: 1px solid #eee6e2;
    
        color: var(--ink);
    
        font-size: 9px;
    
        font-weight: 700;
    }
    
    .account-side-card > a:hover,
    .account-side-card form button:hover {
        color: var(--brand);
    }
    
    .account-side-card form {
        margin: 0;
    }
    
    .account-side-logout {
        padding: 0;
    
        border: 0;
    
        background: transparent;
    
        cursor: pointer;
    
        font: inherit;
    }
    
    .account-side-tip {
        background:
            linear-gradient(
                145deg,
                #5c252b,
                #3b161a
            );
    
        color: white;
    }
    
    .account-side-tip > span {
        color: #edc9cc;
    }
    
    .account-side-tip h3 {
        margin: 8px 0;
    
        font-size: 22px;
    
        line-height: 1.05;
    
        letter-spacing: -.04em;
    }
    
    .account-side-tip p {
        margin: 0 0 18px;
    
        color: rgba(255,255,255,.62);
    
        font-size: 9px;
    
        line-height: 1.7;
    }
    
    .account-side-tip a {
        display: inline-flex;
    
        min-height: 37px;
    
        align-items: center;
    
        padding: 0 13px;
    
        border-radius: 10px;
    
        background: white;
    
        color: #42191e;
    
        font-size: 9px;
    
        font-weight: 800;
    }
    
    
    /* PLACEHOLDER */
    
    .account-placeholder-section {
        background:
            linear-gradient(
                180deg,
                white,
                #fbf7f4
            );
    }
    
    .account-placeholder-section p {
        max-width: 600px;
    
        margin: 10px 0 0;
    
        color: var(--muted);
    
        font-size: 10px;
    
        line-height: 1.7;
    }
    
    
    /* RTL */
    
    html[dir="rtl"] .account-profile-main,
    html[dir="rtl"] .account-content-grid {
        direction: rtl;
    }
    
    html[dir="rtl"] .following-logo {
        left: auto;
        right: 15px;
    }
    
    html[dir="rtl"] .account-profile-copy,
    html[dir="rtl"] .account-side-card,
    html[dir="rtl"] .account-section {
        text-align: right;
    }
    
    
    /* RESPONSIVE */
    
    @media (max-width: 900px) {
    
        .account-content-grid {
            grid-template-columns: 1fr;
        }
    
        .account-sidebar {
            grid-template-columns:
                repeat(2, minmax(0, 1fr));
        }
    
    }
    
    @media (max-width: 650px) {
    
        .account-page {
            padding-top: 28px;
        }
    
        .account-profile-card {
            align-items: flex-start;
    
            flex-direction: column;
    
            padding: 20px;
        }
    
        .account-edit-button {
            width: 100%;
        }
    
        .account-stats {
            grid-template-columns:
                repeat(2, 1fr);
        }
    
        .following-grid {
            grid-template-columns: 1fr;
        }
    
        .account-section {
            padding: 20px;
        }
    
        .account-sidebar {
            grid-template-columns: 1fr;
        }
    
    }
    
    @media (max-width: 430px) {
    
        .account-profile-main {
            align-items: flex-start;
    
            gap: 13px;
        }
    
        .account-avatar {
            width: 68px;
            height: 68px;
    
            flex-basis: 68px;
    
            border-radius: 18px;
    
            font-size: 22px;
        }
    
        .account-profile-copy h1 {
            font-size: 28px;
        }
    
    }
    
    /* =========================================================
       MAWAJIB PRIVACY POLICY
    ========================================================= */
    
    .privacy-page {
        background:
            linear-gradient(
                180deg,
                #f8f4f1 0%,
                #fbfaf8 48%,
                #f7f1ed 100%
            );
    
        padding:
            58px 0
            90px;
    }
    
    .privacy-container {
        width: min(
            1180px,
            calc(100% - 40px)
        );
    
        margin: 0 auto;
    }
    
    
    /* =========================================================
       HERO
    ========================================================= */
    
    .privacy-hero {
        position: relative;
    
        display: grid;
    
        grid-template-columns:
            minmax(0, 1fr)
            180px;
    
        align-items: center;
    
        gap: 40px;
    
        overflow: hidden;
    
        min-height: 345px;
    
        padding: 52px;
    
        border-radius: 28px;
    
        background:
            radial-gradient(
                circle at 80% 15%,
                rgba(255,255,255,.11),
                transparent 26%
            ),
            linear-gradient(
                135deg,
                #532026 0%,
                #692a31 48%,
                #3e181d 100%
            );
    
        color: #fff;
    
        box-shadow:
            0 28px 70px rgba(62, 24, 29, .18);
    }
    
    .privacy-hero::before {
        content: "";
    
        position: absolute;
    
        width: 390px;
        height: 390px;
    
        right: -145px;
        top: -220px;
    
        border: 1px solid rgba(255,255,255,.08);
    
        border-radius: 50%;
    }
    
    .privacy-hero::after {
        content: "";
    
        position: absolute;
    
        width: 250px;
        height: 250px;
    
        left: -110px;
        bottom: -160px;
    
        border: 1px solid rgba(255,255,255,.06);
    
        border-radius: 50%;
    }
    
    .privacy-hero-copy {
        position: relative;
    
        z-index: 2;
    }
    
    .privacy-eyebrow {
        display: inline-flex;
    
        align-items: center;
    
        gap: 8px;
    
        margin-bottom: 17px;
    
        color: #e9c7ca;
    
        font-size: 9px;
    
        font-weight: 800;
    
        letter-spacing: .17em;
    
        text-transform: uppercase;
    }
    
    .privacy-eyebrow::before {
        content: "";
    
        width: 23px;
        height: 1px;
    
        background: #d39da1;
    }
    
    .privacy-hero h1 {
        max-width: 750px;
    
        margin: 0;
    
        color: #fff;
    
        font-size:
            clamp(
                40px,
                5vw,
                64px
            );
    
        font-weight: 800;
    
        line-height: .98;
    
        letter-spacing: -.055em;
    }
    
    .privacy-hero p {
        max-width: 720px;
    
        margin: 25px 0 0;
    
        color: rgba(255,255,255,.73);
    
        font-size: 13px;
    
        line-height: 1.85;
    }
    
    .privacy-meta {
        display: flex;
    
        flex-wrap: wrap;
    
        gap: 9px;
    
        margin-top: 26px;
    }
    
    .privacy-meta span {
        display: inline-flex;
    
        align-items: center;
    
        min-height: 34px;
    
        padding:
            0 12px;
    
        border: 1px solid rgba(255,255,255,.13);
    
        border-radius: 999px;
    
        background: rgba(255,255,255,.06);
    
        color: rgba(255,255,255,.65);
    
        font-size: 8px;
    
        font-weight: 700;
    }
    
    .privacy-hero-mark {
        position: relative;
    
        z-index: 2;
    
        display: flex;
    
        align-items: center;
    
        flex-direction: column;
    
        justify-content: center;
    
        gap: 13px;
    }
    
    .privacy-shield {
        width: 105px;
        height: 105px;
    
        display: grid;
    
        place-items: center;
    
        border: 1px solid rgba(255,255,255,.17);
    
        border-radius: 31px;
    
        background:
            rgba(255,255,255,.07);
    
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.08),
            0 18px 45px rgba(0,0,0,.10);
    
        color: #fff;
    
        font-size: 33px;
    
        font-weight: 700;
    }
    
    .privacy-hero-mark span {
        color: rgba(255,255,255,.48);
    
        font-size: 8px;
    
        font-weight: 800;
    
        letter-spacing: .22em;
    }
    
    
    /* =========================================================
       MAIN CONTENT LAYOUT
    ========================================================= */
    
    .privacy-layout {
        display: grid;
    
        grid-template-columns:
            245px
            minmax(0, 1fr);
    
        gap: 22px;
    
        align-items: start;
    
        margin-top: 22px;
    }
    
    
    /* =========================================================
       SIDEBAR
    ========================================================= */
    
    .privacy-sidebar {
        position: sticky;
    
        top: 24px;
    
        min-width: 0;
    }
    
    .privacy-sidebar-card {
        overflow: hidden;
    
        padding: 21px;
    
        border: 1px solid #e4d9d3;
    
        border-radius: 18px;
    
        background:
            rgba(255,255,255,.84);
    
        box-shadow:
            0 12px 30px rgba(50, 27, 28, .045);
    }
    
    .privacy-sidebar-label {
        display: block;
    
        margin-bottom: 14px;
    
        color: var(--brand);
    
        font-size: 8px;
    
        font-weight: 800;
    
        letter-spacing: .16em;
    
        text-transform: uppercase;
    }
    
    .privacy-toc {
        display: grid;
    
        gap: 2px;
    
        max-height: calc(100vh - 120px);
    
        overflow-y: auto;
    
        scrollbar-width: thin;
    }
    
    .privacy-toc a {
        display: block;
    
        padding:
            9px 10px;
    
        border-radius: 9px;
    
        color: #746b67;
    
        font-size: 9px;
    
        font-weight: 600;
    
        line-height: 1.45;
    
        transition:
            background .2s ease,
            color .2s ease,
            transform .2s ease;
    }
    
    .privacy-toc a:hover {
        background: #f4eae6;
    
        color: var(--brand);
    
        transform: translateX(3px);
    }
    
    
    /* =========================================================
       POLICY CARDS
    ========================================================= */
    
    .privacy-content {
        min-width: 0;
    }
    
    .privacy-section {
        display: grid;
    
        grid-template-columns:
            50px
            minmax(0, 1fr);
    
        gap: 17px;
    
        padding: 30px;
    
        border: 1px solid #e5dcd7;
    
        border-radius: 19px;
    
        background: #fff;
    
        box-shadow:
            0 10px 28px rgba(48, 27, 29, .035);
    }
    
    .privacy-section + .privacy-section {
        margin-top: 11px;
    }
    
    .privacy-section-number {
        width: 38px;
        height: 38px;
    
        display: grid;
    
        place-items: center;
    
        border-radius: 12px;
    
        background:
            linear-gradient(
                135deg,
                #f3e5e0,
                #faf4f0
            );
    
        color: var(--brand);
    
        font-size: 9px;
    
        font-weight: 800;
    }
    
    .privacy-section-body {
        min-width: 0;
    }
    
    .privacy-section-body h2 {
        margin: 1px 0 17px;
    
        color: #211d1c;
    
        font-size: 22px;
    
        font-weight: 800;
    
        line-height: 1.1;
    
        letter-spacing: -.035em;
    }
    
    .privacy-section-body p {
        margin:
            0 0 13px;
    
        color: #665e59;
    
        font-size: 11px;
    
        line-height: 1.9;
    }
    
    .privacy-section-body p:last-child {
        margin-bottom: 0;
    }
    
    .privacy-section-body ul {
        margin:
            17px 0 0;
    
        padding-left: 18px;
    }
    
    .privacy-section-body li {
        margin-bottom: 10px;
    
        color: #665e59;
    
        font-size: 10px;
    
        line-height: 1.75;
    }
    
    .privacy-section-body li::marker {
        color: var(--brand);
    }
    
    
    /* =========================================================
       CONTACT CARD
    ========================================================= */
    
    .privacy-contact-card {
        position: relative;
    
        display: flex;
    
        align-items: center;
    
        justify-content: space-between;
    
        gap: 30px;
    
        overflow: hidden;
    
        margin-top: 12px;
    
        padding: 31px;
    
        border-radius: 21px;
    
        background:
            radial-gradient(
                circle at 100% 0,
                rgba(255,255,255,.08),
                transparent 30%
            ),
            linear-gradient(
                135deg,
                #60242b,
                #3f171c
            );
    
        color: #fff;
    
        box-shadow:
            0 18px 48px rgba(61, 22, 27, .14);
    }
    
    .privacy-contact-card::before {
        content: "";
    
        position: absolute;
    
        width: 220px;
        height: 220px;
    
        right: -90px;
        bottom: -135px;
    
        border: 1px solid rgba(255,255,255,.08);
    
        border-radius: 50%;
    }
    
    .privacy-contact-card > div {
        position: relative;
    
        z-index: 1;
    }
    
    .privacy-contact-card > div:first-child > span {
        display: block;
    
        margin-bottom: 8px;
    
        color: #deb6bb;
    
        font-size: 8px;
    
        font-weight: 800;
    
        letter-spacing: .16em;
    
        text-transform: uppercase;
    }
    
    .privacy-contact-card h2 {
        max-width: 550px;
    
        margin: 0;
    
        color: #fff;
    
        font-size: 18px;
    
        line-height: 1.4;
    
        letter-spacing: -.02em;
    }
    
    .privacy-contact-actions {
        display: flex;
    
        align-items: flex-end;
    
        flex-direction: column;
    
        gap: 8px;
    
        flex-shrink: 0;
    }
    
    .privacy-contact-actions a {
        color: #fff;
    
        font-size: 10px;
    
        font-weight: 700;
    
        text-decoration: none;
    
        transition: opacity .2s ease;
    }
    
    .privacy-contact-actions a:hover {
        opacity: .7;
    }
    
    .privacy-contact-actions a:first-child {
        font-size: 11px;
    }
    
    
    /* =========================================================
       RTL
    ========================================================= */
    
    html[dir="rtl"] .privacy-layout,
    html[dir="rtl"] .privacy-hero,
    html[dir="rtl"] .privacy-section,
    html[dir="rtl"] .privacy-contact-card {
        direction: rtl;
    }
    
    html[dir="rtl"] .privacy-sidebar {
        direction: rtl;
    }
    
    html[dir="rtl"] .privacy-eyebrow::before {
        order: 2;
    }
    
    html[dir="rtl"] .privacy-toc a:hover {
        transform: translateX(-3px);
    }
    
    html[dir="rtl"] .privacy-section-body ul {
        padding-left: 0;
        padding-right: 18px;
    }
    
    html[dir="rtl"] .privacy-contact-actions {
        align-items: flex-start;
    }
    
    
    /* =========================================================
       TABLET
    ========================================================= */
    
    @media (max-width: 950px) {
    
        .privacy-hero {
            grid-template-columns: 1fr;
    
            min-height: auto;
    
            padding: 40px;
        }
    
        .privacy-hero-mark {
            display: none;
        }
    
        .privacy-layout {
            grid-template-columns: 1fr;
        }
    
        .privacy-sidebar {
            position: static;
        }
    
        .privacy-sidebar-card {
            padding: 17px;
        }
    
        .privacy-toc {
            grid-template-columns:
                repeat(2, minmax(0, 1fr));
    
            max-height: 240px;
        }
    
    }
    
    
    /* =========================================================
       MOBILE
    ========================================================= */
    
    @media (max-width: 650px) {
    
        .privacy-page {
            padding:
                24px 0
                55px;
        }
    
        .privacy-container {
            width: min(
                100% - 24px,
                560px
            );
        }
    
        .privacy-hero {
            padding: 28px 21px;
    
            border-radius: 20px;
        }
    
        .privacy-hero h1 {
            font-size: 39px;
        }
    
        .privacy-hero p {
            font-size: 10px;
    
            line-height: 1.8;
        }
    
        .privacy-meta {
            flex-direction: column;
    
            align-items: flex-start;
        }
    
        .privacy-layout {
            gap: 12px;
    
            margin-top: 12px;
        }
    
        .privacy-toc {
            grid-template-columns: 1fr;
    
            max-height: 220px;
        }
    
        .privacy-section {
            grid-template-columns: 1fr;
    
            gap: 12px;
    
            padding: 21px;
        }
    
        .privacy-section-number {
            width: 34px;
            height: 34px;
    
            border-radius: 10px;
        }
    
        .privacy-section-body h2 {
            font-size: 18px;
        }
    
        .privacy-section-body p {
            font-size: 10px;
    
            line-height: 1.85;
        }
    
        .privacy-section-body li {
            font-size: 9px;
        }
    
        .privacy-contact-card {
            align-items: flex-start;
    
            flex-direction: column;
    
            padding: 22px;
    
            gap: 18px;
        }
    
        .privacy-contact-actions {
            align-items: flex-start;
        }
    
    }
    
    /* =========================================================
       HOME VENDOR GRID
    ========================================================= */
    
    .vendor-home-grid {
        display: grid;
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(290px, 1fr)
            );
        gap: 18px;
    }
    
    .vendor-title-line {
        display: flex;
        align-items: center;
        gap: 7px;
    }
    
    .vendor-title-line h3 {
        margin: 0;
    }
    
    .vendor-verified-icon {
        width: 18px;
        height: 18px;
    
        display: inline-grid;
        place-items: center;
    
        flex: 0 0 auto;
    
        border-radius: 50%;
    
        background: #6d2930;
        color: #fff;
    
        font-size: 10px;
        font-weight: 800;
    }
    
    .vendor-verified-floating {
        position: absolute;
    
        top: 14px;
    
        inset-inline-end: 14px;
    
        display: inline-flex;
        align-items: center;
        gap: 5px;
    
        padding: 7px 10px;
    
        border-radius: 999px;
    
        background:
            rgba(255,255,255,.94);
    
        color: #65242b;
    
        font-size: 8px;
        font-weight: 800;
    
        box-shadow:
            0 7px 24px
            rgba(0,0,0,.10);
    
        backdrop-filter:
            blur(8px);
    }
    
    .vendor-cover-modern {
        position: relative;
    }
    
    .vendor-description {
        display: -webkit-box;
    
        overflow: hidden;
    
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    
    
    /* =========================================================
       VENDOR DIRECTORY
    ========================================================= */
    
    .vendor-directory-page {
        background: #f8f5f2;
        min-height: 70vh;
    }
    
    .vendor-directory-hero {
        padding: 65px 0 55px;
    
        border-bottom:
            1px solid #e7ddd7;
    
        background:
            radial-gradient(
                circle at 85% 0,
                rgba(105,42,49,.09),
                transparent 29%
            ),
            linear-gradient(
                180deg,
                #f8f2ef,
                #fbf9f7
            );
    }
    
    .vendor-directory-hero h1 {
        max-width: 790px;
    
        margin: 11px 0 14px;
    
        font-size:
            clamp(
                42px,
                5.5vw,
                72px
            );
    
        line-height: .96;
    
        letter-spacing: -.055em;
    }
    
    .vendor-directory-hero > .container > p {
        max-width: 650px;
    
        margin: 0;
    
        color: #766d68;
    
        font-size: 12px;
    
        line-height: 1.8;
    }
    
    .vendor-directory-search {
        max-width: 760px;
    
        display: grid;
    
        grid-template-columns:
            35px
            minmax(0, 1fr)
            auto;
    
        align-items: center;
    
        margin-top: 27px;
    
        padding: 6px;
    
        border:
            1px solid #ded3cd;
    
        border-radius: 15px;
    
        background: #fff;
    
        box-shadow:
            0 13px 35px
            rgba(54,32,32,.05);
    }
    
    .vendor-directory-search > span {
        text-align: center;
    
        color: #77706d;
    }
    
    .vendor-directory-search input {
        min-width: 0;
    
        height: 48px;
    
        border: 0;
        outline: none;
    
        background: transparent;
    
        font: inherit;
    
        font-size: 11px;
    }
    
    .vendor-directory-search button {
        min-width: 105px;
    
        height: 46px;
    
        border: 0;
    
        border-radius: 11px;
    
        background: #69282f;
    
        color: #fff;
    
        font-size: 10px;
        font-weight: 700;
    
        cursor: pointer;
    
        transition:
            transform .2s ease,
            background .2s ease;
    }
    
    .vendor-directory-search button:hover {
        transform: translateY(-1px);
    
        background: #541f25;
    }
    
    
    /* =========================================================
       FILTER BAR
    ========================================================= */
    
    .vendor-directory-body {
        padding-top: 25px;
        padding-bottom: 85px;
    }
    
    .vendor-filter-bar {
        display: grid;
    
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            )
            auto
            auto;
    
        align-items: end;
    
        gap: 10px;
    
        padding: 15px;
    
        border:
            1px solid #e2d8d3;
    
        border-radius: 16px;
    
        background: #fff;
    }
    
    .vendor-filter-field {
        min-width: 0;
    }
    
    .vendor-filter-field label {
        display: block;
    
        margin:
            0 0 6px;
    
        color: #8b817c;
    
        font-size: 8px;
    
        font-weight: 700;
    
        text-transform: uppercase;
    
        letter-spacing: .08em;
    }
    
    .vendor-filter-field select {
        width: 100%;
    
        height: 43px;
    
        padding:
            0 12px;
    
        border:
            1px solid #e1d7d2;
    
        border-radius: 10px;
    
        outline: none;
    
        background: #fbf9f8;
    
        color: #2a2523;
    
        font-size: 10px;
    }
    
    .vendor-filter-submit {
        height: 43px;
    
        padding:
            0 20px;
    
        border: 0;
    
        border-radius: 10px;
    
        background: #69282f;
    
        color: #fff;
    
        font-size: 9px;
        font-weight: 700;
    
        cursor: pointer;
    }
    
    .vendor-filter-reset {
        height: 43px;
    
        display: inline-flex;
        align-items: center;
    
        padding:
            0 12px;
    
        color: #6d6360;
    
        font-size: 9px;
        font-weight: 600;
    }
    
    
    /* =========================================================
       RESULTS
    ========================================================= */
    
    .vendor-results-heading {
        display: flex;
    
        align-items: flex-end;
    
        justify-content:
            space-between;
    
        gap: 20px;
    
        margin:
            42px 0 20px;
    }
    
    .vendor-results-heading > div > span {
        color: #6c252d;
    
        font-size: 8px;
    
        font-weight: 800;
    
        letter-spacing: .15em;
    }
    
    .vendor-results-heading h2 {
        margin:
            6px 0 0;
    
        font-size: 32px;
    
        letter-spacing: -.04em;
    }
    
    .vendor-results-heading p {
        margin: 0;
    
        color: #877d78;
    
        font-size: 10px;
    }
    
    
    /* =========================================================
       VENDOR CARDS
    ========================================================= */
    
    .vendor-directory-grid {
        display: grid;
    
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    
        gap: 17px;
    }
    
    .vendor-directory-card {
        overflow: hidden;
    
        border:
            1px solid #e1d7d2;
    
        border-radius: 19px;
    
        background: #fff;
    
        transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
    }
    
    .vendor-directory-card:hover {
        transform:
            translateY(-4px);
    
        border-color:
            #d5c5bd;
    
        box-shadow:
            0 20px 45px
            rgba(53,32,32,.08);
    }
    
    .vendor-directory-cover {
        position: relative;
    
        height: 205px;
    
        overflow: hidden;
    
        background:
            linear-gradient(
                135deg,
                #eee5df,
                #f8f4f1
            );
    }
    
    .vendor-directory-cover img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: cover;
    
        transition:
            transform .45s ease;
    }
    
    .vendor-directory-card:hover
    .vendor-directory-cover img {
        transform:
            scale(1.025);
    }
    
    .vendor-directory-card-body {
        position: relative;
    
        padding:
            24px 18px
            18px;
    }
    
    .vendor-directory-logo {
        position: absolute;
    
        top: -31px;
    
        inset-inline-start: 18px;
    
        width: 62px;
        height: 62px;
    
        display: grid;
        place-items: center;
    
        overflow: hidden;
    
        border:
            4px solid #fff;
    
        border-radius: 17px;
    
        background: #fff;
    
        box-shadow:
            0 8px 22px
            rgba(0,0,0,.08);
    }
    
    .vendor-directory-logo img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
    }
    
    .vendor-directory-logo span {
        color: #64252c;
    
        font-size: 20px;
    
        font-weight: 800;
    }
    
    .vendor-directory-title-row {
        min-height: 57px;
    
        display: flex;
    
        align-items: flex-start;
    
        justify-content:
            space-between;
    
        gap: 10px;
    
        margin-top: 15px;
    }
    
    .vendor-directory-title-row h3 {
        margin: 0;
    
        font-size: 16px;
    
        letter-spacing: -.025em;
    }
    
    .vendor-directory-location {
        display: block;
    
        margin-top: 6px;
    
        color: #8a817c;
    
        font-size: 8px;
    }
    
    .vendor-directory-rating {
        flex: 0 0 auto;
    
        color: #a47518;
    
        font-size: 9px;
    
        font-weight: 700;
    }
    
    .vendor-directory-description {
        min-height: 54px;
    
        display: -webkit-box;
    
        overflow: hidden;
    
        margin:
            18px 0;
    
        color: #6e6561;
    
        font-size: 9px;
    
        line-height: 1.75;
    
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    
    .vendor-directory-stats {
        display: flex;
    
        gap: 14px;
    
        padding:
            13px 0;
    
        border-top:
            1px solid #eee6e1;
    
        color: #817873;
    
        font-size: 8px;
    }
    
    .vendor-directory-footer {
        display: flex;
    
        justify-content:
            flex-end;
    
        padding-top: 3px;
    }
    
    .vendor-shop-button {
        color: #67262d;
    
        font-size: 9px;
    
        font-weight: 800;
    }
    
    
    /* =========================================================
       EMPTY
    ========================================================= */
    
    .vendor-directory-empty {
        grid-column:
            1 / -1;
    
        padding:
            70px 25px;
    
        border:
            1px dashed
            #d7cac4;
    
        border-radius: 18px;
    
        background: #fff;
    
        text-align: center;
    }
    
    .vendor-directory-empty strong {
        display: block;
    
        margin-bottom: 8px;
    
        font-size: 20px;
    }
    
    .vendor-directory-empty p {
        color: #817773;
    
        font-size: 10px;
    }
    
    .vendor-directory-empty a {
        display: inline-block;
    
        margin-top: 10px;
    
        color: #68272e;
    
        font-size: 9px;
    
        font-weight: 800;
    }
    
    
    /* =========================================================
       RESPONSIVE
    ========================================================= */
    
    @media (max-width: 1000px) {
    
        .vendor-directory-grid {
            grid-template-columns:
                repeat(
                    2,
                    minmax(0, 1fr)
                );
        }
    
        .vendor-filter-bar {
            grid-template-columns:
                repeat(
                    2,
                    minmax(0, 1fr)
                );
        }
    
    }
    
    @media (max-width: 650px) {
    
        .vendor-directory-hero {
            padding:
                38px 0;
        }
    
        .vendor-directory-hero h1 {
            font-size: 42px;
        }
    
        .vendor-directory-search {
            grid-template-columns:
                28px
                minmax(0, 1fr);
    
            padding: 6px;
        }
    
        .vendor-directory-search button {
            grid-column:
                1 / -1;
    
            width: 100%;
        }
    
        .vendor-filter-bar {
            grid-template-columns: 1fr;
        }
    
        .vendor-filter-submit,
        .vendor-filter-reset {
            width: 100%;
    
            justify-content: center;
        }
    
        .vendor-directory-grid {
            grid-template-columns:
                1fr;
        }
    
        .vendor-results-heading {
            align-items: flex-start;
    
            flex-direction: column;
        }
    
        .vendor-directory-cover {
            height: 220px;
        }
    
    }
    
    
    /* =========================================================
       HOME — FEATURED VENDORS
    ========================================================= */
    
    .home-vendors-section {
        background: #fff;
    }
    
    .home-vendors-heading {
        margin-bottom: 26px;
    }
    
    .home-vendors-view-all {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    
        color: #66262d;
    
        font-size: 10px;
        font-weight: 700;
    
        transition:
            gap .2s ease,
            opacity .2s ease;
    }
    
    .home-vendors-view-all:hover {
        gap: 10px;
        opacity: .75;
    }
    
    
    /* =========================================================
       GRID
    ========================================================= */
    
    .home-vendors-grid {
        display: grid;
    
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    
        gap: 18px;
    }
    
    
    /* =========================================================
       CARD
    ========================================================= */
    
    .home-vendor-card {
        position: relative;
        
        contain: layout paint;
    
        min-width: 0;
    
        overflow: hidden;
    
        border: 1px solid #e4dad5;
    
        border-radius: 20px;
    
        background: #fff;
    
        box-shadow:
            0 10px 30px
            rgba(47, 29, 30, .035);
    
        transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
    }
    
    .home-vendor-card:hover {
        transform: translateY(-5px);
    
        border-color: #d6c6bf;
    
        box-shadow:
            0 22px 45px
            rgba(49, 28, 30, .09);
    }
    
    
    /* =========================================================
       COVER
    ========================================================= */
    
    .home-vendor-cover {
        position: relative;
    
        width: 100%;
    
        aspect-ratio: 16 / 9;
    
        overflow: hidden;
    
        background:
            linear-gradient(
                135deg,
                #eee6e1,
                #f8f4f1
            );
    }
    
    .home-vendor-cover
    .image-loader-shell {
        width: 100%;
        height: 100%;
    }
    
    .home-vendor-cover
    .progressive-image {
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    }
    
    .home-vendor-cover > img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: cover;
    
        object-position: center;
    
        transition:
            transform .45s ease;
    }
    
    .home-vendor-card:hover
    .home-vendor-cover > img {
        transform: scale(1.035);
    }
    
    .home-vendor-cover-placeholder {
        width: 100%;
        height: 100%;
    
        display: grid;
    
        place-items: center;
    
        background:
            linear-gradient(
                135deg,
                #6b2930,
                #451a20
            );
    }
    
    .home-vendor-cover-placeholder span {
        color: rgba(255,255,255,.2);
    
        font-size: 70px;
        font-weight: 800;
    }
    
    .category-section,
    .services-section,
    .home-vendors-section,
    .essentials-section,
    .app-promo {
        content-visibility: auto;
    
        contain-intrinsic-size:
            auto 700px;
    }
    
    
    /* =========================================================
       VERIFIED BADGE
    ========================================================= */
    
    .home-vendor-verified {
        position: absolute;
    
        top: 13px;
    
        inset-inline-end: 13px;
    
        display: inline-flex;
    
        align-items: center;
    
        gap: 5px;
    
        min-height: 28px;
    
        padding: 0 10px;
    
        border: 1px solid
            rgba(255,255,255,.5);
    
        border-radius: 999px;
    
        background:
            rgba(255,255,255,.92);
    
        color: #62242b;
    
        font-size: 8px;
        font-weight: 800;
    
        box-shadow:
            0 8px 22px
            rgba(0,0,0,.09);
    
        backdrop-filter:
            blur(10px);
    }
    
    .home-vendor-verified-icon {
        width: 15px;
        height: 15px;
    
        display: grid;
    
        place-items: center;
    
        border-radius: 50%;
    
        background: #66262d;
    
        color: #fff;
    
        font-size: 8px;
    }
    
    
    /* =========================================================
       BODY
    ========================================================= */
    
    .home-vendor-body {
        position: relative;
    
        padding:
            34px 18px
            17px;
    }
    
    
    /* =========================================================
       LOGO
    ========================================================= */
    
    .home-vendor-logo {
        position: absolute;
    
        top: -34px;
    
        inset-inline-start: 18px;
    
        width: 68px;
        height: 68px;
    
        display: grid;
    
        place-items: center;
    
        overflow: hidden;
    
        border:
            4px solid #fff;
    
        border-radius: 18px;
    
        background: #fff;
    
        box-shadow:
            0 8px 25px
            rgba(0,0,0,.10);
    }
    
    .home-vendor-logo img {
        width: 100%;
        height: 100%;
    
        display: block;
    
        object-fit: contain;
    }
    
    .home-vendor-logo span {
        color: #66262d;
    
        font-size: 23px;
        font-weight: 800;
    }
    
    
    /* =========================================================
       NAME / LOCATION / RATING
    ========================================================= */
    
    .home-vendor-title-row {
        display: flex;
    
        align-items: flex-start;
    
        justify-content: space-between;
    
        gap: 12px;
    
        min-height: 62px;
    }
    
    .home-vendor-title {
        min-width: 0;
    
        flex: 1;
    }
    
    .home-vendor-name-line {
        display: flex;
    
        align-items: center;
    
        gap: 6px;
    
        min-width: 0;
    }
    
    .home-vendor-name-line h3 {
        min-width: 0;
    
        overflow: hidden;
    
        margin: 0;
    
        color: #201c1b;
    
        font-size: 17px;
    
        font-weight: 700;
    
        letter-spacing: -.025em;
    
        white-space: nowrap;
    
        text-overflow: ellipsis;
    }
    
    .home-vendor-mini-check {
        width: 17px;
        height: 17px;
    
        display: grid;
    
        place-items: center;
    
        flex: 0 0 auto;
    
        border-radius: 50%;
    
        background: #65262d;
    
        color: #fff;
    
        font-size: 8px;
    
        font-weight: 800;
    }
    
    .home-vendor-location {
        display: block;
    
        overflow: hidden;
    
        margin-top: 7px;
    
        color: #8a817d;
    
        font-size: 8px;
    
        white-space: nowrap;
    
        text-overflow: ellipsis;
    }
    
    .home-vendor-rating {
        flex: 0 0 auto;
    
        display: inline-flex;
    
        align-items: center;
    
        gap: 4px;
    
        padding: 6px 8px;
    
        border-radius: 999px;
    
        background: #faf5ed;
    
        color: #7a5d20;
    
        font-size: 8px;
    
        font-weight: 700;
    }
    
    .home-vendor-rating span {
        color: #bb8a25;
    }
    
    
    /* =========================================================
       DESCRIPTION
    ========================================================= */
    
    .home-vendor-description {
        height: 47px;
    
        display: -webkit-box;
    
        overflow: hidden;
    
        margin:
            12px 0
            17px;
    
        color: #706763;
    
        font-size: 9px;
    
        line-height: 1.7;
    
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    
    
    /* =========================================================
       FOOTER
    ========================================================= */
    
    .home-vendor-footer {
        display: flex;
    
        align-items: center;
    
        justify-content:
            space-between;
    
        gap: 12px;
    
        padding-top: 14px;
    
        border-top:
            1px solid #eee5e0;
    }
    
    .home-vendor-followers {
        display: flex;
    
        align-items: baseline;
    
        gap: 4px;
    }
    
    .home-vendor-followers strong {
        color: #312a28;
    
        font-size: 10px;
    
        font-weight: 700;
    }
    
    .home-vendor-followers span {
        color: #8d837e;
    
        font-size: 8px;
    }
    
    .home-vendor-shop-link {
        display: inline-flex;
    
        align-items: center;
    
        gap: 6px;
    
        color: #67262d;
    
        font-size: 9px;
    
        font-weight: 800;
    
        transition:
            gap .2s ease;
    }
    
    .home-vendor-shop-link:hover {
        gap: 10px;
    }
    
    
    /* =========================================================
       EMPTY STATE
    ========================================================= */
    
    .home-vendors-empty {
        grid-column:
            1 / -1;
    
        padding: 50px 20px;
    
        border:
            1px dashed #ddd0ca;
    
        border-radius: 18px;
    
        background: #faf7f5;
    
        color: #807772;
    
        text-align: center;
    
        font-size: 10px;
    }
    
    
    /* =========================================================
       TABLET
    ========================================================= */
    
    @media (max-width: 1000px) {
    
        .home-vendors-grid {
            grid-template-columns:
                repeat(
                    2,
                    minmax(0, 1fr)
                );
        }
    
    }
    
    
    /* =========================================================
       MOBILE
    ========================================================= */
    
    @media (max-width: 650px) {
    
        .home-vendors-heading {
            align-items: flex-start;
    
            flex-direction: column;
        }
    
        .home-vendors-grid {
            grid-template-columns:
                1fr;
    
            gap: 14px;
        }
    
        .home-vendor-cover {
            aspect-ratio: 16 / 9;
        }
    
        .home-vendor-body {
            padding:
                33px 16px
                16px;
        }
    
        .home-vendor-logo {
            inset-inline-start: 16px;
    
            width: 64px;
            height: 64px;
        }
    
        .home-vendor-name-line h3 {
            font-size: 16px;
        }
    
    }
    
    
    /* =========================================================
       RTL
    ========================================================= */
    
    html[dir="rtl"]
    .home-vendor-card,
    
    html[dir="rtl"]
    .home-vendors-heading {
        direction: rtl;
    }
    
    
    /* =========================================================
       IMAGE LOADING / SKELETON SYSTEM
    ========================================================= */
    
    .image-loader-shell {
        position: relative;
    
        width: 100%;
        height: 100%;
    
        overflow: hidden;
    
        background: #eee8e4;
    }
    
    .image-skeleton {
        position: absolute;
    
        inset: 0;
    
        z-index: 1;
    
        background:
            linear-gradient(
                90deg,
                #eee8e4 0%,
                #f8f4f1 45%,
                #eee8e4 90%
            );
    
        background-size: 220% 100%;
    
        animation:
            mawajib-skeleton 1.25s
            ease-in-out infinite;
    
        transition:
            opacity .35s ease,
            visibility .35s ease;
    }
    
    .progressive-image {
        position: relative;
    
        z-index: 2;
    
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    
        opacity: 0;
    
        transition:
            opacity .38s ease,
            transform .4s ease;
    }
    
    .image-loader-shell.image-loaded
    .progressive-image {
        opacity: 1;
    }
    
    .image-loader-shell.image-loaded
    .image-skeleton {
        opacity: 0;
        visibility: hidden;
    }
    
    .image-loader-shell.image-error
    .image-skeleton {
        opacity: .35;
    
        animation: none;
    }
    
    @keyframes mawajib-skeleton {
    
        0% {
            background-position:
                200% 0;
        }
    
        100% {
            background-position:
                -200% 0;
        }
    
    }
    
    @media (
        prefers-reduced-motion:
        reduce
    ) {
    
        .image-skeleton {
            animation: none;
        }
    
        .progressive-image {
            transition: none;
        }
    
    }