    :root {
      --forest: #1B4332;
      --fd: #0d2b1f;
      --fdp: #081a12;
      --fm: #2D6A4F;
      --fl: #40916C;
      --gold: #C9933A;
      --glt: #E8B96A;
      --ease: cubic-bezier(.4, 0, .2, 1);
      --back: cubic-bezier(.34, 1.56, .64, 1);
      --bg: #081a12;
      --bg2: #0d2b1f;
      --bg3: #112518;
      --sf: rgba(255, 255, 255, .04);
      --sf2: rgba(255, 255, 255, .08);
      --bd: rgba(201, 147, 58, .18);
      --bd2: rgba(201, 147, 58, .35);
      --tp: #FBF7F0;
      --ts: rgba(251, 247, 240, .66);
      --tm: rgba(251, 247, 240, .38);
      --card: rgba(13, 43, 31, .55);
      --cdb: rgba(201, 147, 58, .14)
    }

    [data-theme="light"] {
      --bg: #FBF7F0;
      --bg2: #F4EDE0;
      --bg3: #EDE0CE;
      --sf: rgba(27, 67, 50, .05);
      --sf2: rgba(27, 67, 50, .09);
      --bd: rgba(27, 67, 50, .12);
      --bd2: rgba(201, 147, 58, .4);
      --tp: #1A1A1A;
      --ts: #4A4A4A;
      --tm: #909090;
      --card: #fff;
      --cdb: rgba(27, 67, 50, .08)
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Tajawal', sans-serif;
      background: var(--bg);
      color: var(--tp);
      overflow-x: hidden;
      transition: background .4s, color .4s
    }

    ::selection {
      background: var(--gold);
      color: #fff
    }

    ::-webkit-scrollbar {
      width: 5px
    }

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

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px
    }

    .ann {
      background: var(--fdp);
      height: 40px;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid rgba(201, 147, 58, .1)
    }

    .ann-t {
      display: flex;
      gap: 80px;
      white-space: nowrap;
      animation: scrl 32s linear infinite;
      font-size: 13px;
      color: var(--glt);
      font-weight: 500;
      align-items: center
    }

    @keyframes scrl {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 300;
      background: rgba(8, 26, 18, .93);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--bd);
      transition: all .4s
    }

    [data-theme="light"] nav {
      background: rgba(251, 247, 240, .95);
      border-bottom-color: rgba(27, 67, 50, .1)
    }

    nav.sc {
      box-shadow: 0 8px 32px rgba(0, 0, 0, .25)
    }

    .ni {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 44px;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none
    }

    .brand img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: contain;
      border: 2px solid rgba(201, 147, 58, .5);
      box-shadow: 0 0 22px rgba(201, 147, 58, .28);
      transition: all .4s;
      background: var(--fdp)
    }

    .brand:hover img {
      transform: scale(1.08) rotate(-5deg)
    }

    .bn {
      font-family: 'Amiri', serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--glt);
      display: block;
      line-height: 1.2
    }

    .bs {
      font-size: 10px;
      color: rgba(201, 147, 58, .5);
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block
    }

    [data-theme="light"] .bn {
      color: var(--fd)
    }

    .nl {
      display: flex;
      gap: 2px;
      list-style: none
    }

    .nl a {
      color: var(--ts);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 13px;
      border-radius: 9px;
      transition: all .25s;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .nl a:hover {
      color: var(--glt);
      background: rgba(201, 147, 58, .1)
    }

    .nsrch {
      display: flex;
      align-items: center;
      gap: 9px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 50px;
      padding: 8px 15px;
      flex: 1;
      max-width: 250px;
      transition: all .3s
    }

    .nsrch:focus-within {
      border-color: var(--gold);
      background: var(--sf2)
    }

    .nsrch input {
      background: none;
      border: none;
      outline: none;
      color: var(--tp);
      font-family: 'Tajawal', sans-serif;
      font-size: 13.5px;
      width: 100%;
      text-align: right
    }

    .nsrch input::placeholder {
      color: var(--tm)
    }

    .na {
      display: flex;
      align-items: center;
      gap: 7px
    }

    .iB {
      position: relative;
      width: 42px;
      height: 42px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 11px;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--tp);
      text-decoration: none;
      transition: all .28s
    }

    .iB:hover {
      background: var(--sf2);
      border-color: var(--gold);
      transform: translateY(-2px)
    }

    .ibdg {
      position: absolute;
      top: -5px;
      left: -5px;
      width: 18px;
      height: 18px;
      background: var(--gold);
      color: var(--fdp);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--bg)
    }

    .dmb {
      width: 44px;
      height: 24px;
      background: var(--sf2);
      border: 1px solid var(--bd);
      border-radius: 12px;
      cursor: pointer;
      position: relative;
      transition: all .3s;
      flex-shrink: 0
    }

    .dmb::after {
      content: '';
      position: absolute;
      top: 3px;
      right: 3px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      transition: all .35s var(--back)
    }

    [data-theme="light"] .dmb::after {
      right: calc(100% - 19px)
    }

    .ctaN {
      display: flex;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, var(--gold), #b8792a);
      color: var(--fdp);
      padding: 10px 22px;
      border-radius: 50px;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 800;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 4px 18px rgba(201, 147, 58, .4);
      white-space: nowrap
    }

    .ctaN:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(201, 147, 58, .55)
    }

    /* ══════════════════════════════════════════════════════
       HERO — Premium Full-Width Design
    ══════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      background: var(--fdp)
    }

    /* ── Background Image ─────────────────────────────── */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0
    }

    .hero-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg,
          rgba(11, 30, 20, 0.82) 0%,
          rgba(11, 30, 20, 0.65) 40%,
          rgba(11, 30, 20, 0.78) 70%,
          rgba(11, 30, 20, 0.92) 100%),
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 147, 58, 0.08), transparent)
    }

    /* ── Decorative Orbs ──────────────────────────────── */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: .1;
      pointer-events: none;
      z-index: 1;
      animation: heroOrbFloat 10s ease-in-out infinite
    }

    .hero-orb1 {
      width: 400px;
      height: 400px;
      background: var(--gold);
      top: -100px;
      right: -80px
    }

    .hero-orb2 {
      width: 300px;
      height: 300px;
      background: #52B788;
      bottom: -60px;
      left: -60px;
      animation-delay: -5s
    }

    @keyframes heroOrbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-30px) scale(1.05)
      }
    }

    /* ── Content ──────────────────────────────────────── */
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      width: 100%;
      max-width: 820px;
      margin: 0 auto;
      padding: 130px 30px 100px;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      direction: rtl
    }

    /* ── Top Badge ────────────────────────────────────── */
    .hero-badge-top {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 147, 58, 0.12);
      border: 1px solid rgba(201, 147, 58, 0.3);
      border-radius: 60px;
      padding: 8px 22px;
      font-size: 13px;
      font-weight: 700;
      color: var(--glt);
      letter-spacing: 0.5px;
      margin-bottom: 28px;
      backdrop-filter: blur(10px);
      animation: badgePulse 3s ease-in-out infinite
    }

    @keyframes badgePulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(201, 147, 58, 0.2)
      }

      50% {
        box-shadow: 0 0 0 10px rgba(201, 147, 58, 0)
      }
    }

    /* ── Eyebrow ──────────────────────────────────────── */
    .eyebrow {
      display: none;
      /* hidden on new design, badge replaces it */
    }

    .eline {
      width: 36px;
      height: 1.5px;
      background: var(--gold)
    }

    .etxt {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--glt);
      letter-spacing: 3px;
      text-transform: uppercase
    }

    /* ── Heading ──────────────────────────────────────── */
    .h1 {
      font-family: 'Amiri', serif;
      font-size: clamp(42px, 7vw, 88px);
      color: var(--tp);
      line-height: 1.15;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #e8d5a3, var(--gold), #f0e0b8, var(--gold));
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: heroShimmer 5s linear infinite;
      text-shadow: none
    }

    .h1 em {
      font-style: normal;
      position: relative
    }

    @keyframes heroShimmer {
      to {
        background-position: -300% center
      }
    }

    @keyframes hIn {
      from {
        opacity: 0;
        transform: translateY(36px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .h1,
      .eyebrow,
      .hdesc,
      .hbtns,
      .hero-stats-bar,
      .hero-badge-top {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important
      }
    }

    /* ── Description ──────────────────────────────────── */
    .hdesc {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 2;
      margin-bottom: 40px;
      max-width: 560px;
      font-weight: 500
    }

    .hdesc strong {
      color: var(--glt);
      font-weight: 800
    }

    /* ── CTA Buttons ──────────────────────────────────── */
    .hbtns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 0
    }

    .btnA {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(135deg, var(--gold), #b8792a);
      color: var(--fdp);
      padding: 15px 38px;
      border-radius: 60px;
      font-family: 'Tajawal', sans-serif;
      font-size: 15.5px;
      font-weight: 800;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .35s;
      box-shadow: 0 6px 30px rgba(201, 147, 58, .35)
    }

    .btnA:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 14px 44px rgba(201, 147, 58, .5)
    }

    .btnB {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255, 255, 255, .06);
      color: var(--tp);
      padding: 15px 34px;
      border-radius: 60px;
      font-family: 'Tajawal', sans-serif;
      font-size: 15.5px;
      font-weight: 500;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, .2);
      cursor: pointer;
      transition: all .3s;
      backdrop-filter: blur(8px)
    }

    .btnB:hover {
      border-color: var(--glt);
      color: var(--glt);
      background: rgba(201, 147, 58, .08)
    }

    /* ── Stats Bar (bottom of hero) ───────────────────── */
    .hero-stats-bar {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 28px 40px;
      background: rgba(255, 255, 255, .04);
      border-top: 1px solid rgba(201, 147, 58, .15);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      width: 100%
    }

    .hero-stat {
      flex: 1;
      text-align: center;
      padding: 0 20px
    }

    .hero-stat-sep {
      width: 1px;
      height: 40px;
      background: rgba(201, 147, 58, .2);
      flex-shrink: 0
    }

    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 900;
      color: var(--glt);
      line-height: 1;
      font-style: italic
    }

    .hero-stat-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      margin-top: 6px;
      font-weight: 500
    }

    /* ── Old classes force-hidden ────────────────────────── */
    .hstats,
    .hs,
    .hsn,
    .hsl,
    .hvis,
    .hvm,
    .hvm-inner,
    .hvm-deco,
    .hvm-deco2,
    .hvm-emoji,
    .hvm-title,
    .hvm-sub,
    .hvm-badge,
    .hfb,
    .hfb1,
    .hfb2,
    .hfb3,
    .mci,
    .mcv,
    .mcl,
    .hvb1,
    .hvb2,
    .hl1,
    .hl2,
    .orb,
    .o1,
    .o2,
    .o3,
    .hin {
      display: none !important;
      visibility: hidden !important;
      width: 0 !important;
      height: 0 !important;
      overflow: hidden !important;
      position: absolute !important;
      pointer-events: none !important
    }

    /* ── Ensure NEW hero elements always visible ──────── */
    .hero-bg,
    .hero-overlay,
    .hero-content,
    .hero-badge-top,
    .hero-stats-bar,
    .hero-stat,
    .hero-stat-num,
    .hero-stat-lbl,
    .hero-stat-sep,
    .hero-orb {
      visibility: visible !important;
      opacity: 1 !important
    }


    .promo {
      background: var(--gold);
      height: 50px;
      display: flex;
      align-items: center;
      overflow: hidden
    }

    .promt {
      display: flex;
      gap: 60px;
      white-space: nowrap;
      animation: scrl 22s linear infinite;
      font-size: 14.5px;
      font-weight: 700;
      color: var(--fdp);
      align-items: center
    }

    .csl {
      position: relative;
      overflow: hidden;
      background: var(--fdp);
      height: 68vh;
      min-height: 480px
    }

    .cslt {
      display: flex;
      height: 100%;
      transition: transform .9s cubic-bezier(.77, 0, .18, 1)
    }

    .cslide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden
    }

    .cs1 {
      background: linear-gradient(135deg, #0d2b1f, #1B4332 60%, #2D6A4F)
    }

    .cs2 {
      background: linear-gradient(135deg, #1a1000, #3d2800 55%, #5c3d00)
    }

    .cs3 {
      background: linear-gradient(135deg, #0f1a2a, #1a2f4a 55%, #1a3d60)
    }

    .cs4 {
      background: linear-gradient(135deg, #1a0a00, #3d1a00 55%, #5c2800)
    }

    .csglow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      filter: blur(100px);
      opacity: .13;
      pointer-events: none
    }

    .cs1 .csglow {
      background: #52B788;
      top: -200px;
      right: -50px
    }

    .cs2 .csglow {
      background: var(--gold);
      top: -100px;
      right: 0
    }

    .cs3 .csglow {
      background: #7cb4e8;
      bottom: -200px;
      right: 0
    }

    .cs4 .csglow {
      background: #e8a050;
      top: -200px;
      right: 0
    }

    .csdotbg {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(201, 147, 58, .07) 1px, transparent 1px);
      background-size: 44px 44px
    }

    .csin {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
      width: 100%
    }

    .cstag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 147, 58, .15);
      border: 1px solid rgba(201, 147, 58, .38);
      border-radius: 100px;
      padding: 7px 18px;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--glt);
      margin-bottom: 17px
    }

    .csdot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: tdot 2s infinite
    }

    @keyframes tdot {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(201, 147, 58, .6)
      }

      50% {
        box-shadow: 0 0 0 5px rgba(201, 147, 58, 0)
      }
    }

    .cstitle {
      font-family: 'Amiri', serif;
      font-size: clamp(36px, 5vw, 68px);
      color: #FBF7F0;
      line-height: 1.22;
      margin-bottom: 13px
    }

    .cstitle .g {
      color: var(--glt);
      font-style: italic
    }

    .csdesc {
      font-size: 15.5px;
      color: rgba(251, 247, 240, .7);
      line-height: 1.88;
      margin-bottom: 28px;
      max-width: 480px
    }

    .cschips {
      display: flex;
      gap: 9px;
      flex-wrap: wrap;
      margin-top: 16px
    }

    .csc {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(201, 147, 58, .18);
      border-radius: 50px;
      padding: 6px 15px;
      font-size: 12.5px;
      color: rgba(251, 247, 240, .68)
    }

    .csright {
      position: absolute;
      left: 10%;
      top: 50%;
      transform: translateY(-50%)
    }

    .cscirc {
      width: 295px;
      height: 295px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(201, 147, 58, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
    }

    .csring {
      position: absolute;
      width: 355px;
      height: 355px;
      border-radius: 50%;
      border: 1px dashed rgba(201, 147, 58, .1);
      animation: spinR 24s linear infinite
    }

    .csring::before {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 10px var(--gold)
    }

    @keyframes spinR {
      to {
        transform: rotate(360deg)
      }
    }

    .csemoji {
      font-size: 115px;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .45));
      animation: bigF 5s ease-in-out infinite
    }

    @keyframes bigF {

      0%,
      100% {
        transform: translateY(0) rotate(0)
      }

      50% {
        transform: translateY(-18px) rotate(4deg)
      }
    }

    .slb {
      position: absolute;
      background: var(--gold);
      color: var(--fdp);
      border-radius: 13px;
      padding: 8px 13px;
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 6px 20px rgba(201, 147, 58, .45);
      white-space: nowrap;
      z-index: 3
    }

    .slb1 {
      top: 5%;
      right: 3%;
      animation: mcf 3.5s ease-in-out infinite
    }

    .slb2 {
      bottom: 10%;
      left: 3%;
      animation: mcf 3.5s 1.3s ease-in-out infinite
    }

    .slb3 {
      top: 50%;
      right: 1%;
      animation: mcf 3.5s 2.6s ease-in-out infinite
    }

    .csdots {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 10
    }

    .csdb {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(201, 147, 58, .35);
      border: none;
      cursor: pointer;
      transition: all .35s
    }

    .csdb.on {
      background: var(--gold);
      width: 28px;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(201, 147, 58, .5)
    }

    .csarr {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(201, 147, 58, .2);
      color: #FBF7F0;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all .3s;
      backdrop-filter: blur(8px)
    }

    .csarr:hover {
      background: rgba(201, 147, 58, .2);
      border-color: var(--gold);
      transform: translateY(-50%) scale(1.12)
    }

    .csarr-r {
      right: 24px
    }

    .csarr-l {
      left: 24px
    }

    .csprog {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--glt));
      border-radius: 0 3px 3px 0;
      z-index: 10
    }

    .trust {
      background: var(--bg2);
      border-top: 1px solid var(--bd);
      border-bottom: 1px solid var(--bd)
    }

    .trustin {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap
    }

    .ti {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 20px 36px;
      border-left: 1px solid var(--bd);
      flex: 1;
      min-width: 190px
    }

    .ti:last-child {
      border-left: none
    }

    .tiic {
      width: 50px;
      height: 50px;
      background: rgba(201, 147, 58, .1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0
    }

    .tit {
      font-size: 14px;
      font-weight: 700;
      color: var(--tp);
      margin-bottom: 2px
    }

    .tis {
      font-size: 12px;
      color: var(--tm)
    }

    .ctrstrip {
      background: linear-gradient(135deg, var(--fdp), var(--forest) 50%, var(--fdp));
      padding: 58px 0;
      position: relative;
      overflow: hidden
    }

    .ctrstrip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201, 147, 58, .08), transparent)
    }

    .ctrgrid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px
    }

    .ctri {
      padding: 26px 20px;
      text-align: center;
      border-left: 1px solid rgba(201, 147, 58, .15)
    }

    .ctri:last-child {
      border-left: none
    }

    .ctrn {
      font-family: 'Playfair Display', serif;
      font-size: 50px;
      font-weight: 900;
      color: var(--glt);
      line-height: 1;
      font-style: italic
    }

    .ctrl {
      font-size: 14px;
      color: rgba(251, 247, 240, .6);
      margin-top: 5px
    }

    .hows {
      background: var(--bg);
      padding: 88px 0
    }

    .howin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 54px;
      right: 12%;
      left: 12%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--glt), var(--gold));
      opacity: .3;
      z-index: 0
    }

    .step {
      text-align: center;
      padding: 34px 18px;
      position: relative;
      z-index: 1
    }

    .stepnum {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #b8792a);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 28px;
      box-shadow: 0 8px 26px rgba(201, 147, 58, .4);
      border: 3px solid var(--bg);
      position: relative;
      z-index: 2;
      transition: all .4s var(--back)
    }

    .step:hover .stepnum {
      transform: scale(1.12) translateY(-4px)
    }

    .stept {
      font-size: 17px;
      font-weight: 700;
      color: var(--tp);
      margin-bottom: 8px
    }

    .stepd {
      font-size: 13.5px;
      color: var(--ts);
      line-height: 1.75
    }

    .steparr {
      position: absolute;
      top: 51px;
      left: -18px;
      font-size: 22px;
      color: var(--gold);
      opacity: .4
    }

    .occs {
      background: var(--bg2);
      padding: 88px 0
    }

    .occin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .occgrid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px
    }

    .occcard {
      background: var(--card);
      border: 1.5px solid var(--cdb);
      border-radius: 24px;
      padding: 34px 18px;
      text-align: center;
      cursor: pointer;
      transition: all .4s var(--back);
      position: relative;
      overflow: hidden
    }

    .occcard::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 147, 58, .08), transparent);
      opacity: 0;
      transition: opacity .4s
    }

    .occcard:hover {
      transform: translateY(-10px) scale(1.03);
      border-color: var(--gold);
      box-shadow: 0 24px 50px rgba(201, 147, 58, .2)
    }

    .occcard:hover::before {
      opacity: 1
    }

    .occicon {
      font-size: 50px;
      margin-bottom: 14px;
      display: block;
      transition: transform .4s var(--back)
    }

    .occcard:hover .occicon {
      transform: scale(1.15) rotate(-5deg)
    }

    .occname {
      font-size: 16px;
      font-weight: 700;
      color: var(--tp);
      margin-bottom: 5px
    }

    .occsub {
      font-size: 12.5px;
      color: var(--tm)
    }

    .occbdg {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(201, 147, 58, .14);
      border: 1px solid rgba(201, 147, 58, .28);
      border-radius: 50px;
      padding: 4px 11px;
      margin-top: 11px;
      font-size: 11px;
      color: var(--glt);
      font-weight: 700
    }

    .offrs {
      background: var(--bg3);
      padding: 88px 0;
      position: relative;
      overflow: hidden
    }

    .offrs::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 147, 58, .06), transparent)
    }

    .offrin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px;
      position: relative
    }

    .offrhd {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 18px
    }

    .offrcd {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 16px;
      padding: 13px 18px
    }

    .offrcdl {
      font-size: 13px;
      color: var(--tm);
      margin-left: 10px;
      font-weight: 600
    }

    .cdu {
      background: var(--fdp);
      border: 1px solid var(--bd);
      border-radius: 10px;
      padding: 10px 15px;
      text-align: center;
      min-width: 60px
    }

    [data-theme="light"] .cdu {
      background: var(--bg)
    }

    .cdn {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      color: var(--glt);
      line-height: 1;
      font-weight: 900;
      display: block
    }

    .cdl {
      font-size: 10px;
      color: var(--tm);
      display: block;
      margin-top: 2px
    }

    .cdsep {
      font-size: 26px;
      color: var(--gold);
      font-weight: 700;
      line-height: 1.3
    }

    .offrgrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px
    }

    .ocrd {
      background: var(--card);
      border: 1.5px solid var(--cdb);
      border-radius: 22px;
      overflow: hidden;
      transition: all .4s var(--ease)
    }

    .ocrd:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 56px rgba(201, 147, 58, .18);
      border-color: var(--gold)
    }

    .ocimg {
      position: relative;
      height: 195px;
      overflow: hidden
    }

    .ocimg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease)
    }

    .ocrd:hover .ocimg img {
      transform: scale(1.07)
    }

    .ocpct {
      position: absolute;
      top: 12px;
      right: 12px;
      background: linear-gradient(135deg, #dc2626, #b91c1c);
      color: white;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13.5px;
      font-weight: 900;
      box-shadow: 0 4px 14px rgba(220, 38, 38, .4)
    }

    .ocbody {
      padding: 17px 19px
    }

    .ocname {
      font-size: 15.5px;
      font-weight: 700;
      color: var(--tp);
      margin-bottom: 10px
    }

    .occd {
      display: flex;
      align-items: center;
      gap: 3px;
      margin-bottom: 11px;
      background: rgba(201, 147, 58, .08);
      border-radius: 8px;
      padding: 7px 10px
    }

    .occd .cdn {
      font-size: 18px
    }

    .occd .cdl {
      font-size: 10px
    }

    .occd .cdsep {
      font-size: 14px;
      margin: 0 2px
    }

    .ocprices {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 13px
    }

    .ocnow {
      font-size: 21px;
      font-weight: 900;
      color: var(--fl)
    }

    [data-theme="light"] .ocnow {
      color: var(--forest)
    }

    .ocwas {
      font-size: 13px;
      color: var(--tm);
      text-decoration: line-through
    }

    .ocbtn {
      width: 100%;
      background: linear-gradient(135deg, var(--forest), var(--fm));
      color: var(--glt);
      padding: 11px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      transition: all .3s
    }

    .ocbtn:hover {
      background: linear-gradient(135deg, var(--gold), #b8792a);
      color: var(--fdp);
      transform: scale(1.02)
    }


    .prods {
      background: var(--bg);
      padding: 96px 0
    }

    .prodsin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .ptabs {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-bottom: 50px;
      flex-wrap: wrap
    }

    .ptab {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 10px 20px;
      border-radius: 50px;
      border: 1.5px solid var(--bd);
      background: none;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--ts);
      cursor: pointer;
      transition: all .28s
    }

    .ptab:hover {
      background: var(--sf2);
      border-color: var(--fl);
      color: var(--tp)
    }

    .ptab.on {
      background: var(--forest);
      color: var(--glt);
      border-color: var(--forest);
      box-shadow: 0 4px 18px rgba(27, 67, 50, .35)
    }

    .pgrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(274px, 1fr));
      gap: 20px
    }

    .pcard {
      background: var(--card);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      border: 1.5px solid var(--cdb);
      transition: all .45s var(--ease);
      cursor: pointer
    }

    .pcard:hover {
      transform: translateY(-12px) scale(1.01);
      box-shadow: 0 32px 64px rgba(13, 43, 31, .28), 0 0 0 2px rgba(201, 147, 58, .25);
      border-color: rgba(201, 147, 58, .4)
    }

    .pimgw {
      position: relative;
      height: 232px;
      overflow: hidden;
      background: var(--bg3);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pimgw img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease)
    }

    .pcard:hover .pimgw img {
      transform: scale(1.08)
    }

    .pbdgs {
      position: absolute;
      top: 12px;
      right: 12px;
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .pbdg {
      padding: 5px 11px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3px
    }

    .pb-g {
      background: var(--gold);
      color: var(--fdp)
    }

    .pb-f {
      background: var(--forest);
      color: var(--glt)
    }

    .pb-r {
      background: #dc2626;
      color: white
    }

    .pb-s {
      background: var(--fl);
      color: white
    }

    .pfav {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 36px;
      height: 36px;
      background: var(--card);
      border-radius: 50%;
      border: 1.5px solid var(--bd);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      cursor: pointer;
      transition: all .3s var(--back)
    }

    .pfav:hover {
      transform: scale(1.2);
      border-color: #dc2626
    }

    .pacts {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 26, 18, .92) 0%, rgba(13, 43, 31, .6) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      transition: opacity .3s;
      backdrop-filter: blur(4px);
      border-radius: inherit;
    }

    .pcard:hover .pacts {
      opacity: 1
    }

    .pamain {
      display: flex;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, var(--gold), #c9762a);
      color: #0d2b1f;
      padding: 11px 20px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-family: 'Tajawal', sans-serif;
      font-size: 13px;
      font-weight: 900;
      transition: all .25s;
      box-shadow: 0 4px 14px rgba(201, 147, 58, .35);
      letter-spacing: .3px;
    }

    .pamain:hover {
      background: linear-gradient(135deg, #e8c97a, #d4872e);
      transform: scale(1.04);
      box-shadow: 0 6px 20px rgba(201, 147, 58, .5);
    }

    .paicon {
      width: 42px;
      height: 42px;
      background: rgba(201, 147, 58, .15);
      border: 1.5px solid rgba(201, 147, 58, .5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      transition: all .25s;
      backdrop-filter: blur(4px);
      flex-shrink: 0;
    }

    .paicon:hover {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.1);
      box-shadow: 0 4px 16px rgba(201, 147, 58, .4);
    }

    .pbody {
      padding: 18px 20px
    }

    .pclbl {
      font-size: 11px;
      font-weight: 700;
      color: var(--fl);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 5px
    }

    [data-theme="light"] .pclbl {
      color: var(--fm)
    }

    .pname {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.45;
      color: var(--tp)
    }

    .pwts {
      display: flex;
      gap: 5px;
      margin-bottom: 10px;
      flex-wrap: wrap
    }

    .wchip {
      padding: 8px 14px;
      border-radius: 50px;
      border: 1.5px solid var(--bd);
      font-size: 11.5px;
      font-weight: 600;
      color: var(--ts);
      cursor: pointer;
      transition: all .22s;
      min-height: 36px;
      display: inline-flex;
      align-items: center
    }

    .wchip:hover,
    .wchip.on {
      background: var(--forest);
      border-color: var(--forest);
      color: var(--glt)
    }

    .prat {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 12px
    }

    .pstars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 1.5px
    }

    .prcnt {
      font-size: 12px;
      color: var(--tm)
    }

    .pbot {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .pprices {
      display: flex;
      align-items: baseline;
      gap: 7px
    }

    .pnow {
      font-size: 21px;
      font-weight: 900;
      color: var(--fl)
    }

    [data-theme="light"] .pnow {
      color: var(--forest)
    }

    .pwas {
      font-size: 13px;
      color: var(--tm);
      text-decoration: line-through
    }

    .psave {
      font-size: 11px;
      background: rgba(220, 38, 38, .12);
      color: #dc2626;
      padding: 2px 8px;
      border-radius: 50px;
      font-weight: 700
    }

    .addbtn {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--gold), #c9762a);
      border: none;
      border-radius: 50%;
      color: #0d2b1f;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .25s;
      flex-shrink: 0;
      box-shadow: 0 3px 12px rgba(201, 147, 58, .3);
    }

    .addbtn:hover {
      background: var(--gold);
      color: var(--fdp);
      transform: scale(1.12) rotate(5deg)
    }

    .whys {
      background: var(--fdp);
      padding: 96px 0;
      position: relative;
      overflow: hidden
    }

    .whys::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(40, 100, 70, .17), transparent)
    }

    .whyin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .whygrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px
    }

    .wcard {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(201, 147, 58, .14);
      border-radius: 24px;
      padding: 36px 24px;
      text-align: center;
      transition: all .4s;
      position: relative;
      overflow: hidden
    }

    .wcard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .4s
    }

    .wcard:hover {
      background: rgba(201, 147, 58, .08);
      border-color: rgba(201, 147, 58, .3);
      transform: translateY(-8px)
    }

    .wcard:hover::before {
      opacity: 1
    }

    .wicon {
      width: 68px;
      height: 68px;
      background: linear-gradient(135deg, var(--gold), #b8792a);
      border-radius: 22px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 8px 24px rgba(201, 147, 58, .4)
    }

    .wtitle {
      font-size: 18px;
      font-weight: 700;
      color: #FBF7F0;
      margin-bottom: 8px
    }

    .wdesc {
      font-size: 13px;
      color: rgba(251, 247, 240, .56);
      line-height: 1.85
    }

    .storys {
      background: var(--bg2);
      padding: 96px 0
    }

    .storyin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .storygrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 88px;
      align-items: center
    }

    .storycard {
      background: var(--fdp);
      border-radius: 28px;
      padding: 54px 42px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201, 147, 58, .2);
      box-shadow: 0 32px 64px rgba(13, 43, 31, .4)
    }

    .storycard::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(201, 147, 58, .18), transparent 70%)
    }

    .sy {
      font-family: 'Playfair Display', serif;
      font-size: 92px;
      font-weight: 900;
      color: rgba(201, 147, 58, .1);
      line-height: 1;
      margin-bottom: -22px;
      display: block;
      font-style: italic
    }

    .stitl {
      font-family: 'Amiri', serif;
      font-size: 34px;
      color: #FBF7F0;
      margin-bottom: 14px;
      font-style: italic
    }

    .sdesc {
      font-size: 15px;
      color: rgba(251, 247, 240, .62);
      line-height: 1.9
    }

    .sbdg {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 147, 58, .14);
      border: 1px solid rgba(201, 147, 58, .28);
      border-radius: 50px;
      padding: 8px 17px;
      margin-top: 24px;
      font-size: 12.5px;
      color: var(--glt);
      font-weight: 600
    }

    .storytitle {
      font-family: 'Amiri', serif;
      font-size: clamp(32px, 4vw, 50px);
      color: var(--tp);
      line-height: 1.25;
      margin-bottom: 20px
    }

    .storytitle em {
      color: var(--gold);
      font-style: italic
    }

    .sp {
      font-size: 15px;
      color: var(--ts);
      line-height: 1.95;
      margin-bottom: 15px
    }

    .spts {
      display: flex;
      flex-direction: column;
      gap: 13px;
      margin-top: 24px
    }

    .spt {
      display: flex;
      align-items: flex-start;
      gap: 12px
    }

    .sptic {
      width: 35px;
      height: 35px;
      background: rgba(201, 147, 58, .1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0
    }

    .spttxt {
      font-size: 14px;
      color: var(--ts);
      line-height: 1.65;
      padding-top: 5px
    }

    .testis {
      background: var(--bg);
      padding: 96px 0
    }

    .testisin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .tgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .tcard {
      background: var(--card);
      border-radius: 24px;
      padding: 32px 26px;
      position: relative;
      border: 1.5px solid var(--cdb);
      transition: all .4s
    }

    .tcard::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 92px;
      color: var(--gold);
      opacity: .15;
      position: absolute;
      top: 8px;
      left: 20px;
      line-height: 1;
      font-style: italic
    }

    .tcard:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 56px rgba(13, 43, 31, .2);
      border-color: rgba(201, 147, 58, .28)
    }

    .tstars {
      color: var(--gold);
      font-size: 16px;
      margin-bottom: 13px;
      letter-spacing: 2px
    }

    .ttxt {
      font-size: 14px;
      color: var(--ts);
      line-height: 1.9;
      margin-bottom: 22px
    }

    .tauthor {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .tav {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--forest), var(--fl));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Amiri', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--glt);
      flex-shrink: 0;
      border: 2px solid rgba(201, 147, 58, .2)
    }

    .tn {
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 2px;
      color: var(--tp)
    }

    .tr {
      font-size: 12px;
      color: var(--tm)
    }

    .yts {
      background: var(--bg2);
      padding: 96px 0
    }

    .ytin {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px
    }

    .ytgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px
    }

    .ytcard {
      border-radius: 24px;
      overflow: hidden;
      background: var(--fdp);
      border: 1.5px solid var(--bd);
      transition: all .4s;
      box-shadow: 0 12px 36px rgba(13, 43, 31, .2)
    }

    .ytcard:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 60px rgba(13, 43, 31, .35);
      border-color: var(--bd2)
    }

    .ytwrap {
      position: relative;
      padding-top: 56.25%;
      cursor: pointer
    }

    .ytwrap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none
    }

    .yt-thumb {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0d2b1f, #1B4332);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      cursor: pointer;
      transition: opacity .3s
    }

    .yt-play {
      width: 70px;
      height: 70px;
      background: #FF0000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 8px 24px rgba(255, 0, 0, .4);
      transition: transform .3s
    }

    .yt-thumb:hover .yt-play {
      transform: scale(1.12)
    }

    .yt-thumb-title {
      color: rgba(251, 247, 240, .8);
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      padding: 0 16px
    }

    .ytinfo {
      padding: 19px 22px
    }

    .yttitle {
      font-size: 15px;
      font-weight: 700;
      color: var(--tp);
      margin-bottom: 5px
    }

    .ytsub {
      font-size: 12.5px;
      color: var(--glt);
      display: flex;
      align-items: center;
      gap: 7px;
      opacity: .7
    }

    .ytdot {
      width: 6px;
      height: 6px;
      background: #FF0000;
      border-radius: 50%
    }

    .ctas {
      background: linear-gradient(135deg, var(--fdp), var(--forest) 50%, var(--fdp));
      padding: 92px 60px;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .ctas::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201, 147, 58, .08), transparent)
    }

    .ctatitle {
      font-family: 'Amiri', serif;
      font-size: clamp(32px, 5vw, 58px);
      color: #FBF7F0;
      margin-bottom: 13px;
      position: relative;
      font-style: italic
    }

    .ctatitle span {
      color: var(--glt)
    }

    .ctasub {
      font-size: 16px;
      color: rgba(251, 247, 240, .65);
      margin-bottom: 40px;
      position: relative
    }

    .ctaform {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative
    }

    .ctain {
      background: rgba(255, 255, 255, .1);
      border: 1.5px solid rgba(201, 147, 58, .28);
      border-radius: 60px;
      padding: 14px 22px;
      color: #FBF7F0;
      font-family: 'Tajawal', sans-serif;
      font-size: 15px;
      outline: none;
      width: 305px;
      text-align: right;
      transition: all .35s
    }

    .ctain:focus {
      border-color: var(--gold);
      background: rgba(255, 255, 255, .15)
    }

    .ctain::placeholder {
      color: rgba(251, 247, 240, .38)
    }

    footer {
      background: var(--fdp);
      padding: 74px 60px 34px;
      border-top: 1px solid rgba(201, 147, 58, .1)
    }

    .ftop {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 52px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(201, 147, 58, .12)
    }

    .fbrand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 17px
    }

    .fbrand img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      border-radius: 50%;
      border: 2px solid rgba(201, 147, 58, .4);
      background: var(--fdp)
    }

    .fbname {
      font-family: 'Amiri', serif;
      font-size: 21px;
      color: var(--glt);
      font-weight: 700;
      display: block
    }

    .fbsince {
      font-size: 10px;
      color: rgba(232, 185, 106, .42);
      letter-spacing: 2px
    }

    .fdesc {
      font-size: 13px;
      color: rgba(251, 247, 240, .46);
      line-height: 1.9;
      margin-bottom: 22px
    }

    .fsoc {
      display: flex;
      gap: 8px
    }

    .fsa {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(201, 147, 58, .15);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(251, 247, 240, .48);
      font-size: 17px;
      cursor: pointer;
      text-decoration: none;
      transition: all .28s
    }

    .fsa:hover {
      background: rgba(201, 147, 58, .14);
      border-color: var(--gold);
      color: var(--glt)
    }

    .fct {
      font-size: 14px;
      font-weight: 700;
      color: var(--glt);
      margin-bottom: 19px
    }

    .fl {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px
    }

    .fl a {
      color: rgba(251, 247, 240, .46);
      text-decoration: none;
      font-size: 13px;
      transition: all .25s;
      display: flex;
      align-items: center;
      gap: 7px
    }

    .fl a:hover {
      color: var(--glt);
      padding-right: 4px
    }

    .fco {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px
    }

    .fcoi {
      font-size: 17px;
      margin-top: 1px;
      flex-shrink: 0
    }

    .fcot {
      font-size: 13px;
      color: rgba(251, 247, 240, .46);
      line-height: 1.65
    }

    .fbot {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      padding-top: 32px
    }

    .fcopy {
      font-size: 12px;
      color: rgba(251, 247, 240, .28)
    }

    .fpay {
      display: flex;
      gap: 8px
    }

    .fpb {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(201, 147, 58, .1);
      border-radius: 7px;
      padding: 5px 11px;
      font-size: 12px;
      color: rgba(251, 247, 240, .36)
    }

    .wafloat {
      position: fixed;
      bottom: 30px;
      right: 16px;
      left: auto;
      z-index: 600;
      display: flex;
      align-items: center;
      direction: ltr
    }

    .wabtn {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 26px rgba(37, 211, 102, .5);
      transition: all .35s var(--back);
      border: 3px solid rgba(255, 255, 255, .3);
      text-decoration: none;
      position: relative;
      flex-shrink: 0
    }

    .wabtn:hover {
      transform: scale(1.12)
    }

    .wabtn svg {
      width: 28px;
      height: 28px;
      fill: white
    }

    .wap1,
    .wap2 {
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(37, 211, 102, .45);
      animation: wap 2.5s ease-out infinite;
      pointer-events: none
    }

    .wap1 {
      inset: -6px
    }

    .wap2 {
      inset: -12px;
      border-color: rgba(37, 211, 102, .25);
      animation-delay: .8s
    }

    @keyframes wap {
      0% {
        opacity: 1;
        transform: scale(1)
      }

      100% {
        opacity: 0;
        transform: scale(1.5)
      }
    }

    .watip {
      background: var(--fdp);
      color: #FBF7F0;
      padding: 10px 15px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      margin-left: 11px;
      box-shadow: 0 6px 22px rgba(0, 0, 0, .25);
      border: 1px solid rgba(37, 211, 102, .28);
      opacity: 0;
      transform: translateX(-10px);
      transition: all .3s;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .wafloat:hover .watip {
      opacity: 1;
      transform: translateX(0)
    }

    .watdot {
      width: 7px;
      height: 7px;
      background: #25D366;
      border-radius: 50%;
      animation: tdot 2s infinite
    }

    .mbar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 500;
      background: var(--bg2);
      border-top: 1px solid var(--bd);
      padding: 10px 16px 14px;
      backdrop-filter: blur(20px);
      box-shadow: 0 -8px 32px rgba(0, 0, 0, .25)
    }

    .mbarin {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .mbarinfo {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .mbaric {
      font-size: 20px
    }

    .mbartot {
      font-size: 13px;
      font-weight: 700;
      color: var(--tp)
    }

    .mbarcnt {
      font-size: 11px;
      color: var(--tm)
    }

    .mbarcta {
      flex: 1;
      background: linear-gradient(135deg, var(--gold), #b8792a);
      color: var(--fdp);
      padding: 12px 18px;
      border-radius: 50px;
      font-family: 'Tajawal', sans-serif;
      font-size: 15px;
      font-weight: 800;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 18px rgba(201, 147, 58, .4);
      transition: all .3s
    }

    .mbarcta:hover {
      transform: scale(1.02)
    }

    .mbarwa {
      width: 44px;
      height: 44px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(37, 211, 102, .4)
    }

    .mbarwa svg {
      width: 22px;
      height: 22px;
      fill: white
    }

    .sechd {
      text-align: center;
      margin-bottom: 54px
    }

    .seceye {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 13px
    }

    .sepl {
      width: 28px;
      height: 1.5px;
      background: var(--gold)
    }

    .sept {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase
    }

    .sectitle {
      font-family: 'Amiri', serif;
      font-size: clamp(28px, 4vw, 48px);
      color: var(--tp);
      line-height: 1.25;
      margin-bottom: 10px
    }

    .sectitle .g {
      color: var(--gold);
      font-style: italic
    }

    .secsub {
      font-size: 15px;
      color: var(--tm)
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(8, 26, 18, .72);
      backdrop-filter: blur(6px);
      z-index: 400;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s
    }

    .overlay.on {
      opacity: 1;
      pointer-events: all
    }

    .cartside {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 428px;
      background: var(--bg2);
      z-index: 401;
      transform: translateX(110%);
      transition: transform .5s var(--ease);
      display: flex;
      flex-direction: column;
      box-shadow: -12px 0 50px rgba(8, 26, 18, .4)
    }

    .cartside.on {
      transform: translateX(0)
    }

    .chd {
      background: var(--forest);
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .chdt {
      font-size: 18px;
      font-weight: 700;
      color: #FBF7F0
    }

    .chdc {
      font-size: 13px;
      color: var(--glt);
      margin-top: 2px
    }

    .cclose {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(201, 147, 58, .22);
      border-radius: 11px;
      color: #FBF7F0;
      font-size: 17px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s
    }

    .cclose:hover {
      background: rgba(220, 38, 38, .25);
      border-color: #dc2626;
      color: #dc2626
    }

    .cbody {
      flex: 1;
      overflow-y: auto;
      padding: 22px 26px
    }

    .citem {
      display: flex;
      gap: 13px;
      padding: 15px 0;
      border-bottom: 1px solid var(--bd)
    }

    .citemimg {
      width: 74px;
      height: 74px;
      background: var(--bg3);
      border-radius: 14px;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid var(--bd)
    }

    .citemimg img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .citeminfo {
      flex: 1
    }

    .citemname {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--tp)
    }

    .citemsub {
      font-size: 12px;
      color: var(--tm);
      margin-bottom: 6px
    }

    .citemprice {
      font-size: 17px;
      font-weight: 900;
      color: var(--fl)
    }

    [data-theme="light"] .citemprice {
      color: var(--forest)
    }

    .citemqty {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 9px
    }

    .qb {
      width: 36px;
      height: 36px;
      background: var(--sf);
      border: 1.5px solid var(--bd);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      cursor: pointer;
      transition: all .22s;
      color: var(--tp)
    }

    .qb:hover {
      border-color: var(--forest);
      background: var(--forest);
      color: var(--glt)
    }

    .qv {
      font-weight: 700;
      min-width: 25px;
      text-align: center;
      font-size: 14px;
      color: var(--tp)
    }

    .cfoot {
      padding: 20px 26px;
      border-top: 2px solid var(--bd);
      background: var(--bg3)
    }

    .csub {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--tm);
      margin-bottom: 5px
    }

    .ctrow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-top: 12px;
      border-top: 1px dashed var(--bd)
    }

    .ctlbl {
      font-size: 15px;
      font-weight: 700;
      color: var(--tp)
    }

    .ctamt {
      font-size: 26px;
      font-weight: 900;
      color: var(--fl)
    }

    [data-theme="light"] .ctamt {
      color: var(--forest)
    }

    .cchk {
      width: 100%;
      background: linear-gradient(135deg, var(--forest), var(--fm));
      color: var(--glt);
      padding: 14px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-family: 'Tajawal', sans-serif;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all .35s;
      box-shadow: 0 6px 22px rgba(27, 67, 50, .35)
    }

    .cchk:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(27, 67, 50, .45)
    }

    .toasts {
      position: fixed;
      bottom: 88px;
      right: 24px;
      z-index: 600;
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    @media(min-width:769px) {
      .toasts {
        bottom: 24px
      }
    }

    .toast {
      background: var(--forest);
      color: #FBF7F0;
      padding: 13px 17px;
      border-radius: 13px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 255px;
      box-shadow: 0 10px 30px rgba(8, 26, 18, .4);
      border-right: 4px solid var(--gold);
      animation: tin .4s var(--ease)
    }

    @keyframes tin {
      from {
        opacity: 0;
        transform: translateX(60px)
      }
    }

    .rv {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
      animation: rvFallback 0s 2s forwards
    }

    .rv.vis {
      opacity: 1 !important;
      transform: none !important;
      animation: none
    }

    .rv2 {
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
      animation: rvFallback 0s 2s forwards
    }

    .rv2.vis {
      opacity: 1 !important;
      transform: none !important;
      animation: none
    }

    .rv3 {
      opacity: 0;
      transform: translateX(20px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
      animation: rvFallback 0s 2s forwards
    }

    .rv3.vis {
      opacity: 1 !important;
      transform: none !important;
      animation: none
    }

    @keyframes rvFallback {
      to {
        opacity: 1;
        transform: none
      }
    }

    @media(max-width:1100px) {
      .nl {
        display: none
      }


      .whygrid {
        grid-template-columns: 1fr 1fr
      }

      .storygrid {
        grid-template-columns: 1fr
      }

      .storycard {
        display: none
      }

      .tgrid {
        grid-template-columns: 1fr 1fr
      }

      .ftop {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }

      .steps {
        grid-template-columns: 1fr 1fr
      }

      .steps::before {
        display: none
      }

      .occgrid {
        grid-template-columns: repeat(3, 1fr)
      }

      .offrgrid {
        grid-template-columns: 1fr 1fr
      }

      .ctrgrid {
        grid-template-columns: 1fr 1fr
      }

      .ytgrid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:768px) {
      .ni {
        padding: 0 16px
      }

      .nsrch {
        display: none
      }

      body {
        padding-bottom: 70px
      }

      .mbar {
        display: block
      }

      /* ═══ HERO MOBILE ═══════════════════════════════════════════ */
      .hero {
        min-height: auto
      }

      .hero-content {
        padding: 100px 20px 40px;
        max-width: 100%
      }

      .hero-badge-top {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 20px
      }

      .h1 {
        font-size: clamp(32px, 9vw, 48px);
        text-align: center;
        margin-bottom: 16px
      }

      .hdesc {
        font-size: 14px;
        text-align: center;
        max-width: 340px;
        margin: 0 auto 24px
      }

      .hbtns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px
      }

      .btnA,
      .btnB {
        padding: 13px 24px;
        font-size: 14px
      }

      /* Stats bar mobile */
      .hero-stats-bar {
        padding: 20px 16px;
        gap: 0;
        flex-wrap: wrap
      }

      .hero-stat {
        padding: 0 12px
      }

      .hero-stat-num {
        font-size: 24px
      }

      .hero-stat-lbl {
        font-size: 10px
      }

      .hero-stat-sep {
        height: 30px
      }

      .prodsin,
      .whyin,
      .testisin,
      .storyin,
      .occin,
      .offrin,
      .ytin,
      .howin {
        padding: 0 16px
      }

      .ctrgrid {
        padding: 0 16px
      }



      .occgrid {
        grid-template-columns: repeat(2, 1fr)
      }

      .whygrid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      .tgrid {
        grid-template-columns: 1fr
      }

      .ftop {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 26px
      }

      footer {
        padding: 42px 16px 24px
      }

      .ctas {
        padding: 58px 18px
      }

      .cartside {
        width: 100%
      }

      .csarr {
        display: none
      }

      .trustin {
        flex-direction: column
      }

      .ti {
        border-left: none;
        border-bottom: 1px solid var(--bd)
      }

      .steps {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      .ctrgrid {
        grid-template-columns: 1fr 1fr
      }

      .offrgrid {
        grid-template-columns: 1fr 1fr
      }

      .wafloat {
        bottom: 82px;
        right: 16px;
        left: auto
      }

      .csin {
        padding: 0 20px
      }
    }

    /* ═══ MOBILE SLIDER ════════════════════════════════════════ */
    @media(max-width:768px) {
      .csl {
        height: auto;
        min-height: auto
      }

      .csin {
        padding: 80px 22px 50px;
        text-align: center
      }

      .cstag {
        justify-content: center
      }

      .cstitle {
        font-size: clamp(28px, 8vw, 42px) !important;
        text-align: center
      }

      .csdesc {
        text-align: center;
        font-size: 14px;
        max-width: 320px;
        margin: 0 auto 20px
      }

      .cshalf {
        display: none
      }

      .csbi {
        flex-direction: column;
        align-items: center;
        gap: 10px
      }

      .csbtn {
        width: 100%;
        max-width: 280px;
        text-align: center
      }

      /* Nav mobile */
      .nav-top-bar {
        display: none
      }

      /* Products grid mobile */
      .pgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
      }

      .pimgw {
        height: 150px
      }

      .pname {
        font-size: 13px
      }

      .pprice {
        font-size: 15px
      }

      /* Sections padding */
      .prods {
        padding: 60px 0
      }

      .offrs {
        padding: 60px 0
      }

      .howin {
        gap: 20px
      }

      .how-step {
        flex-direction: column;
        text-align: center;
        align-items: center
      }

      /* Ticker */
      .promo {
        font-size: 13px
      }

      /* Bottom nav */
      .mbar {
        padding: 10px 0 12px;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, .3)
      }

      .mbi span {
        font-size: 10px
      }

      /* Cart */
      .cartside {
        width: 100%;
        border-radius: 0
      }

      /* Section titles */
      .sectitle {
        font-size: clamp(26px, 7vw, 38px) !important
      }

      /* Offers grid */
      .offrgrid {
        grid-template-columns: 1fr
      }

      /* Footer */
      .flinks {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:480px) {
      .occgrid {
        grid-template-columns: 1fr 1fr
      }

      .offrgrid {
        grid-template-columns: 1fr
      }

      .pgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
      }

      /* Compact card for 2-column mobile layout */
      .pimgw {
        height: 160px
      }

      .pbody {
        padding: 10px 10px 12px
      }

      .pname {
        font-size: 13px;
        -webkit-line-clamp: 2
      }

      .pclbl {
        font-size: 10px
      }

      .pbot {
        margin-top: 8px
      }

      .pnow {
        font-size: 16px
      }

      .pwas {
        font-size: 11px
      }

      .psave {
        font-size: 10px
      }

      .addbtn {
        width: 38px;
        height: 38px;
        font-size: 20px;
        border-radius: 10px
      }

      .prat {
        margin: 4px 0
      }

      .pacts {
        display: none
      }

      .pcard:hover {
        transform: none
      }

      .pcard:active {
        transform: scale(0.97);
        transition: transform .1s
      }
    }

    .settings-btn {
      position: fixed;
      bottom: 30px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--sf2);
      border: 1.5px solid var(--bd);
      color: var(--tp);
      font-size: 20px;
      cursor: pointer;
      z-index: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .2)
    }

    .settings-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.1) rotate(20deg)
    }

    @media(max-width:768px) {
      .settings-btn {
        bottom: 80px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 17px
      }
    }

    /* ── ADMIN PANEL ── */
    /* ── Full-screen admin panel ── */
    .adm-overlay {
      position: fixed;
      inset: 0;
      background: #081a12;
      z-index: 2000;
      display: none;
      flex-direction: column;
    }

    .adm-overlay.on {
      display: flex;
    }

    .adm-modal {
      background: transparent;
      border: none;
      border-radius: 0;
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: none;
    }

    .adm-hd {
      background: linear-gradient(135deg, #0d2b1f 0%, #1B4332 50%, #0d2b1f 100%);
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      height: 64px;
      border-bottom: 1px solid rgba(201, 147, 58, .2);
      box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    }

    @media (max-width: 768px) {
      .adm-hd {
        padding: 0 16px;
        height: 56px;
      }
    }

    .adm-hdt {
      font-family: 'Amiri', serif;
      font-size: 22px;
      color: #E8B96A;
      font-weight: 700
    }

    .adm-hds {
      font-size: 12px;
      color: rgba(232, 185, 106, .6);
      margin-top: 2px
    }

    .adm-close {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(201, 147, 58, .2);
      border-radius: 9px;
      color: #FBF7F0;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s
    }

    .adm-close:hover {
      background: rgba(220, 38, 38, .3);
      border-color: #dc2626
    }

    .adm-tabs {
      display: flex;
      gap: 0;
      padding: 0 32px;
      background: rgba(0, 0, 0, .3);
      flex-shrink: 0;
      border-bottom: 1px solid rgba(201, 147, 58, .15);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .adm-tabs::-webkit-scrollbar {
      display: none;
    }

    @media (max-width: 768px) {
      .adm-tabs {
        padding: 0 8px;
      }
    }

    .adm-tab {
      padding: 0 18px;
      height: 46px;
      border-radius: 0;
      font-family: 'Tajawal', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: rgba(251, 247, 240, .5);
      cursor: pointer;
      border: none;
      border-bottom: 3px solid transparent;
      transition: all .2s;
      background: none;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .adm-tab:hover:not(.on) {
      color: var(--tp);
      background: rgba(255, 255, 255, .04);
    }

    .adm-tab.on {
      color: #E8B96A;
      border-bottom-color: #E8B96A;
      background: rgba(201, 147, 58, .07);
    }

    .adm-tab:hover:not(.on) {
      color: rgba(251, 247, 240, .8)
    }

    .adm-body {
      flex: 1;
      overflow-y: auto;
      padding: 24px 32px;
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .adm-body {
        padding: 16px;
      }
    }

    .adm-body::-webkit-scrollbar {
      width: 4px
    }

    .adm-body::-webkit-scrollbar-thumb {
      background: rgba(201, 147, 58, .3);
      border-radius: 2px
    }

    .adm-section {
      display: none
    }

    .adm-section.on {
      display: block
    }

    /* Product list in admin */
    .adm-plist {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 16px
    }

    .adm-prow {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(201, 147, 58, .12);
      border-radius: 14px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all .25s
    }

    .adm-prow:hover {
      border-color: rgba(201, 147, 58, .3);
      background: rgba(255, 255, 255, .06)
    }

    .adm-pimg {
      width: 56px;
      height: 56px;
      border-radius: 10px;
      object-fit: cover;
      background: rgba(255, 255, 255, .06);
      flex-shrink: 0;
      border: 1px solid rgba(201, 147, 58, .15)
    }

    .adm-pinfo {
      flex: 1;
      min-width: 0
    }

    .adm-pname {
      font-size: 14px;
      font-weight: 700;
      color: #FBF7F0;
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis
    }

    .adm-pmeta {
      font-size: 12px;
      color: rgba(201, 147, 58, .7)
    }

    .adm-pbadge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(27, 67, 50, .5);
      border: 1px solid rgba(64, 145, 108, .3);
      border-radius: 6px;
      padding: 3px 8px;
      font-size: 11px;
      color: #52B788;
      margin-right: 6px
    }

    .adm-pactions {
      display: flex;
      gap: 7px;
      flex-shrink: 0
    }

    .adm-btn {
      padding: 7px 14px;
      border-radius: 8px;
      font-family: 'Tajawal', sans-serif;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all .22s
    }

    .adm-btn-edit {
      background: rgba(201, 147, 58, .15);
      color: #E8B96A;
      border: 1px solid rgba(201, 147, 58, .25)
    }

    .adm-btn-edit:hover {
      background: rgba(201, 147, 58, .28)
    }

    .adm-btn-del {
      background: rgba(220, 38, 38, .12);
      color: #f87171;
      border: 1px solid rgba(220, 38, 38, .2)
    }

    .adm-btn-del:hover {
      background: rgba(220, 38, 38, .25)
    }

    .adm-btn-primary {
      background: linear-gradient(135deg, #C9933A, #b8792a);
      color: #0d2b1f;
      padding: 10px 22px;
      font-size: 14px;
      border-radius: 50px;
      box-shadow: 0 4px 14px rgba(201, 147, 58, .3)
    }

    .adm-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(201, 147, 58, .45)
    }

    .adm-btn-green {
      background: linear-gradient(135deg, #1B4332, #2D6A4F);
      color: #E8B96A;
      padding: 10px 22px;
      font-size: 14px;
      border-radius: 50px
    }

    .adm-btn-green:hover {
      transform: translateY(-2px)
    }

    /* Form */
    .adm-form {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(201, 147, 58, .15);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 16px
    }

    .adm-form-title {
      font-size: 15px;
      font-weight: 700;
      color: #E8B96A;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .adm-grid2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    .adm-grid3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px
    }

    .adm-field {
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .adm-field label {
      font-size: 12px;
      color: rgba(251, 247, 240, .55);
      font-weight: 600
    }

    .adm-input {
      background: rgba(255, 255, 255, .06);
      border: 1.5px solid rgba(201, 147, 58, .18);
      border-radius: 10px;
      padding: 10px 14px;
      color: #FBF7F0;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      outline: none;
      transition: all .25s;
      width: 100%;
      text-align: right
    }

    .adm-input:focus {
      border-color: rgba(201, 147, 58, .55);
      background: rgba(255, 255, 255, .09)
    }

    .adm-select {
      background: #0d2b1f;
      border: 1.5px solid rgba(201, 147, 58, .18);
      border-radius: 10px;
      padding: 10px 14px;
      color: #FBF7F0;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      outline: none;
      width: 100%
    }

    .adm-select:focus {
      border-color: rgba(201, 147, 58, .55)
    }

    .adm-img-upload {
      border: 2px dashed rgba(201, 147, 58, .25);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      overflow: hidden
    }

    .adm-img-upload:hover {
      border-color: rgba(201, 147, 58, .5);
      background: rgba(201, 147, 58, .05)
    }

    .adm-img-preview {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 8px;
      display: none
    }

    .adm-img-placeholder {
      color: rgba(251, 247, 240, .4);
      font-size: 13px
    }

    .adm-img-placeholder span {
      font-size: 36px;
      display: block;
      margin-bottom: 8px
    }

    .adm-form-actions {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      margin-top: 16px;
      flex-wrap: wrap
    }

    .adm-toggle {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .adm-toggle-sw {
      width: 44px;
      height: 24px;
      background: rgba(255, 255, 255, .1);
      border-radius: 12px;
      cursor: pointer;
      position: relative;
      transition: all .3s;
      border: 1px solid rgba(201, 147, 58, .2);
      flex-shrink: 0
    }

    .adm-toggle-sw::after {
      content: '';
      position: absolute;
      top: 3px;
      right: 3px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .4);
      transition: all .3s
    }

    .adm-toggle-sw.on {
      background: rgba(64, 145, 108, .4);
      border-color: rgba(64, 145, 108, .5)
    }

    .adm-toggle-sw.on::after {
      right: calc(100% - 19px);
      background: #52B788
    }

    .adm-toggle label {
      font-size: 13px;
      color: rgba(251, 247, 240, .6);
      cursor: pointer
    }

    .adm-empty {
      text-align: center;
      padding: 40px 20px;
      color: rgba(251, 247, 240, .3)
    }

    .adm-empty span {
      font-size: 48px;
      display: block;
      margin-bottom: 12px
    }

    /* Login screen */
    .adm-login {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      text-align: center
    }

    .adm-login-logo {
      font-size: 56px;
      margin-bottom: 16px
    }

    .adm-login-title {
      font-family: 'Amiri', serif;
      font-size: 26px;
      color: #E8B96A;
      margin-bottom: 6px
    }

    .adm-login-sub {
      font-size: 13px;
      color: rgba(251, 247, 240, .4);
      margin-bottom: 30px
    }

    .adm-login-form {
      width: 100%;
      max-width: 320px;
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .adm-login-err {
      background: rgba(220, 38, 38, .15);
      border: 1px solid rgba(220, 38, 38, .3);
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 13px;
      color: #f87171;
      display: none
    }

    .adm-login-err.on {
      display: block
    }

    /* Stats cards */
    .adm-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 20px
    }

    .adm-stat {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(201, 147, 58, .12);
      border-radius: 14px;
      padding: 16px;
      text-align: center
    }

    .adm-stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      color: #E8B96A;
      font-style: italic
    }

    .adm-stat-l {
      font-size: 12px;
      color: rgba(251, 247, 240, .45);
      margin-top: 4px
    }

    /* Offer edit row */
    .adm-ofrow {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(201, 147, 58, .12);
      border-radius: 14px;
      padding: 14px 16px;
      display: grid;
      grid-template-columns: auto 1fr 80px 80px 60px auto;
      gap: 10px;
      align-items: center;
      margin-bottom: 8px
    }

    .adm-ofrow img {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      object-fit: cover;
      background: rgba(255, 255, 255, .06)
    }

    @media(max-width:600px) {

      .adm-grid2,
      .adm-grid3 {
        grid-template-columns: 1fr
      }

      .adm-stats {
        grid-template-columns: 1fr 1fr
      }

      .adm-ofrow {
        grid-template-columns: 1fr 1fr
      }

      .adm-modal {
        border-radius: 16px
      }
    }


    /* ══ PRODUCT DETAIL MODAL ══════════════════════════════════ */
    /* ══════════════════════════════════════════════════════════════
       PRODUCT DETAIL MODAL — Luxury Dark Redesign
       Desktop: centered modal | Mobile: full-screen bottom sheet
    ══════════════════════════════════════════════════════════════ */
    .PDM-OVERLAY {
      position: fixed;
      inset: 0;
      background: rgba(4, 10, 7, .88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 8500;
      display: none;
      align-items: flex-end;
      justify-content: center;
      padding: 0
    }
    @media(min-width:681px) {
      .PDM-OVERLAY { align-items: center; padding: 20px }
    }
    .PDM-OVERLAY.on { display: flex }

    .PDM-BOX {
      background: linear-gradient(175deg, #0f1f17 0%, #081410 60%, #060f0b 100%);
      border: 1px solid rgba(201,147,58,.2);
      border-top: 1px solid rgba(201,147,58,.25);
      border-radius: 28px 28px 0 0;
      width: 100%;
      max-width: 100vw;
      max-height: 96vh;
      overflow-y: auto;
      overflow-x: hidden;
      direction: rtl;
      font-family: 'Tajawal', sans-serif;
      position: relative;
      animation: pdmSlideUp .38s cubic-bezier(.32,1,.23,1) both;
      box-shadow: 0 -24px 80px rgba(0,0,0,.6);
      scrollbar-width: thin;
      scrollbar-color: rgba(201,147,58,.2) transparent
    }
    @media(min-width:681px) {
      .PDM-BOX {
        border-radius: 24px;
        max-width: 900px;
        max-height: 90vh;
        animation: pdmScaleIn .32s cubic-bezier(.34,1.56,.64,1) both;
        box-shadow: 0 40px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(201,147,58,.12)
      }
    }
    @keyframes pdmSlideUp {
      from { transform: translateY(60px); opacity: 0 }
    }
    @keyframes pdmScaleIn {
      from { transform: scale(.93) translateY(20px); opacity: 0 }
    }
    .PDM-BOX::before {
      content: '';
      display: block;
      width: 40px;
      height: 4px;
      background: rgba(201,147,58,.3);
      border-radius: 2px;
      margin: 14px auto 0
    }
    @media(min-width:681px) { .PDM-BOX::before { display: none } }

    .PDM-CLOSE {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(251,247,240,.7);
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all .2s
    }
    .PDM-CLOSE:hover { background: rgba(201,147,58,.2); border-color: rgba(201,147,58,.5); color: #C9933A }

    .PDM-BODY {
      display: flex;
      flex-direction: column;
      padding: 0;
      clear: both
    }
    @media(min-width:681px) {
      .PDM-BODY { display: grid; grid-template-columns: 42% 58%; gap: 0 }
    }

    .PDM-GAL { padding: 14px 16px 0 }
    @media(min-width:681px) {
      .PDM-GAL { padding: 24px 0 24px 24px; position: sticky; top: 0; align-self: start }
    }

    .PDM-MAIN-IMG {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(201,147,58,.15);
      box-shadow: 0 8px 40px rgba(0,0,0,.4);
      display: block;
      background: rgba(255,255,255,.03)
    }

    .PDM-THUMBS { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap }
    .PDM-THUMB {
      width: 56px;
      height: 56px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid rgba(255,255,255,.06);
      cursor: pointer;
      transition: all .2s;
      opacity: .55
    }
    .PDM-THUMB.on { border-color: #C9933A; opacity: 1; box-shadow: 0 0 0 3px rgba(201,147,58,.18) }
    .PDM-THUMB:hover { opacity: .85 }

    .PDM-INFO { padding: 18px 16px 24px; display: flex; flex-direction: column }
    @media(min-width:681px) { .PDM-INFO { padding: 28px 28px 28px 20px } }

    .PDM-CAT {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 800;
      color: rgba(201,147,58,.85);
      letter-spacing: 2px;
      background: rgba(201,147,58,.08);
      border: 1px solid rgba(201,147,58,.15);
      border-radius: 50px;
      padding: 4px 12px;
      width: fit-content;
      margin-bottom: 12px
    }

    .PDM-NAME {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 900;
      color: #F0EBE3;
      line-height: 1.25;
      margin-bottom: 10px;
      font-style: italic
    }
    @media(max-width:680px) { .PDM-NAME { font-size: 23px } }

    .PDM-STARS { display: flex; align-items: center; gap: 8px; margin-bottom: 14px }
    .PDM-REVCOUNT {
      font-size: 12px;
      color: rgba(240,235,227,.38);
      border-right: 1px solid rgba(240,235,227,.1);
      padding-right: 8px
    }

    .PDM-DESC {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(240,235,227,.58);
      margin-bottom: 16px;
      padding: 12px 14px;
      background: rgba(255,255,255,.024);
      border-radius: 12px;
      border-right: 3px solid rgba(201,147,58,.3)
    }

    .PDM-DETAILS { margin-bottom: 16px }
    .PDM-DETAIL-ITEM {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(240,235,227,.55);
      margin-bottom: 6px
    }
    .PDM-DETAIL-ITEM::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #52b788;
      border-radius: 50%;
      flex-shrink: 0
    }

    .PDM-WT-LBL {
      font-size: 11px;
      font-weight: 800;
      color: rgba(240,235,227,.4);
      letter-spacing: 1px;
      margin-bottom: 10px
    }
    .PDM-WEIGHTS { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px }
    .PDM-WBTN {
      padding: 9px 15px;
      border-radius: 11px;
      border: 1.5px solid rgba(201,147,58,.18);
      background: rgba(255,255,255,.025);
      color: rgba(240,235,227,.55);
      font-family: 'Tajawal', sans-serif;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
      line-height: 1.35
    }
    .PDM-WBTN:hover { border-color: rgba(201,147,58,.45); color: #F0EBE3; background: rgba(201,147,58,.06) }
    .PDM-WBTN.on {
      background: rgba(201,147,58,.12);
      border-color: #C9933A;
      color: #E8B86A;
      box-shadow: 0 0 0 3px rgba(201,147,58,.1)
    }

    .PDM-PRICE-ROW {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 18px;
      padding: 12px 16px;
      background: rgba(201,147,58,.055);
      border: 1px solid rgba(201,147,58,.12);
      border-radius: 14px
    }
    .PDM-PRICE {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 900;
      color: #E8B86A;
      font-style: italic;
      line-height: 1
    }
    .PDM-WAS { font-size: 17px; color: rgba(240,235,227,.22); text-decoration: line-through }
    .PDM-SAVE {
      background: rgba(239,68,68,.12);
      color: #fca5a5;
      border: 1px solid rgba(239,68,68,.2);
      border-radius: 50px;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 800;
      margin-right: auto
    }

    .PDM-QTY {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,.04);
      border: 1.5px solid rgba(201,147,58,.15);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 16px;
      width: fit-content
    }
    .PDM-QTY-BTN {
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      color: #C9933A;
      font-size: 20px;
      cursor: pointer;
      transition: background .15s;
      display: flex;
      align-items: center;
      justify-content: center
    }
    .PDM-QTY-BTN:active { background: rgba(201,147,58,.12) }
    .PDM-QTY-NUM { min-width: 40px; text-align: center; font-size: 17px; font-weight: 800; color: #F0EBE3 }

    .PDM-ADD {
      width: 100%;
      background: linear-gradient(135deg, #D4A040, #A87828);
      border: none;
      border-radius: 14px;
      padding: 16px;
      color: #07100D;
      font-family: 'Tajawal', sans-serif;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      transition: all .25s;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      box-shadow: 0 6px 24px rgba(201,147,58,.22)
    }
    .PDM-ADD:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,147,58,.36) }
    .PDM-ADD:active { transform: translateY(0) }

    .PDM-WA {
      width: 100%;
      background: rgba(37,211,102,.07);
      border: 1.5px solid rgba(37,211,102,.22);
      border-radius: 14px;
      padding: 13px;
      color: rgba(37,211,102,.9);
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all .22s;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px
    }
    .PDM-WA:hover { background: rgba(37,211,102,.13) }

    .PDM-REVIEWS {
      padding: 20px 16px;
      border-top: 1px solid rgba(201,147,58,.08)
    }
    @media(min-width:681px) { .PDM-REVIEWS { padding: 24px 28px; grid-column: 1/-1 } }

    .PDM-SUGG {
      padding: 20px 16px 100px;
      border-top: 1px solid rgba(201,147,58,.08)
    }
    @media(min-width:681px) { .PDM-SUGG { padding: 24px 28px 32px; grid-column: 1/-1 } }

    .PDM-SUGG-TTL {
      font-size: 14px;
      font-weight: 800;
      color: rgba(240,235,227,.5);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px
    }
    .PDM-SUGG-GRID {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px,1fr));
      gap: 10px
    }
    .PDM-SUGG-CARD {
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(201,147,58,.1);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: all .22s
    }
    .PDM-SUGG-CARD:hover {
      border-color: rgba(201,147,58,.3);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,.3)
    }


    .PDM-SUGG-IMG {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover
    }

    .PDM-SUGG-INFO {
      padding: 10px 12px
    }

    .PDM-SUGG-NAME {
      font-size: 12.5px;
      font-weight: 700;
      color: #FBF7F0;
      margin-bottom: 4px;
      line-height: 1.3
    }

    .PDM-SUGG-PRICE {
      font-size: 13px;
      font-weight: 900;
      color: #C9933A
    }

    .PDM-SUGG-BTN {
      width: 100%;
      background: rgba(201, 147, 58, .1);
      border: 1px solid rgba(201, 147, 58, .2);
      border-radius: 8px;
      padding: 7px;
      color: #C9933A;
      font-family: 'Tajawal', sans-serif;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 6px;
      transition: all .2s
    }

    .PDM-SUGG-BTN:hover {
      background: rgba(201, 147, 58, .2)
    }

    /* Live Search Dropdown */
    .search-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--bg2);
      border: 1px solid var(--bd);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      margin-top: 8px;
      max-height: 400px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      flex-direction: column;
    }

    .search-dropdown.on {
      display: flex;
    }

    .search-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-bottom: 1px solid var(--bd);
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      color: var(--tp);
    }

    .search-item:last-child {
      border-bottom: none;
    }

    .search-item:hover {
      background: var(--bg3);
    }

    .search-item-img {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      object-fit: cover;
      background: var(--bg);
    }

    .search-item-info {
      flex: 1;
      text-align: right;
    }

    .search-item-name {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .search-item-price {
      font-size: 13px;
      font-weight: 900;
      color: var(--gold);
    }

    .search-empty {
      padding: 20px;
      text-align: center;
      color: var(--tm);
      font-size: 13px;
    }

    /* ══════════════════════════════════════════════════════
       HAMBURGER BUTTON
    ══════════════════════════════════════════════════════ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 42px;
      height: 42px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 10px;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      transition: background .25s, border-color .25s
    }

    .hamburger:hover {
      background: var(--sf2);
      border-color: var(--bd2)
    }

    .hb {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--tp);
      border-radius: 2px;
      transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s, width .25s
    }

    .hamburger.open .hb1 {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open .hb2 {
      opacity: 0;
      width: 0
    }

    .hamburger.open .hb3 {
      transform: translateY(-7px) rotate(-45deg)
    }

    /* ══════════════════════════════════════════════════════
       MOBILE DRAWER OVERLAY
    ══════════════════════════════════════════════════════ */
    .mob-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      z-index: 1400;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      animation: fadeIn .25s ease
    }

    .mob-overlay.on {
      display: block
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    /* ══════════════════════════════════════════════════════
       MOBILE DRAWER
    ══════════════════════════════════════════════════════ */
    .mob-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(85vw, 320px);
      background: var(--bg2);
      border-left: 1px solid var(--bd);
      z-index: 1500;
      display: flex;
      flex-direction: column;
      overflow-y: hidden;
      overscroll-behavior: contain;
      transform: translateX(110%);
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
      box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
      visibility: hidden;
      pointer-events: none
    }

    .mob-drawer.on {
      overflow-y: auto;
      visibility: visible;
      pointer-events: auto
    }

    [dir="rtl"] .mob-drawer {
      right: auto;
      left: 0;
      border-left: none;
      border-right: 1px solid var(--bd);
      transform: translateX(-110%);
      box-shadow: 20px 0 60px rgba(0, 0, 0, .4)
    }

    [dir="rtl"] .mob-drawer.on {
      transform: translateX(0)
    }

    /* Overlay also hidden when drawer closed */
    .mob-overlay {
      pointer-events: none
    }
    .mob-overlay.on {
      pointer-events: auto
    }

    .mob-drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      border-bottom: 1px solid var(--bd);
      flex-shrink: 0
    }

    .mob-drawer-head .brand {
      text-decoration: none
    }

    .mob-drawer-head .brand img {
      width: 34px;
      height: 34px;
      object-fit: contain
    }

    .mob-close {
      width: 34px;
      height: 34px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 8px;
      color: var(--ts);
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .2s
    }

    .mob-close:hover {
      background: rgba(201, 147, 58, .15);
      border-color: var(--gold);
      color: var(--gold)
    }

    .mob-search {
      display: flex;
      align-items: center;
      gap: 9px;
      margin: 14px 16px;
      padding: 10px 14px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 50px;
      transition: border-color .25s
    }

    .mob-search:focus-within {
      border-color: var(--gold)
    }

    .mob-search input {
      background: none;
      border: none;
      outline: none;
      color: var(--tp);
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      width: 100%
    }

    .mob-search input::placeholder {
      color: var(--tm)
    }

    .mob-nav {
      display: flex;
      flex-direction: column;
      padding: 8px 12px;
      gap: 2px;
      flex: 1
    }

    .mob-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 12px;
      text-decoration: none;
      color: var(--ts);
      font-size: 15px;
      font-weight: 600;
      font-family: 'Tajawal', sans-serif;
      transition: all .2s;
      border: 1px solid transparent
    }

    .mob-link:hover,
    .mob-link:active {
      background: rgba(201, 147, 58, .1);
      border-color: rgba(201, 147, 58, .2);
      color: var(--glt)
    }

    .mob-link-ic {
      font-size: 20px;
      width: 28px;
      text-align: center;
      flex-shrink: 0
    }

    .mob-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 8px 16px;
      border-top: 1px solid var(--bd);
      margin-top: 4px
    }

    .mob-act-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 11px 14px;
      background: var(--sf);
      border: 1px solid var(--bd);
      border-radius: 10px;
      color: var(--ts);
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      text-align: right
    }

    .mob-act-btn:hover {
      background: var(--sf2);
      border-color: var(--bd2)
    }

    .mob-drawer-cta {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 14px 16px;
      padding-bottom: max(16px, env(safe-area-inset-bottom));
      border-top: 1px solid var(--bd);
      flex-shrink: 0
    }

    .mob-wa-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      background: #25D366;
      border-radius: 12px;
      color: white;
      text-decoration: none;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 700;
      transition: opacity .2s
    }

    .mob-wa-btn:hover {
      opacity: .9
    }

    /* ══════════════════════════════════════════════════════
       BOTTOM NAVIGATION (NEW — 5 ITEMS)
    ══════════════════════════════════════════════════════ */
    .bnav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 500;
      background: var(--bg2);
      border-top: 1px solid var(--bd);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding-bottom: env(safe-area-inset-bottom);
      box-shadow: 0 -8px 32px rgba(0, 0, 0, .2)
    }

    .bnav>a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex: 1;
      padding: 8px 4px;
      text-decoration: none;
      color: var(--tm);
      gap: 3px;
      transition: color .2s;
      position: relative;
      cursor: pointer;
      min-width: 0
    }

    .bnav {
      display: none;
      flex-direction: row
    }

    .bnav>a:hover,
    .bnav>a.bnav-active {
      color: var(--gold)
    }

    .bnav-ic {
      font-size: 20px;
      line-height: 1;
      display: block
    }

    .bnav-lbl {
      font-size: 10px;
      font-family: 'Tajawal', sans-serif;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%
    }

    .bnav-badge {
      position: absolute;
      top: 4px;
      left: 50%;
      transform: translateX(6px);
      background: var(--gold);
      color: var(--fdp);
      font-size: 10px;
      font-weight: 900;
      min-width: 17px;
      height: 17px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 4px;
      font-family: 'Tajawal', sans-serif
    }

    /* ══════════════════════════════════════════════════════
       SHOW HAMBURGER + BNAV ON MOBILE
    ══════════════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .hamburger {
        display: flex
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: calc(62px + env(safe-area-inset-bottom))
      }

      .bnav {
        display: flex
      }

      /* back-to-top above bottom nav on mobile */
      #backToTop {
        bottom: calc(70px + env(safe-area-inset-bottom)) !important;
      }

      /* hide old mbar if still in dom */
      .mbar {
        display: none !important
      }

      /* search hidden on mobile nav — it's in drawer */
      .nsrch {
        display: none
      }

      /* hide ctaN and some action buttons on mobile nav */
      .na .ctaN {
        display: none
      }

      .wafloat {
        bottom: calc(72px + env(safe-area-inset-bottom))
      }

      .settings-btn {
        bottom: calc(78px + env(safe-area-inset-bottom))
      }
    }

    /* ══════════════════════════════════════════════════════
       LAZY LOADING — Fade in images
    ══════════════════════════════════════════════════════ */
    img[data-src] {
      opacity: 0;
      transition: opacity .4s ease
    }

    img[data-src].loaded {
      opacity: 1
    }


    /* ══════════════════════════════════════════════════════
       CHECKOUT — STEPS + FORM + PAYMENT
    ══════════════════════════════════════════════════════ */
    .chk-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex: 1;
      position: relative
    }

    .chk-step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      border: 2px solid rgba(255, 255, 255, .15);
      color: rgba(240, 235, 227, .4);
      font-size: 12px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      font-family: 'Tajawal', sans-serif
    }

    .chk-step-lbl {
      font-size: 11px;
      color: rgba(240, 235, 227, .35);
      font-family: 'Tajawal', sans-serif;
      font-weight: 600;
      transition: color .3s;
      white-space: nowrap
    }

    .chk-step-on .chk-step-num {
      background: var(--gold);
      border-color: var(--gold);
      color: #07120d
    }

    .chk-step-on .chk-step-lbl {
      color: var(--glt)
    }

    .chk-step-done .chk-step-num {
      background: rgba(82, 183, 136, .2);
      border-color: rgba(82, 183, 136, .5);
      color: rgba(82, 183, 136, .9)
    }

    .chk-step-line {
      height: 2px;
      flex: 1;
      background: rgba(255, 255, 255, .1);
      margin: 0;
      align-self: flex-start;
      margin-top: 13px;
      transition: background .3s
    }

    .chk-section {
      animation: fadeSlideIn .25s ease
    }

    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateX(-10px)
      }

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

    .chk-lbl {
      font-size: 12px;
      color: rgba(240, 235, 227, .5);
      display: block;
      margin-bottom: 5px;
      font-family: 'Tajawal', sans-serif
    }

    .chk-input {
      width: 100%;
      background: rgba(255, 255, 255, .04);
      border: 1.5px solid rgba(201, 147, 58, .15);
      border-radius: 10px;
      padding: 11px 14px;
      color: #FBF7F0;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      outline: none;
      box-sizing: border-box;
      transition: border-color .2s
    }

    .chk-input:focus {
      border-color: rgba(201, 147, 58, .5)
    }

    select.chk-input {
      background: rgba(7, 18, 13, .8)
    }

    [data-theme="light"] select.chk-input {
      background: #fff;
      color: #1a1a1a
    }

    [data-theme="light"] .chk-input {
      background: #f8f8f8;
      color: #1a1a1a;
      border-color: rgba(27, 67, 50, .2)
    }

    [data-theme="light"] .chk-input:focus {
      border-color: var(--gold)
    }

    .chk-back-btn {
      padding: 12px 18px;
      background: rgba(255, 255, 255, .06);
      border: 1.5px solid rgba(255, 255, 255, .12);
      border-radius: 12px;
      color: rgba(240, 235, 227, .7);
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      flex-shrink: 0
    }

    .chk-back-btn:hover {
      background: rgba(255, 255, 255, .1)
    }

    .chk-next-btn {
      flex: 1;
      padding: 13px;
      background: rgba(201, 147, 58, .15);
      border: 1.5px solid rgba(201, 147, 58, .3);
      border-radius: 12px;
      color: #C9933A;
      font-family: 'Tajawal', sans-serif;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      transition: all .25s
    }

    .chk-next-btn:hover {
      background: var(--gold);
      color: #07120d
    }

    .chk-next-btn:disabled {
      opacity: .5;
      cursor: not-allowed
    }

    /* Payment option cards */
    .pay-opt {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .04);
      border: 1.5px solid rgba(255, 255, 255, .1);
      border-radius: 14px;
      cursor: pointer;
      transition: all .25s;
      font-family: 'Tajawal', sans-serif
    }

    .pay-opt:hover {
      border-color: rgba(201, 147, 58, .3);
      background: rgba(201, 147, 58, .05)
    }

    .pay-opt-on {
      border-color: rgba(201, 147, 58, .5);
      background: rgba(201, 147, 58, .08)
    }

    .pay-opt-ic {
      font-size: 24px;
      flex-shrink: 0;
      width: 32px;
      text-align: center
    }

    .pay-opt-title {
      font-size: 14px;
      font-weight: 700;
      color: #FBF7F0;
      margin-bottom: 2px
    }

    .pay-opt-sub {
      font-size: 12px;
      color: rgba(240, 235, 227, .45)
    }

    .pay-opt-check {
      margin-right: auto;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold);
      color: #07120d;
      font-size: 12px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    [data-theme="light"] .pay-opt {
      background: #f8f8f8;
      border-color: rgba(27, 67, 50, .12)
    }

    [data-theme="light"] .pay-opt-on {
      background: rgba(201, 147, 58, .08);
      border-color: var(--gold)
    }

    [data-theme="light"] .pay-opt-title {
      color: #1a1a1a
    }

    [data-theme="light"] .pay-opt-sub {
      color: #666
    }

    /* ══════════════════════════════════════════════════════
       FREE SHIPPING PROGRESS BAR
    ══════════════════════════════════════════════════════ */
    .ship-bar-wrap {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(82, 183, 136, .2);
      border-radius: 12px;
      padding: 12px 14px
    }

    .ship-bar-msg {
      font-size: 13px;
      font-family: 'Tajawal', sans-serif;
      color: rgba(240, 235, 227, .8);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .ship-bar-msg strong {
      color: var(--gold)
    }

    .ship-bar-track {
      height: 7px;
      background: rgba(255, 255, 255, .08);
      border-radius: 50px;
      overflow: hidden
    }

    .ship-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #52B788, #40916C);
      border-radius: 50px;
      transition: width .6s cubic-bezier(.34, 1.56, .64, 1)
    }

    .ship-bar-fill.done {
      background: linear-gradient(90deg, #C9933A, #E8B96A)
    }

    /* cart sidebar free shipping bar */
    .cart-ship-bar {
      padding: 12px 16px;
      border-bottom: 1px solid var(--bd)
    }

    /* ══════════════════════════════════════════════════════
       EXIT INTENT POPUP
    ══════════════════════════════════════════════════════ */
    .exit-popup {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .75);
      z-index: 19999;
      align-items: center;
      justify-content: center;
      padding: 16px;
      animation: fadeIn .3s ease
    }

    .exit-popup.on {
      display: flex
    }

    .exit-popup-inner {
      background: linear-gradient(145deg, var(--bg2), var(--bg3));
      border: 1px solid rgba(201, 147, 58, .3);
      border-radius: 24px;
      width: min(440px, 100%);
      padding: 32px 28px;
      text-align: center;
      position: relative;
      box-shadow: 0 40px 80px rgba(0, 0, 0, .5)
    }

    .exit-popup-close {
      position: absolute;
      top: 14px;
      left: 14px;
      width: 30px;
      height: 30px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 50%;
      color: var(--ts);
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .exit-popup-emoji {
      font-size: 56px;
      margin-bottom: 14px;
      display: block
    }

    .exit-popup-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--tp);
      margin-bottom: 8px;
      font-family: 'Tajawal', sans-serif
    }

    .exit-popup-sub {
      font-size: 14px;
      color: var(--ts);
      margin-bottom: 20px;
      line-height: 1.6;
      font-family: 'Tajawal', sans-serif
    }

    .exit-popup-code {
      background: rgba(201, 147, 58, .1);
      border: 2px dashed rgba(201, 147, 58, .4);
      border-radius: 12px;
      padding: 12px 20px;
      font-size: 20px;
      font-weight: 900;
      color: var(--gold);
      font-family: monospace;
      letter-spacing: 3px;
      cursor: pointer;
      transition: all .2s;
      margin-bottom: 16px
    }

    .exit-popup-code:hover {
      background: rgba(201, 147, 58, .2)
    }

    .exit-popup-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--gold), #a8782c);
      border: none;
      border-radius: 12px;
      padding: 14px;
      color: var(--fdp);
      font-family: 'Tajawal', sans-serif;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      transition: transform .2s
    }

    .exit-popup-btn:hover {
      transform: scale(1.02)
    }

    .exit-popup-skip {
      display: block;
      margin-top: 12px;
      font-size: 12px;
      color: var(--tm);
      cursor: pointer;
      font-family: 'Tajawal', sans-serif;
      text-decoration: none
    }


    /* ══════════════════════════════════════════════════════
       PWA: Notification Bell + Install / Update Banners
    ══════════════════════════════════════════════════════ */

    /* Notification bell button */
    #notifBtn {
      left: 58px !important;
      font-size: 16px;
      position: fixed
    }

    #notifBtn.notif-on {
      filter: drop-shadow(0 0 6px #C9933A)
    }

    #notifBtn.notif-off {
      opacity: .5
    }

    /* Offline banner push-down */
    body.is-offline {
      padding-top: 42px !important
    }

    /* PWA install / update banners use slideUp (defined in pwa module) */


    /* ── Full-screen admin wide-screen improvements ─────── */

    /* 3-col layout for form fields on wide screens */
    @media (min-width: 1200px) {
      .adm-grid2 {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    /* Product list cards on wide screens */
    @media (min-width: 1100px) {
      .adm-plist {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
    }

    @media (min-width: 1400px) {
      .adm-plist {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    /* Admin body max content width */
    .adm-body>* {
      max-width: 1340px;
    }

    /* Admin form max width */
    .adm-form {
      max-width: 100%;
    }

    /* Close button improvements */
    .adm-close {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      color: var(--ts);
      cursor: pointer;
      font-family: inherit;
      transition: all .2s;
      border-radius: 8px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .adm-close:hover {
      background: rgba(231, 76, 60, .2);
      border-color: rgba(231, 76, 60, .4);
      color: #e74c3c;
    }

    /* Live badge pulse */
    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .4;
      }
    }

    /* Make stats section use grid */
    #tabStats .adm-form {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    /* Scrollable admin body */
    .adm-body {
      scrollbar-gutter: stable;
    }


    /* ═══════════════════════════════════════════════════════════
       DESIGN TAB — Homepage Editor
    ══════════════════════════════════════════════════════════ */

    .design-block {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(201, 147, 58, .12);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 20px;
      transition: border-color .2s;
    }

    .design-block:hover {
      border-color: rgba(201, 147, 58, .25);
    }

    .design-block-hd {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 22px;
      background: rgba(0, 0, 0, .2);
      border-bottom: 1px solid rgba(201, 147, 58, .1);
    }

    .design-block-hd>div:nth-child(2) {
      flex: 1;
    }

    .design-block-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--forest), #2d6a4f);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    }

    .design-block-title {
      font-weight: 800;
      font-size: 15px;
      color: var(--tp);
      margin-bottom: 2px;
    }

    .design-block-sub {
      font-size: 12px;
      color: var(--ts);
      opacity: .75;
    }

    .db-save-btn {
      flex-shrink: 0;
      min-width: 100px;
    }

    .design-block-body {
      padding: 20px 22px 22px;
    }

    /* Slide tabs inside design block */
    .design-slide-tabs {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
      background: rgba(0, 0, 0, .2);
      border-radius: 10px;
      padding: 4px;
    }

    .design-slide-tab {
      flex: 1;
      padding: 8px 12px;
      border-radius: 8px;
      border: none;
      background: transparent;
      color: var(--ts);
      font-family: inherit;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
    }

    .design-slide-tab.on {
      background: rgba(201, 147, 58, .15);
      color: var(--gold);
      box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    }

    .design-slide-tab:hover:not(.on) {
      background: rgba(255, 255, 255, .05);
      color: var(--tp);
    }

    /* Design preview section */
    .design-preview-strip {
      border: 2px dashed rgba(201, 147, 58, .2);
      border-radius: 12px;
      padding: 16px;
      margin-top: 16px;
      position: relative;
    }

    .design-preview-label {
      position: absolute;
      top: -10px;
      right: 14px;
      background: #0f2318;
      padding: 0 8px;
      font-size: 11px;
      color: var(--gold);
      font-weight: 700;
    }

    @media (max-width: 600px) {
      .design-block-hd {
        flex-wrap: wrap;
      }

      .design-block-hd>div:nth-child(2) {
        order: -1;
        width: 100%;
      }
    }

    /* ════════════════════════════════════════════════════
       BLOG / ARTICLES SECTION
       ════════════════════════════════════════════════════ */
    .blog {
      padding: 80px 0;
    }

    .blog-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Filter tabs */
    .blog-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 24px 0 36px;
      justify-content: center;
    }

    .blog-tab {
      padding: 9px 22px;
      border-radius: 50px;
      border: 1.5px solid var(--bd);
      background: transparent;
      color: var(--ts);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: all .3s var(--ease);
    }

    .blog-tab.on,
    .blog-tab:hover {
      background: linear-gradient(135deg, var(--forest), var(--fm));
      border-color: var(--gold);
      color: var(--tp);
      box-shadow: 0 4px 20px rgba(27, 67, 50, .5);
    }

    /* Blog grid */
    .blog-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    /* Blog card — horizontal layout */
    .bcard {
      background: var(--card);
      border-radius: 20px;
      overflow: hidden;
      border: 1.5px solid var(--cdb);
      transition: all .4s var(--ease);
      cursor: pointer;
      position: relative;
      display: grid;
      grid-template-columns: 280px 1fr;
    }

    .bcard:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 147, 58, .3);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .3), 0 0 0 1px rgba(201, 147, 58, .1);
    }

    .bcard-img {
      width: 100%;
      height: 100%;
      min-height: 200px;
      object-fit: cover;
      display: block;
      background: var(--bg2);
      transition: transform .5s var(--ease);
    }

    .bcard:hover .bcard-img {
      transform: scale(1.04);
    }

    .bcard-img-wrap {
      overflow: hidden;
      position: relative;
    }

    .bcard-cat {
      position: absolute;
      top: 14px;
      right: 14px;
      background: linear-gradient(135deg, var(--gold), #E8B86D);
      color: #1a0e00;
      font-size: 10px;
      font-weight: 900;
      padding: 5px 14px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: .5px;
      box-shadow: 0 4px 12px rgba(201, 147, 58, .3);
    }

    .bcard-body {
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .bcard-date {
      font-size: 11px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      opacity: .8;
    }

    .bcard-title {
      font-size: 19px;
      font-weight: 800;
      color: var(--tp);
      margin-bottom: 12px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .bcard-excerpt {
      font-size: 13.5px;
      color: var(--ts);
      line-height: 1.8;
      margin-bottom: 18px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .bcard-readmore {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
      transition: all .25s;
      padding: 8px 18px;
      border: 1.5px solid rgba(201, 147, 58, .25);
      border-radius: 50px;
      width: fit-content;
      background: rgba(201, 147, 58, .05);
    }

    .bcard:hover .bcard-readmore {
      gap: 10px;
      background: rgba(201, 147, 58, .1);
      border-color: rgba(201, 147, 58, .4);
    }

    @media (max-width:768px) {
      .bcard {
        grid-template-columns: 1fr;
      }

      .bcard-img {
        min-height: 180px;
        height: 180px;
      }
    }

    /* Blog empty */
    .blog-empty {
      text-align: center;
      padding: 80px 20px;
      border: 1.5px dashed var(--bd);
      border-radius: 20px;
    }

    /* Post Modal */
    .post-modal-inner {
      background: var(--bg2);
      border-radius: 24px;
      max-width: 760px;
      width: 92vw;
      max-height: 88vh;
      overflow-y: auto;
      position: relative;
      padding: 48px 44px;
      border: 1.5px solid var(--bd);
      margin: auto;
      box-shadow: 0 40px 120px rgba(0, 0, 0, .7);
      scrollbar-width: thin;
      scrollbar-color: var(--gold) transparent;
      animation: slideUp .4s var(--back) both;
    }

    .post-modal-inner::-webkit-scrollbar {
      width: 4px;
    }

    .post-modal-inner::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 4px;
    }

    .modal-close-btn {
      position: sticky;
      top: 0;
      float: left;
      background: rgba(201, 147, 58, .15);
      border: 1px solid var(--bd);
      color: var(--tp);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 14px;
      font-family: inherit;
      z-index: 10;
      transition: all .2s;
    }

    .modal-close-btn:hover {
      background: var(--gold);
      color: #1a0e00;
    }

    .post-modal-hero {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 28px;
      display: block;
    }

    .post-modal-cat {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--glt));
      color: #1a0e00;
      font-size: 11px;
      font-weight: 900;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .post-modal-title {
      font-size: 26px;
      font-weight: 900;
      color: var(--tp);
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .post-modal-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 12px;
      color: var(--tm);
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--cdb);
    }

    .post-modal-body {
      font-size: 15px;
      color: var(--ts);
      line-height: 1.9;
      white-space: pre-wrap;
    }

    .post-modal-body p {
      margin-bottom: 16px;
    }

    @media (max-width:640px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .post-modal-inner {
        padding: 28px 20px;
      }

      .post-modal-title {
        font-size: 20px;
      }

      .post-modal-hero {
        height: 200px;
      }
    }

    /* ═══════════════════════════════════════════════════════
       MOBILE HERO — تحسين تخطيط الـ Hero على الموبايل
    ═══════════════════════════════════════════════════════ */
    @media(max-width:768px) {
      .hero-content {
        padding: 90px 18px 36px !important;
        text-align: center !important
      }

      .hero-badge-top {
        font-size: 11px !important;
        padding: 6px 14px !important
      }

      .h1 {
        font-size: clamp(34px, 8.5vw, 46px) !important;
        text-align: center !important;
        margin-bottom: 10px !important
      }

      .hdesc {
        font-size: 14px !important;
        text-align: center !important;
        max-width: 90% !important;
        margin: 0 auto 18px !important
      }

      .hbtns {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important
      }

      .btnA,
      .btnB {
        padding: 12px 22px !important;
        font-size: 14px !important
      }

      .hero-stats-bar {
        padding: 16px !important;
        flex-wrap: wrap !important
      }

      .hero-stat-num {
        font-size: 22px !important
      }

      .hero-stat-lbl {
        font-size: 10px !important
      }
    }

    /* ═══════════════════════════════════════════════════════
       FIX MOBILE DISPLAY — إصلاح شامل للموبايل
    ═══════════════════════════════════════════════════════ */
    @media(max-width:768px) {

      /* 1. إلغاء كل الـ reveal animations على الموبايل */
      .rv,
      .rv2,
      .rv3 {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        visibility: visible !important
      }

      /* 2. ضمان ظهور كل الأقسام — بدون تأثير على الـ drawer */
      .hero,
      .promo,
      .csl,
      .trust,
      .ctrstrip,
      .offrs,
      .prods,
      .hows,
      .occs,
      .testi,
      .storys,
      footer,
      .ctas,
      .why,
      .blog-section,
      .ytv {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important
      }

      /* 2b. NEVER let drawer show unless open */
      .mob-drawer:not(.on) {
        transform: translateX(-110%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
        display: flex !important
      }
      .mob-overlay:not(.on) {
        display: none !important;
        pointer-events: none !important
      }

      /* 3. Hero section — تصغير الارتفاع لمنع إخفاء المحتوى */
      .hero {
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important
      }

      .hero-content {
        padding-top: 90px !important;
        padding-bottom: 30px !important
      }

      /* 4. Announcement bar */
      .ann {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 36px !important;
        overflow: hidden !important;
        position: relative !important
      }

      /* 5. Nav — only top nav, NOT bottom nav */
      nav#nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 300 !important
      }

      .ni {
        display: flex !important;
        visibility: visible !important;
        height: 62px !important
      }

      /* Fix: prevent .bnav from stretching full screen */
      .bnav {
        top: auto !important;
        bottom: 0 !important;
        height: auto !important;
        max-height: 70px !important
      }

      /* 7. Products, Offers, and other content grids */
      .pgrid,
      .offrgrid,
      .occgrid,
      .steps,
      .ctrgrid,
      .trustin,
      .tgrid {
        visibility: visible !important;
        opacity: 1 !important
      }

      /* 8. Product tabs */
      .ptabs {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important
      }

      /* 9. Section headers */
      .sechd,
      .sectitle,
      .secsub,
      .seceye {
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important
      }

      /* 10. Slider */
      .csl {
        overflow: hidden !important
      }

      /* 11. ضمان أن body يعرض المحتوى */
      body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        min-height: 100vh !important;
        display: block !important
      }

      /* 12. Fix for mobile search bar */
      #mob-search-bar {
        display: block !important
      }

      /* 13. WhatsApp float position fix */
      .wafloat {
        z-index: 400 !important
      }

      /* 14. Ensure text elements are visible */
      .h1,
      .eyebrow,
      .hdesc,
      .hbtns,
      .hero-stats-bar,
      .hero-badge-top,
      .sectitle,
      .secsub,
      .etxt,
      .cstitle,
      .csdesc,
      .cstag {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important
      }
    }

    /* ═══════════════════════════════════════════════════════════
       HERO FINAL FIX — Last-in-file override for ALL screens
       MUST BE AT THE VERY END OF THIS FILE
    ═══════════════════════════════════════════════════════════ */

    /* Desktop hero */
    section.hero#heroSection {
      position: relative !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      min-height: 100vh !important;
      overflow: hidden !important;
      background: #0B1E14 !important
    }

    section.hero#heroSection .hero-bg {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      z-index: 0 !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      width: 100% !important;
      height: 100% !important
    }

    section.hero#heroSection .hero-bg img {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      object-position: center !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important
    }

    section.hero#heroSection .hero-overlay {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      z-index: 1 !important;
      background: linear-gradient(180deg,
          rgba(11, 30, 20, .82) 0%,
          rgba(11, 30, 20, .65) 40%,
          rgba(11, 30, 20, .78) 70%,
          rgba(11, 30, 20, .92) 100%) !important
    }

    section.hero#heroSection .hero-content {
      position: relative !important;
      z-index: 5 !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      width: 100% !important;
      max-width: 820px !important;
      margin: 0 auto !important;
      padding: 130px 30px 60px !important;
      visibility: visible !important;
      opacity: 1 !important;
      transform: none !important
    }

    section.hero#heroSection .hero-badge-top {
      display: inline-flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      z-index: 5 !important
    }

    section.hero#heroSection .h1 {
      visibility: visible !important;
      opacity: 1 !important;
      z-index: 5 !important;
      -webkit-text-fill-color: transparent !important;
      background: linear-gradient(135deg, #e8d5a3, #C9933A, #f0e0b8, #C9933A) !important;
      background-size: 300% auto !important;
      -webkit-background-clip: text !important;
      background-clip: text !important
    }

    section.hero#heroSection .hdesc {
      visibility: visible !important;
      opacity: 1 !important;
      color: rgba(255, 255, 255, .75) !important;
      z-index: 5 !important
    }

    section.hero#heroSection .hbtns {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      z-index: 5 !important
    }

    section.hero#heroSection .hero-stats-bar {
      position: relative !important;
      z-index: 5 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      visibility: visible !important;
      opacity: 1 !important;
      padding: 28px 40px !important;
      background: rgba(255, 255, 255, .04) !important;
      border-top: 1px solid rgba(201, 147, 58, .15) !important;
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important
    }

    section.hero#heroSection .hero-stat {
      flex: 1 !important;
      text-align: center !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important
    }

    section.hero#heroSection .hero-stat-num {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      color: #E8B86D !important
    }

    section.hero#heroSection .hero-stat-lbl {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important
    }

    section.hero#heroSection .hero-stat-sep {
      display: block !important;
      width: 1px !important;
      height: 40px !important;
      background: rgba(201, 147, 58, .2) !important;
      flex-shrink: 0 !important
    }

    /* ── Mobile hero overrides ── */
    @media (max-width: 768px) {
      section.hero#heroSection {
        min-height: auto !important;
        height: auto !important
      }

      section.hero#heroSection .hero-content {
        padding: 100px 20px 40px !important;
        max-width: 100% !important
      }

      section.hero#heroSection .hero-badge-top {
        font-size: 11px !important;
        padding: 6px 14px !important;
        margin-bottom: 16px !important
      }

      section.hero#heroSection .h1 {
        font-size: clamp(30px, 8vw, 46px) !important;
        margin-bottom: 16px !important
      }

      section.hero#heroSection .hdesc {
        font-size: 14px !important;
        max-width: 340px !important;
        margin: 0 auto 20px !important
      }

      section.hero#heroSection .hbtns {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important
      }

      section.hero#heroSection .btnA,
      section.hero#heroSection .btnB {
        padding: 12px 22px !important;
        font-size: 14px !important
      }

      section.hero#heroSection .hero-stats-bar {
        padding: 16px 12px !important;
        flex-wrap: wrap !important;
        gap: 8px 0 !important
      }

      section.hero#heroSection .hero-stat {
        min-width: 45% !important;
        padding: 8px 0 !important
      }

      section.hero#heroSection .hero-stat-num {
        font-size: 22px !important
      }

      section.hero#heroSection .hero-stat-lbl {
        font-size: 10px !important
      }

      section.hero#heroSection .hero-stat-sep {
        display: none !important
      }

      /* CRITICAL: Bottom nav fix — prevent full-screen coverage */
      nav.bnav,
      .bnav {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: auto !important;
        max-height: 70px !important;
        min-height: 0 !important;
        overflow: hidden !important
      }
    }