/* ═══════════════════════════════
    TOKENS
═══════════════════════════════ */
:root {
    --bg: #14100d;
    --bg-alt: #1a120f;
    --bg-deep: #0e0a08;
    --text: #f7efe4;
    --muted: #c9b8a1;
    --primary: #d4a56a;
    --danger: #e66a2c;
    --accent: #4b3328ff;

    /* Variable-driven borders and effects */
    --border: #d4a56a2e;
    --border-dim: #d4a56a14;
    --border-alert: #d4a56a66;
    --border-danger: #e66a2c66;
    --primary-glow: #d4a56aaa;
    --danger-glow: #e66a2caa;
    --primary-shimmer: #d4a56a1a;
    --bg-overlay: #0a080699;
    --bg-modal: #1a120f73;
    --bg-modal-alt: #4d352d73;


    --bs-primary-rgb: var(--primary);
    --bs-primary: var(--primary);

    --bs-secondary-color: var(--muted);
    --bs-border-radius: 2px;
    --bs-border-radius-sm: 2px;
    --bs-border-radius-md: 2px;
    --bs-border-radius-lg: 2px;
    --bs-border-radius-xl: 4px;
    --bs-border-radius-2xl: 6px;
}

/* ═══════════════════════════════
    BASE
═══════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

:focus-visible {
    /* outline: 2px solid var(--primary) !important; */
    /* outline-offset: 2px; */
    /* box-shadow: none !important; */
    /* border-radius: 1px; */
}

/* Specific overrides for common framework defaults */
.btn:focus,
.btn:active:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

body {
    scrollbar-gutter: stable;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'PT Sans', system-ui, sans-serif;
    overflow-x: hidden;
    font-size: 1.05rem;
}

/* ═══════════════════════════════
    GLOBAL SCROLLBARS
═══════════════════════════════ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-deep);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bebas Neue', sans-serif;
}

/* ═══════════════════════════════
    TYPOGRAPHY UTILITIES
═══════════════════════════════ */
.eyebrow {
    display: block;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.section-intro {
    color: var(--muted);
}

.text-sand {
    color: var(--muted);
}

.text-primary-sand {
    color: var(--primary);
}

.lead {
    font-size: 1.20rem;
    letter-spacing: 0.05rem !important;
}

.link-sand {
    color: var(--primary);
    text-decoration: none;
}

.link-sand:hover {
    color: var(--accent);
}

.sand-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sand-link:hover {
    color: var(--muted);
}

/* ═══════════════════════════════
    NAVBAR
═══════════════════════════════ */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: transparent;
    font-family: 'Bebas Neue', sans-serif;
    transition: background .35s ease, backdrop-filter .35s ease;
}

.navbar .btn {
    font-size: 1rem;
}

.navbar.scrolled {
    background: rgba(20, 16, 13, .5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar-logo {
    height: 60px;
    transition: height .3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

.nav-link {
    color: var(--muted) !important;
    margin: 0 8px;
    font-size: 1rem;
    position: relative;
    letter-spacing: 0.15rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .28s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    padding: 6px 10px;
    line-height: 1;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 165, 106, .25);
}

.navbar-toggler-icon-custom {
    color: var(--text);
    font-size: 1.4rem;
}

/* ═══════════════════════════════
    OFFCANVAS
═══════════════════════════════ */
.offcanvas {
    background: rgba(20, 16, 13, .5) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* border-left: 1px solid var(--border) !important; */
    max-width: 280px;
}

.offcanvas-header {
    /* border-bottom: 1px solid var(--border); */
    padding: 1.2rem 1.5rem;
    justify-content: space-between;
}

.offcanvas-brand {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.offcanvas-close-btn {
    background: transparent;
    border: 0px solid var(--border);
    color: var(--muted);
    width: 32px;
    height: 32px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s, color .2s;
}

.offcanvas-close-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.offcanvas-body {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
}

.offcanvas-body .nav-link:hover::after, .offcanvas-body .nav-link.active::after {
    width: 0;
}

.offcanvas-body .nav-link {
    display: block;

    padding: 13px 0 !important;
    margin: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(212, 165, 106, 0);
}

.offcanvas-body .nav-link::after {
    bottom: -1px;
}

.offcanvas-cta {
    margin-top: 1.5rem;
}

.offcanvas-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 1.2rem;
}

.offcanvas-social a {
    color: var(--muted);
    transition: color .2s;
}

.offcanvas-social a:hover {
    color: var(--primary);
}

/* ═══════════════════════════════
    BUTTONS
═══════════════════════════════ */
.btn-primary,
.btn-outline-sand {
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

/* sliding layer */
.btn-primary::before,
.btn-outline-sand::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.15s cubic-bezier(.4, 0.5, .2, 1);
}

/* colors */
.btn-primary::before {
    background: var(--accent);
}

.btn-outline-sand::before {
    background: var(--primary);
}

/* trigger slide */
.btn-primary:hover::before,
.btn-outline-sand:hover::before {
    transform: translateX(0);
}

/* base button (IMPORTANT: kill Bootstrap interference) */
.btn-primary {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #1a120d;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 2px;
    transform: translateY(0);
    transition: transform .15s, color .15s;
}

/* hover only color, NOT background */
.btn-primary:hover {
    color: var(--text);
    transform: translateY(-1px);
}

/* outline */
.btn-outline-sand {
    background: transparent !important;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 2px;
}

.btn-outline-sand:hover {
    color: var(--accent);
}

/* ═══════════════════════════════
    SECTIONS
═══════════════════════════════ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-alt);
}

.section-contact {
    background: var(--bg-alt);
}

/* ═══════════════════════════════
    HERO
═══════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    width: 120%;
    left: -10%;
    height: auto;
    will-change: transform;
}

@media (max-width: 768px) {
    .hero-layer:not(.hero-layer--sky) {
        height: 80vh !important;
        bottom: -10px !important;
        top: auto !important;
        width: 300% !important;
        left: -100% !important;
    }
}

.hero-layer--sky {
    z-index: 1;
    top: 0;
}

.hero-layer--back {
    z-index: 2;
    bottom: 0;
}

.hero-layer--mid {
    z-index: 3;
    bottom: 0;
}

.hero-layer--front {
    z-index: 4;
    bottom: 0;
}

.hero-svg-fill {
    fill: var(--bg);
}

.hero-svg-fill-alt {
    fill: var(--bg-alt);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(4.5rem, 7.5vw, 9rem);
    line-height: 1.05;
    font-weight: bold;
}

.signature {
    font-family: "Niconne";
}

.glow {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--muted);
}

/* Scroll Down Button */
.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 165, 106, 0.3);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: var(--primary);
    color: var(--bg-deep);
    border-color: var(--primary);
    transform: translateY(5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ═══════════════════════════════
    FEATURED GAME
═══════════════════════════════ */
.featured-game {
    position: relative;
    background: var(--bg);
    padding-top: 150px;
}

.top-wave {
    position: absolute;
    top: -149px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 10;
}

/* ═══════════════════════════════
    WORLD CARDS
═══════════════════════════════ */
.card-dark {
    /* background: rgba(255, 255, 255, .025); */
    /* border: 1px solid var(--border); */
    border-radius: 4px;
    padding: 24px 20px;
    transition: transform .3s, border-color .3s;
}

.card-dark:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 106, 44, .4);
}

.card-dark img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}

.card-icon {
    color: var(--primary);
    font-size: 1.7rem;
}

.text-shadow {
    text-shadow: 0px -3px 4px black;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: .75rem;
}

.card-desc {
    color: var(--muted);
    font-size: .1rem;
    margin-top: .4rem;
    margin-bottom: 0;
}

/* ═══════════════════════════════
    PARALLAX BREAK
═══════════════════════════════ */
.break {
    position: relative;
    overflow: hidden;
}

.break-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.break-layer--img {
    background-image: url("/public/uae.jpg");
    opacity: .4;
    z-index: 1;
}

.break-layer--fade {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .9));
    z-index: 2;
}

.break-content {
    position: relative;
    z-index: 3;
    padding: 140px 20px;
    text-align: center;
}

.break-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.break-body {
    color: rgba(247, 239, 228, .72);
    font-size: 1.05rem;
    margin: 0 auto;
}

/* ═══════════════════════════════
    ArkSlider GRID (DRAGGABLE/RESPONSIVE)
═══════════════════════════════ */
.ark-grid-wrapper {
    overflow-x: hidden;
    padding: 20px 0 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ark-grid-wrapper::-webkit-scrollbar {
    display: none;
}

.ark-grid {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.ark-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 500px;
    width: 400px;
    flex-shrink: 0;
    background: var(--bg-deep);
    border: 1px solid var(--border-dim);
    transition: border-color 0.4s ease;
}

.ark-card:hover {
    border-color: var(--primary);
}

.ark-card-inner {
    position: absolute;
    inset: 0;
}

.ark-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.ark-card:hover .ark-card-img {
    opacity: 0.7;
}

.ark-card-content {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
    z-index: 2;
}

.ark-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.ark-card-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.ark-card-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ark-grid {
        grid-template-columns: repeat(3, 320px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .ark-card {
        height: 450px;
    }
}

/* World Grid Nav Buttons */
.ark-grid-nav {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.ark-grid-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.container:hover .ark-grid-btn {
    opacity: 1;
    transform: scale(1);
}

.ark-grid-btn:hover {
    background: var(--primary);
    color: var(--bg-deep);
    border-color: var(--primary);
}

.ark-grid-btn:focus,
.ark-grid-btn:active {
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 1200px) {
    .ark-grid-nav {
        left: 10px;
        right: 10px;
    }

    .ark-grid-btn {
        opacity: 0.8;
        transform: scale(0.9);
        width: 40px;
        height: 40px;
    }
}

/* ═══════════════════════════════
    VIDEO SLIDER OVERRIDES
═══════════════════════════════ */
.video-card {
    border-radius: 0;
    border: none;
    height: 400px;
    width: 300px;
    background: transparent;
}

.video-card .ark-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: none;
}

.mute-btn.global-mute {
    pointer-events: auto;
    background: rgba(20, 16, 13, 0.6);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mute-btn.global-mute:hover {
    background: var(--primary);
    color: var(--bg-deep);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 165, 106, 0.3);
}

/* Audio Hint Overlay (Top-Right Badge) */
.audio-hint-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 110;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.audio-hint-overlay.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.audio-hint-content {
    background: var(--primary);
    color: #1a120d;
    padding: 6px 14px;
    border-radius: 2px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.ark-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    transition: transform 0.3s ease;
    pointer-events: none;
}

@keyframes pulse-sand {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 165, 106, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 165, 106, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 165, 106, 0);
    }
}

.ark-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 768px) {
    .video-card {
        height: 350px;
        width: 250px;
    }
}

/* ═══════════════════════════════
    PARALLAX IMAGE WRAP
═══════════════════════════════ */
.parallax-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.parallax-wrap-fade {
    position: relative;
    border-radius: 0px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.parallax-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.25);
    will-change: transform;
}

/* ═══════════════════════════════
    SECTION PAIR (image + text)
═══════════════════════════════ */
.game-desc {
    color: var(--muted);
}


/* ═══════════════════════════════
    CTA SECTION
═══════════════════════════════ */
.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-body {
    color: var(--muted);
    max-width: 650px !important;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════
    FORM CONTROLS (full override)
═══════════════════════════════ */
.form-label {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(212, 165, 106, .22);
    color: var(--text);
    border-radius: 2px;
    padding: .65rem 1rem;
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(212, 165, 106, .45);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, .06);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 106, .15);
    color: var(--text);
    outline: none;
}

.form-control::placeholder {
    color: var(--muted);
    opacity: .5;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* Select – gold chevron */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4a56a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .85rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1c1209;
    color: var(--text);
}

/* Checkbox / Radio */
.form-check-input {
    background-color: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(212, 165, 106, .4);
    cursor: pointer;
    transition: background-color .15s, border-color .15s, box-shadow .15s;
}

.form-check-input:hover {
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 106, .18);
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.form-check-input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%231a120d' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="radio"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%231a120d'/%3e%3c/svg%3e") !important;
}

.form-check-label {
    color: var(--muted);
    font-size: .9rem;
    cursor: pointer;
}

.form-check-input:checked+.form-check-label {
    color: var(--text);
}

/* Range */
.form-range {
    width: 100%;
}

.form-range::-webkit-slider-runnable-track {
    background: rgba(212, 165, 106, .2);
    border-radius: 2px;
    height: 4px;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary);
    border: none;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    margin-top: -6px;
    cursor: pointer;
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(212, 165, 106, .2);
}

/* ═══════════════════════════════
    CONTACT CARD & FORM LAYOUT
═══════════════════════════════ */
.contact-card {
    /* background: rgba(255,255,255,.025); */
    /* border: 1px solid var(--border); */
    border-radius: 4px;
    padding: 2.5rem;
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1.5rem 1rem;
    }
}

.form-divider {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem;
    letter-spacing: 1.5px;
    color: var(--primary);
    border-bottom: 1px solid var(--border-dim);
    padding-bottom: .2rem;
    margin-bottom: 1.25rem;
}

.urgency-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: .4rem;
}

.urgency-hint {
    color: var(--muted);
    font-size: .78rem;
}

.urgency-value {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 600;
}

/* ═══ SERVICES POPUP ENHANCEMENTS ═══ */
.process-timeline {
    border-left: 2px solid rgba(193, 154, 107, 0.1);
    position: relative;
}

.process-item {
    position: relative;
}

.process-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(193, 154, 107, 0.05);
    border: 1px solid rgba(193, 154, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -41px;
    /* Center on the border-left of parent */
    z-index: 2;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--sand-primary);
    color: var(--bg-dark);
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.timeline-line {
    position: absolute;
    left: -17px;
    top: 50px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--sand-primary) 0%, transparent 100%);
    opacity: 0.2;
}

.benefit-card {
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.benefit-card:hover i {
    opacity: 1;
}

/* ═══════════════════════════════
    FOOTER
═══════════════════════════════ */
footer {
    background: var(--bg-deep);
    padding: 50px 0;
    border-top: 1px solid var(--border);
    font-size: .88rem;
}

.footer-logo {
    height: 88px;
}

.footer-brand-name {
    font-size: 1.8rem;
}

.footer-tagline {
    color: var(--muted);
}

.footer-heading {
    font-size: 1rem;
    letter-spacing: .5px;
}

.footer-link {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-newsletter-copy {
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: .9rem;
    font-size: 1.2rem;
}

.footer-social a {
    color: var(--muted);
    transition: color .2s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-divider {
    border-color: rgba(212, 165, 106, .1);
}

.footer-copy {
    color: var(--muted);
    font-size: .8rem;
}

.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable:hover {
    transform: scale(1.02);
}

/* Stock Status Badge */
.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    z-index: 10;
    text-transform: uppercase;
}

.stock-badge.in-stock {
    background: var(--primary);
    color: var(--bg-deep);
}

.stock-badge.out-of-stock {
    background: rgba(0, 0, 0, 0.6);
    color: var(--muted);
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

/* ═══════════════════════════════
    LIGHTHOUSE (LIGHTBOX)
═══════════════════════════════ */
.lighthouse {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lighthouse.active {
    display: block;
}

.lighthouse-scroll {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
}

.lighthouse-content-wrap {
    margin: auto;
    width: 80%;
    max-width: 1200px;
    text-align: center;
}

.lighthouse-content {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-dim);
    animation: lighthouse-zoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#lighthouseCaption {
    margin-top: 20px;
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    animation: lighthouse-zoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lighthouse-zoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lighthouse-close {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.3s ease;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.05);
}

.lighthouse-close:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

@media only screen and (max-width: 700px) {
    .lighthouse-content {
        width: 100%;
        margin-top: 20%;
    }
}

/* ═══════════════════════════════
    ARK POPUP (REUSABLE COMPONENT)
═══════════════════════════════ */
.ark-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(14, 10, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text);
}

.ark-popup.active {
    display: flex;
    flex-direction: column;
}

.ark-popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.3s ease;
    z-index: 3002;
    background: rgba(255, 255, 255, 0.03);
}

.ark-popup-close:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.ark-popup-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 100px 10%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scroll hint */
.ark-popup-scroll-hint {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 3010;
    pointer-events: none;
    animation: ark-scroll-bounce 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes ark-scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

.ark-popup-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.ark-popup-step .row {
    margin-left: 0;
    margin-right: 0;
}

.ark-popup-step img {
    max-height: 60vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 2px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ark-popup-step.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

/* Bottom Nav */
.ark-popup-nav {
    position: relative;
    width: 100%;
    height: 120px;
    background: rgba(10, 8, 6, 0.95);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 3001;
}

.ark-popup-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ark-popup-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--bg-deep);
}

.ark-popup-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Slider Controls */
.ark-popup-slider-wrap {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ark-popup-label {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ark-popup-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border);
    outline: none;
    border-radius: 2px;
}

.ark-popup-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 165, 106, 0.4);
}

@media (max-width: 991px) {
    .ark-popup-nav {
        height: auto;
        padding: 25px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .ark-popup-slider-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
        order: -1;
    }

    .ark-popup-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .ark-popup-content {
        padding: 80px 20px 180px;
    }
}

/* ═══════════════════════════════
    VIEW TRANSITIONS
═══════════════════════════════ */
@view-transition {
    navigation: auto;
}

/* Freeze the Navbar */
.navbar {
    view-transition-name: main-navbar;
}

/* Current page goes down, new page appears */
::view-transition-old(root) {
    animation: 0.6s cubic-bezier(0.4, 0, 0.2, 1) both slide-down-out;
    z-index: 10;
}

::view-transition-new(root) {
    animation: 0.6s ease-in both fade-in;
    z-index: 1;
}

@keyframes slide-down-out {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100vh);
        opacity: 0.5;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════
    BACK TO TOP
═══════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #1a120d;
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s, background .2s;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--accent);
    color: #fff;
}

.mw-600 {
    max-width: 600px !important;
}

.mw-500 {
    max-width: 500px !important;
}

/* ═══════════════════════════════
    BOOTSTRAP OVERRIDES
═══════════════════════════════ */
/* Neutralize validation - Pure Minimalist */
.was-validated .form-control:valid,
.was-validated .form-control:invalid,
.was-validated .form-select:valid,
.was-validated .form-select:invalid {
    border-color: rgba(212, 165, 106, .2) !important;
    background-image: none !important;
    box-shadow: none !important;
    color: var(--text) !important;
}

.was-validated .form-control:focus,
.was-validated .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(212, 165, 106, 0.15) !important;
}

.was-validated .form-check-input:valid,
.was-validated .form-check-input:invalid {
    border-color: rgba(212, 165, 106, .4) !important;
}

.was-validated .form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.was-validated .form-check-label {
    color: var(--muted) !important;
}

/* ═══════════════════════════════
    ARK HINT (Premium Integrated)
═══════════════════════════════ */
.ark-hint {
    color: var(--primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.ark-hint.visible {
    height: auto;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ═══════════════════════════════
    ARK ALERT (THEMED)
═══════════════════════════════ */
.ark-alert {
    padding: 1.25rem 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-dim);
    color: var(--text);
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    border-radius: 2px;
}

.ark-alert::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}

.ark-alert-success {
    color: #88c070;
}

.ark-alert-success::before {
    background: #88c070;
}

.ark-alert-danger {
    color: #e66a2c;
}

.ark-alert-danger::before {
    background: #e66a2c;
}

/* ═══════════════════════════════
    ARK TOAST (Premium Glassmorphism)
═══════════════════════════════ */
.ark-toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.ark-toast {
    pointer-events: auto;
    background: rgba(26, 18, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 1.25rem 2rem;
    border-radius: 2px;
    color: var(--text);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 320px;
    max-width: 450px;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ark-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.ark-toast::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
}

.ark-toast.success::before {
    background: #88c070;
}

.ark-toast.danger::before {
    background: #e66a2c;
}

.ark-toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ark-toast-icon.success {
    color: var(--primary);
}

.ark-toast-icon.danger {
    color: var(--danger);
}

.ark-toast-icon.info {
    color: var(--primary);
}

.ark-toast-content {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ═══════════════════════════════
    ARK ALERT MODAL (JS Replacement)
═══════════════════════════════ */
.ark-alert-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--bg-overlay);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ark-fade-in 0.4s ease;
}

.ark-alert-overlay.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ark-alert-modal {
    /* Local color state */
    --b-base: var(--bg-modal);
    --b-shine: var(--primary);

    background: var(--bg-modal);
    padding: 2rem 1.5rem;
    border-radius: 2px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Ambient Glow */
    box-shadow: 0 25px 60px #000000a6;
    animation: ark-slide-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Metallic Border Frame */
.ark-alert-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    /* Border Thickness */
    background: linear-gradient(115deg,
            var(--b-base) 0%,
            var(--b-base) 40%,
            var(--b-shine) 50%,
            var(--b-base) 60%,
            var(--b-base) 100%);
    background-size: 300% 100%;
    animation: ark-border-shine 4s infinite linear;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
    opacity: 0.6;
}

@keyframes ark-border-shine {
    0% {
        background-position: 150% 0;
    }

    100% {
        background-position: -150% 0;
    }
}

.ark-alert-modal.danger {
    --b-base: var(--bg-modal);
    --b-shine: var(--danger);
}

.ark-alert-modal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.ark-alert-content {
    position: relative;
    z-index: 2;
}

.ark-alert-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            transparent 0%,
            transparent 45%,
            var(--primary-shimmer) 50%,
            transparent 55%,
            transparent 100%);
    background-size: 300% 100%;
    background-repeat: no-repeat;
    animation: ark-shimmer 3.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

@keyframes ark-shimmer {
    0% {
        background-position: -150% 0;
    }

    100% {
        background-position: 150% 0;
    }
}

.ark-alert-title {
    color: var(--text);
    letter-spacing: 2px;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
}

.ark-alert-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(212, 165, 106, 0.2));
}

.ark-alert-icon.info {
    color: var(--primary);
}

.ark-alert-icon.success {
    color: var(--primary);
}

.ark-alert-icon.danger {
    color: var(--danger);
}

.ark-alert-message-wrap {
    position: relative;
    padding: 0 10%;
}

.ark-alert-message {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.7;
}

@keyframes ark-fade-in {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
}

@keyframes ark-slide-up {
    from {
        transform: translateY(40px) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ═══════════════════════════════
    CINEMATIC SUBMISSION (In-Place)
═══════════════════════════════ */
.ark-form-card {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: min-height 0.4s ease;
}

.ark-form-inner {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.ark-form-inner.exit {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

.ark-form-inner.enter {
    opacity: 0;
    transform: translateY(30px);
    display: none;
}

.ark-form-inner.enter.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: content-glide-in 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes content-glide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-icon-pulse {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px var(--primary-shimmer));
    animation: message-pulse 2.5s infinite ease-in-out;
}

@keyframes message-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        filter: drop-shadow(0 0 10px var(--primary-shimmer));
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 30px var(--primary-shimmer));
    }
}

/* Paper Plane Cinematic Flight */
.paper-plane-container {
    position: fixed;
    top: 50%;
    left: -150px;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

.paper-plane-container.animating {
    display: block;
    animation: plane-flight 2.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.paper-plane-svg {
    width: 100px;
    height: 100px;
    fill: var(--primary);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

@keyframes plane-flight {
    0% {
        left: -150px;
        top: 70%;
        transform: rotate(25deg) scale(0.5);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        top: 30%;
        transform: rotate(-10deg) scale(1.4);
    }

    100% {
        left: 120%;
        top: 10%;
        transform: rotate(-35deg) scale(0.6);
        opacity: 0;
    }
}

/* ═══════════════════════════════
    Pagination
═══════════════════════════════ */

.pagination .page-item .page-link {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'Bebas Neue', sans-serif;
    padding: 10px 18px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--bg-deep) !important;
}

.pagination .page-item .page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.3;
    pointer-events: none;
}


.shimmer-text {
    display: inline-block;
    color: #888;
    /* base color */
    background: linear-gradient(90deg,
            #888 0%,
            #bbb 20%,
            #fff 50%,
            #bbb 80%,
            #888 100%);

    background-size: 200% 100%;
    background-position: 0% 0%;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.dropdown-menu {
    background: var(--bg-modal-alt);
    /* border: 1px solid var(--border); */
    border-radius: var(--bs-border-radius);
    /* 2px */
    padding: .4rem;
    min-width: 220px;

    backdrop-filter: blur(4px);
    position: relative;
}

.dropdown-divider {
    border-color: var(--border-dim);
    opacity: 1;
}

.dropdown-header {
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .5rem .75rem;
}

.dropdown-item {
    color: var(--text);
    border-radius: var(--bs-border-radius);
    /* 2px */
    padding: .65rem .85rem;
    transition: all .15s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--text);
    background: var(--primary-shimmer);
}

.dropdown-item:active,
.dropdown-item.active {
    color: var(--bg-deep);
    background: var(--primary);
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--muted);
    opacity: .45;
}

.dropdown-menu-dark {
    background: var(--bg-alt);
}

.dropdown-item.text-danger {
    color: var(--danger) !important;
}

.dropdown-item.text-danger:hover,
.dropdown-item.text-danger:focus {
    background: rgba(230, 106, 44, .12);
}