/* ── MODALS OVERLAY (FIXED & CENTERED) ── */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400&display=swap');

.modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    display: none;
    place-items: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(7, 30, 32, 0.78) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow-y: auto;
}

    .modal.show {
        display: flex !important;
    }

.checkout-box {
    width: min(480px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    background: #12383b;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(200, 154, 75, 0.4);
    position: relative;
    z-index: 100000;
    margin: auto;
}

:root {
    --ink: #173335;
    --ink-soft: #5f7372;
    --deep: #12383b;
    --deep-2: #0c2e31;
    --teal: #1c5f61;
    --teal-light: #dceceb;
    --sand: #f3eadb;
    --sand-2: #e6d4b7;
    --paper: #fffdf9;
    --white: #ffffff;
    --gold: #25d366;
    --gold-light: #f5e7c7;
    --coral: #b9674e;
    --green: #34745e;
    --line: rgba(23, 51, 53, 0.12);
    --shadow-sm: 0 8px 24px rgba(15, 46, 49, 0.08);
    --shadow-md: 0 18px 50px rgba(15, 46, 49, 0.15);
    --shadow-lg: 0 30px 80px rgba(8, 34, 36, 0.24);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --max: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 85% 0%, rgba(200,154,75,.11), transparent 30%), linear-gradient(180deg, #fffaf1 0%, #fffdf9 28%, #f8f4ec 100%);
    min-height: 100vh;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

button, input, select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.svg-sprite {
    width: 0;
    height: 0;
    position: absolute;
    overflow: hidden;
}

.icon {
    width: 1.2em;
    height: 1.2em;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(255, 253, 249, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 51, 53, 0.08);
}

.nav-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #1f6466, #0e3437);
    box-shadow: 0 10px 26px rgba(16, 60, 63, .24);
    position: relative;
    overflow: hidden;
}

    .brand-mark::after {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        border: 1px solid rgba(255,255,255,.22);
        transform: rotate(45deg);
        border-radius: 3px;
    }

    .brand-mark .icon {
        width: 23px;
        height: 23px;
        position: relative;
        z-index: 1;
    }

    .brand-mark.has-logo { 
        background: #fff;
    }

        .brand-mark.has-logo::after {
            display: none;
        }

        .brand-mark.has-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

.brand-copy strong {
    color: var(--header-deep);
    display: block;
    font-family: "Kalam", "Segoe Print", cursive;
    font-size: 18px;
    letter-spacing: .2px;
    font-weight: 400;
    text-transform: capitalize;
}

.brand-copy {
    display: grid;
}

    .brand-copy span {
        color: var(--ink-soft);
        font-size: 11px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .desktop-nav a {
        padding: 10px 13px;
        color: #365455;
        font-size: 14px;
        font-weight: 650;
        border-radius: 11px;
    }

        .desktop-nav a:hover {
            background: rgba(28,95,97,.08);
            color: var(--deep);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill {
    color: #315253;
    background: #edf6f4;
    font-weight: 600;
    border-radius: 20px;
    font-size: 12px;
    padding: 5px 11px;
    white-space: nowrap;
}

.location-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: #3b5a5b;
    box-shadow: var(--shadow-sm);
}

    .location-pill .icon {
        color: var(--gold);
    }

.menu-btn {
    width: 43px;
    height: 43px;
    display: none;
    place-items: center;
    border-radius: 13px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--deep);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 74px 0 auto 0;
    z-index: 70;
    background: rgba(255,253,249,.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px;
    box-shadow: var(--shadow-md);
}

    .mobile-menu.open {
        display: grid;
        gap: 8px;
    }

    .mobile-menu a {
        padding: 13px 14px;
        border-radius: 12px;
        font-weight: 700;
    }

        .mobile-menu a:hover {
            background: var(--teal-light);
        }

.hero {
    position: relative;
    z-index: 100;
    overflow: visible !important;
    min-height: 720px;
    color: white;
    background: linear-gradient(120deg, rgba(8,42,45,.96), rgba(19,69,71,.82) 55%, rgba(35,67,60,.58));
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 98%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 42, 45, .5), rgba(19, 69, 71, .38) 55%, rgba(35, 67, 60, .22)), radial-gradient(circle at 75% 25%, rgba(244, 197, 108, .32), transparent 30%), linear-gradient(to top, rgba(7, 34, 36, .32), transparent 48%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58px;
    background: #fffaef;
    clip-path: polygon(0 72%, 3% 57%, 6% 72%, 9% 57%, 12% 72%, 15% 57%, 18% 72%, 21% 57%, 24% 72%, 27% 57%, 30% 72%, 33% 57%, 36% 72%, 39% 57%, 42% 72%, 45% 57%, 48% 72%, 51% 57%, 54% 72%, 57% 57%, 60% 72%, 63% 57%, 66% 72%, 69% 57%, 72% 72%, 75% 57%, 78% 72%, 81% 57%, 84% 72%, 87% 57%, 90% 72%, 93% 57%, 96% 72%, 100% 56%, 100% 100%, 0 100%);
    opacity: .95;
    z-index: 1;
}

.hero-inner {
    max-width: var(--max);
    min-height: 690px;
    margin: 0 auto;
    padding: 82px 22px 96px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 54px;
    position: relative;
    z-index: 101;
}

.hero-copy {
    max-width: 640px;
    min-width: 0;
    position: relative;
    z-index: 102;
}

.hero h1 {
    max-width: 640px;
    margin: 24px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(42px, 4.7vw, 64px);
    line-height: .98;
    letter-spacing: 0;
}

    .hero h1 em {
        color: #f0c77e;
        font-size: .6em;
        font-style: normal;
        white-space: normal;
    }

.hero-copy > p {
    max-width: 640px;
    margin: 0;
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255,255,255,.84);
}

.hero-search {
    position: relative;
    z-index: 103;
    margin-top: 30px;
    max-width: 700px;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    background: rgba(255,255,255,.96);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(4,26,28,.32);
}

    .hero-search label {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 0 15px;
        color: var(--ink-soft);
        min-width: 0;
    }

    .hero-search input {
        width: 100%;
        padding: 14px 0;
        border: 0;
        outline: 0;
        color: var(--ink);
        background: transparent;
        min-width: 0;
    }

/* Hero Search Merchant Suggestions Dropdown */
.hero-search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    max-height: 420px;
    overflow-y: auto;
    padding: 8px 0;
    text-align: left;
}

    .hero-search-suggestions .suggestion-header {
        padding: 10px 18px 8px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #64748b;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-search-suggestions .suggestion-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 18px;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease;
        border-bottom: 1px solid #f8fafc;
        text-decoration: none;
        color: inherit;
    }

        .hero-search-suggestions .suggestion-item:last-child {
            border-bottom: none;
        }

        .hero-search-suggestions .suggestion-item:hover,
        .hero-search-suggestions .suggestion-item.active {
            background: #f0fdfa;
        }

    .hero-search-suggestions .suggestion-thumb {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        object-fit: cover;
        background: #f1f5f9;
        flex-shrink: 0;
        border: 1px solid #e2e8f0;
        padding: 2px;
    }

    .hero-search-suggestions .suggestion-info {
        flex: 1;
        min-width: 0;
    }

    .hero-search-suggestions .suggestion-title {
        font-size: 14.5px;
        font-weight: 700;
        color: #0c2d30;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0 0 3px 0;
    }

    .hero-search-suggestions .suggestion-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #64748b;
    }

    .hero-search-suggestions .suggestion-badge {
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 10.5px;
        font-weight: 600;
        line-height: 1.3;
    }

        .hero-search-suggestions .suggestion-badge.badge-domain {
            background: #e0f2fe;
            color: #0369a1;
        }

        .hero-search-suggestions .suggestion-badge.badge-location {
            background: #f1f5f9;
            color: #475569;
        }

        .hero-search-suggestions .suggestion-badge.badge-status {
            background: #dcfce7;
            color: #15803d;
        }

    .hero-search-suggestions .suggestion-empty {
        padding: 24px 18px;
        text-align: center;
        color: #64748b;
        font-size: 14px;
    }

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 13px;
    padding: 14px 20px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #c99a4c, #ae7832);
    box-shadow: 0 10px 22px rgba(164,112,45,.26);
}

    .primary-btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.03);
    }

.hero-footnotes {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

    .hero-footnotes span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .hero-footnotes .icon {
        color: #efc77f;
    }

.hero-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 13px;
    color: white;
    background: rgba(255,255,255,.1);
    font-weight: 800;
    backdrop-filter: blur(8px);
}

    .secondary-btn:hover {
        background: rgba(255,255,255,.16);
        transform: translateY(-1px);
    }

.city-stats {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 620px;
}

.city-stat {
    aspect-ratio: 1 / 1;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .city-stat strong {
        display: block;
        font: 500 27px Georgia, serif;
        color: #f5cf88;
        line-height: 1;
    }

    .city-stat span {
        display: block;
        margin-top: 6px;
        color: rgba(255,255,255,.72);
        font-size: 11px;
        font-weight: 750;
        letter-spacing: .7px;
        text-transform: uppercase;
    }

        .city-stat span .ln {
            display: block;
            font-style: normal;
        }

/* Keep the deployed legacy statistic concise: "8 Categories". */
.city-stat:first-child span {
    font-size: 0;
}

    .city-stat:first-child span::after {
        content: "Categories";
        font-size: 11px;
    }

.open-badge {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(84,180,127,.18);
    border: 1px solid rgba(131,220,169,.3);
    font-size: 11px;
    font-weight: 800;
    color: #c7f0d7;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 86px 22px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.section-kicker {
    color: var(--coral);
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 850;
}

.section h2 {
    margin: 8px 0 0;
    font: 500 clamp(34px, 4vw, 50px)/1.08 Georgia, serif;
    color: var(--deep);
    letter-spacing: -.8px;
}

.section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 13px;
}

.domain-card {
    position: relative;
    min-height: 178px;
    padding: 19px 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
    overflow: hidden;
    text-align: left;
    color: var(--ink);
}

    .domain-card::before {
        content: "";
        position: absolute;
        inset: auto -28px -38px auto;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: var(--teal-light);
        opacity: .55;
    }

    .domain-card:hover, .domain-card.active {
        transform: translateY(-5px);
        border-color: rgba(200,154,75,.5);
        box-shadow: var(--shadow-md);
    }

    .domain-card.active {
        background: linear-gradient(160deg, #fff, #fbf0df);
    }

        .domain-card.active .domain-icon {
            color: white;
            background: linear-gradient(145deg, #1f6466, #0e3437);
        }

.domain-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--teal);
    border-radius: 16px;
    background: linear-gradient(145deg, #edf6f5, #d9ebe8);
    box-shadow: inset 0 0 0 1px rgba(28,95,97,.08);
}

    .domain-icon .icon {
        width: 24px;
        height: 24px;
    }

.domain-card strong {
    display: block;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.25;
}

.domain-card small {
    display: block;
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 11px;
}

.domain-count {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #71511f;
    background: #fff4dd;
    font-size: 10px;
    font-weight: 850;
}

.domain-arrow {
    align-self: end;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    color: var(--gold);
    position: relative;
    z-index: 1;
}

    .domain-arrow .icon {
        width: 14px;
    }

.discovery-section {
    background: rgba(255,255,255,.58);
    border-top: 1px solid rgba(23,51,53,.06);
    border-bottom: 1px solid rgba(23,51,53,.06);
}

.filters {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 220px 180px auto;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.field {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fffdfa;
}

    .field .icon {
        margin-left: 13px;
        color: var(--gold);
    }

    .field input, .field select {
        width: 100%;
        height: 100%;
        padding: 0 13px;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--ink);
    }

    .field select {
        cursor: pointer;
    }

.reset-btn {
    border: 0;
    border-radius: 13px;
    padding: 0 18px;
    background: var(--teal-light);
    color: var(--teal);
    font-weight: 800;
}

    .reset-btn:hover {
        background: #cae2df;
    }

.listing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 12px 0 18px;
}

    .listing-meta p {
        margin: 0;
        color: var(--ink-soft);
        font-size: 14px;
    }

    .listing-meta strong {
        color: var(--deep);
    }

.checkout-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #6d5426;
    background: var(--gold-light);
    font-size: 11px;
    font-weight: 750;
}

.merchant-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.merchant-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

    .merchant-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(200,154,75,.45);
    }

.merchant-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #d9e7e5;
}

    .merchant-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
        border-radius: 12px;
    }

.merchant-card:hover .merchant-image img {
    transform: scale(1.045);
}

.merchant-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,39,41,.45), transparent 48%);
}

.merchant-logo {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: #efefef;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(255,255,255,.8);
    box-shadow: 0 8px 18px rgba(11,37,39,.22);
}

.status-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--green);
    font-size: 10px;
    font-weight: 850;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.merchant-body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.merchant-topline {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.merchant-title {
    min-width: 0;
}

    .merchant-title h3 {
        margin: 0;
        font: 500 21px/1.2 Georgia, serif;
        color: var(--deep);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .merchant-title p {
        margin: 5px 0 0;
        color: var(--coral);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

.rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: #fff7e7;
    color: #785722;
    font-size: 11px;
    font-weight: 850;
}

    .rating .icon {
        width: 12px;
        height: 12px;
        fill: #d69e40;
        stroke: #d69e40;
    }

.merchant-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 16px 0 17px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-soft);
    min-width: 0;
    font-size: 12px;
}

    .info-item .icon {
        width: 15px;
        height: 15px;
        color: var(--teal);
    }

    .info-item span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.merchant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 16px;
}

    .merchant-tags span {
        padding: 6px 8px;
        border-radius: 999px;
        color: #315253;
        background: #edf6f4;
        font-size: 10px;
        font-weight: 800;
    }

.merchant-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(23,51,53,.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .merchant-footer small {
        color: var(--ink-soft);
        line-height: 1.4;
    }

.open-shop {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 13px;
    border-radius: 12px;
    color: white;
    background: var(--deep);
    font-size: 12px;
    font-weight: 850;
}

    .open-shop:hover {
        background: var(--teal);
    }

    .open-shop .icon {
        width: 14px;
        height: 14px;
    }

.empty-state {
    display: none;
    padding: 55px 20px;
    text-align: center;
    border: 1px dashed rgba(23,51,53,.22);
    border-radius: 22px;
    background: rgba(255,255,255,.55);
}

    .empty-state .icon {
        width: 42px;
        height: 42px;
        color: var(--gold);
    }

    .empty-state h3 {
        margin: 13px 0 6px;
        font: 500 25px Georgia, serif;
    }

    .empty-state p {
        margin: 0;
        color: var(--ink-soft);
    }

.flow-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 34px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #f7ecda, #fffaf1);
    border: 1px solid rgba(200,154,75,.22);
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    border-radius: 15px;
}

.step-no {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--teal);
    font-size: 12px;
    font-weight: 850;
}

.flow-step strong {
    display: block;
    font-size: 13px;
}

.flow-step small {
    display: block;
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 10px;
}

.merchant-principle {
    max-width: var(--max);
    margin: 0 auto 85px;
    padding: 0 22px;
}

.principle-card {
    display: grid;
    border-radius: 32px;
    overflow: hidden;
    background: var(--deep);
    color: white;
    box-shadow: var(--shadow-lg);
    width: 80%;
    margin: 0 auto;
}

.principle-visual {
    min-height: 390px;
    position: relative;
    background: linear-gradient(135deg, rgba(12,48,51,.5), rgba(12,48,51,.12)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1200&q=85') center/cover;
}

    .principle-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(18,56,59,.65));
    }

.principle-copy {
    padding: 52px;
    align-self: center;
}

    .principle-copy .section-kicker {
        color: #e9bf73;
    }

    .principle-copy h2 {
        margin: 10px 0 16px;
        color: white;
    }

    .principle-copy p {
        color: rgba(255,255,255,.72);
        line-height: 1.75;
    }

.principle-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

    .principle-points div {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: rgba(255,255,255,.84);
        font-size: 13px;
        line-height: 1.5;
    }

    .principle-points .icon {
        color: #e9bf73;
        margin-top: 2px;
    }

/* ── FOOTER ── */
.footer {
    background: #0d282b;
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 24px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
}

@media (max-width: 991px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fca311;
}

.footer-bottom {
    max-width: 1320px;
    margin: 32px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fca311;
}

/* ── Footer Payment Methods ── */
.supported-brands-container {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    margin-top: 10px;
    padding: 0;
    background: transparent;
}

.payment-brand {
    width: 44px;
    height: 28px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3px 5px;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.payment-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.22);
}

.visa-brand {
    background-image: url('../img/supported-brand-visa-5VGWDZXF.svg');
}

.mastercard-brand {
    background-image: url('../img/supported-brand-mastercard-5RRG52PH.svg');
}

.amex-brand {
    background-image: url('../img/express_logo-4ZHMI6WK.png');
}

.omannet-brand {
    background-image: url('../img/oman_net-OJGRVNW5.svg');
}

.applepay-brand {
    background-image: url('../img/supported-brand-applepay-5VOXRCUD.svg');
}

.googlepay-brand {
    background-image: url('../img/GPay_Acceptance_Mark_800-DV65H7QK.png');
}

.maal-brand {
    background-image: url('../img/maal-LR5GVS3I.svg');
}

.back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 0;
    border-radius: 14px;
    color: white;
    background: var(--deep);
    box-shadow: var(--shadow-md);
}

    .back-top.show {
        display: grid;
    }

.select2-selection, .select2-selection--single {
    height: 44px !important;
}

.select2-selection__arrow, .select2-selection__rendered {
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
}

/* Responsive */
@media (max-width: 1120px) {
    .desktop-nav {
        display: none;
    }

    .menu-btn {
        display: grid;
    }

    .domain-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

    .merchant-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-top: 70px;
        gap: 38px;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
        gap: 13px;
    }

    .filters {
        grid-template-columns: 1fr 1fr;
    }

    .flow-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .principle-card {
        grid-template-columns: 1fr;
    }

    .principle-visual {
        min-height: 300px;
    }
}

@media (max-width: 650px) {
    .nav-wrap {
        padding: 11px 15px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 41px;
        height: 41px;
        border-radius: 13px;
    }

    .brand-copy strong {
        font-family: "Kalam", "Segoe Print", cursive;
        font-size: 18px;
        font-weight: 400;
    }

    .brand-copy span {
        display: none;
    }

    .location-pill {
        display: none;
    }

    .hero-inner {
        padding: 54px 16px 82px;
    }

    .hero h1 {
        font-size: 39px;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .hero-copy > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-search {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px;
        padding: 6px;
        border-radius: 18px;
    }

        .hero-search label {
            min-height: 48px;
            padding: 0 10px;
            overflow: hidden;
        }

        .hero-search input {
            font-size: 14px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .hero-search .primary-btn {
            width: auto;
            min-width: 116px;
            padding: 12px 16px;
            white-space: nowrap;
        }

    .hero-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-btn {
        width: 100%;
    }

    .secondary-btn {
        width: 100%;
    }

    .city-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .city-stat {
        aspect-ratio: auto;
        padding: 8px 4px;
        border-radius: 12px;
    }

        .city-stat strong {
            font-size: 16px;
        }

        .city-stat span {
            margin-top: 2px;
            font-size: 8px;
            letter-spacing: .3px;
            white-space: nowrap;
        }

            .city-stat:first-child span::after {
                font-size: 8px;
            }

            .city-stat span .ln {
                display: inline;
            }

    .section {
        padding: 64px 16px;
    }

        .section h2 {
            font-size: 36px;
        }

    .domain-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 11px;
    }

    .domain-card {
        min-height: 154px;
    }

    .filters {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .reset-btn {
        min-height: 46px;
    }

    .listing-meta {
        align-items: start;
        flex-direction: column;
    }

    .merchant-grid {
        grid-template-columns: 1fr;
    }

    .merchant-info {
        grid-template-columns: 1fr 1fr;
    }

    .flow-strip {
        grid-template-columns: 1fr;
    }

    .principle-copy {
        padding: 35px 24px;
    }

    .merchant-principle {
        margin-bottom: 60px;
        padding: 0 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* ==========================================================================
   Modern Profile Dropdown UI Component
   ========================================================================== */
.user-profile-wrapper {
    position: relative;
    z-index: 2005;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    font-family: inherit;
    outline: none;
}

.user-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(25, 103, 102, 0.22);
    border-radius: 40px;
    padding: 4px 12px 4px 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(15, 36, 37, 0.06);
    outline: none;
    user-select: none;
    text-decoration: none;
    color: var(--ink, #0f2425);
    height: 38px;
}

    .user-profile-btn:hover,
    .user-profile-btn:focus-visible,
    .user-profile-wrapper.open .user-profile-btn,
    .user-profile-wrapper:focus-within .user-profile-btn {
        background: #ffffff;
        border-color: var(--teal, #196766);
        box-shadow: 0 4px 14px rgba(25, 103, 102, 0.15);
    }

.user-avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal, #196766) 0%, #0d4645 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(25, 103, 102, 0.25);
}

.user-name-text {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}

.dropdown-caret {
    font-size: 11px;
    color: #64748b;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
}

.user-profile-wrapper.open .dropdown-caret,
.user-profile-wrapper:focus-within .dropdown-caret {
    transform: rotate(180deg);
    color: var(--teal, #196766);
}

/* Dropdown Menu Card */
.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #ffffff;
    border: 1px solid rgba(15, 36, 37, 0.08);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 12px 32px rgba(12, 45, 48, 0.14), 0 4px 12px rgba(12, 45, 48, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 100000;
}

.user-profile-wrapper.open .profile-dropdown-menu,
.user-profile-wrapper:focus-within .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Hover support for desktop */
@media (hover: hover) {
    .user-profile-wrapper:hover .profile-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .user-profile-wrapper:hover .dropdown-caret {
        transform: rotate(180deg);
        color: var(--teal, #196766);
    }

    .user-profile-wrapper:hover .user-profile-btn {
        border-color: var(--teal, #196766);
        box-shadow: 0 4px 14px rgba(25, 103, 102, 0.15);
    }
}

.dropdown-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 4px;
}

.dropdown-user-avatar {
    font-size: 24px;
    color: var(--teal, #196766);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dropdown-user-title {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dropdown-user-subtitle {
    font-size: 11px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 4px 0;
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    box-sizing: border-box;
    font-family: inherit;
}

    .profile-dropdown-item i {
        font-size: 15px;
        color: #64748b;
        transition: color 0.15s ease;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }

    .profile-dropdown-item:hover {
        background-color: #e6f3f2;
        color: var(--teal, #196766);
    }

        .profile-dropdown-item:hover i {
            color: var(--teal, #196766);
        }

    .profile-dropdown-item.logout-item {
        color: #dc2626;
    }

        .profile-dropdown-item.logout-item i {
            color: #dc2626;
        }

        .profile-dropdown-item.logout-item:hover {
            background-color: #fef2f2;
            color: #b91c1c;
        }

            .profile-dropdown-item.logout-item:hover i {
                color: #b91c1c;
            }
