/* ==========================================================
   MAMLAKATEA — Theme Enhancement CSS (pure CSS, no JS)
   Paste into: Zid → التصميم → CSS مخصص
   Built against the real markup selectors from mamlakatea.com
   ========================================================== */

/* ---------- Brand tokens (complements Zid theme vars) ---------- */
.specs {
  background: :red !important ;
}
:root {
  --mt-gold:      #B8894A;
  --mt-gold-lt:   #d9ae74;
  --mt-ivory:     #F7F4EC;
  --mt-ease:      cubic-bezier(.2,.7,.2,1);
  --mt-ease-out:  cubic-bezier(.16,1,.3,1);
}

/* ---------- Global: smoother everything ---------- */
html { scroll-behavior: smooth; }

body * {
  -webkit-tap-highlight-color: transparent;
}

/* Selection color on brand */
::selection {
  background: var(--mt-gold);
  color: #fff;
}

/* =====================================================
   1. HERO SECTION — .section-hero
   ===================================================== */
.section-hero {
  position: relative;
}

/* Stronger, richer overlay — readable text, cinematic depth */
.section-hero > .absolute > .bg-primary {
  opacity: 0 !important; /* we replace with a gradient */
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg,
      rgba(0, 74, 49, .72) 0%,
      rgba(0, 74, 49, .45) 45%,
      rgba(0, 0, 0, .15) 100%),
    radial-gradient(ellipse at bottom right,
      rgba(184,137,74,.25) 0%,
      transparent 60%);
  pointer-events: none;
}
.section-hero > .theme-container { position: relative; z-index: 1; }

/* Hero image: very slow ken-burns zoom */
.section-hero picture img {
  animation: mt-kenburns 20s ease-out infinite alternate;
  will-change: transform;
}
@keyframes mt-kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.08) translateX(-1.5%); }
}

/* Hero headline — cinematic entrance + gold underline accent */
.section-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  animation: mt-fade-up .9s var(--mt-ease-out) .15s both;
  position: relative;
  padding-bottom: .5em;
}
.section-hero h1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--mt-gold), transparent);
  border-radius: 2px;
  animation: mt-grow-line 1.2s var(--mt-ease-out) .7s both;
  transform-origin: right;
}
.section-hero p {
  animation: mt-fade-up .9s var(--mt-ease-out) .35s both;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}
.section-hero span.uppercase {
  animation: mt-fade-up .9s var(--mt-ease-out) 0s both;
  letter-spacing: .25em !important;
  color: var(--mt-gold-lt) !important;
  position: relative;
  padding-right: 28px;
}
.section-hero span.uppercase::before {
  content: "◈";
  position: absolute;
  right: 0;
  color: var(--mt-gold);
  animation: mt-pulse 2s ease-in-out infinite;
}
.section-hero > .theme-container > .flex > .flex:last-child {
  animation: mt-fade-up .9s var(--mt-ease-out) .55s both;
}

@keyframes mt-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mt-grow-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes mt-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.15); }
}

/* Hero CTA — gold gleam */
.section-hero .btn.btn-filled {
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--mt-ease), box-shadow .4s var(--mt-ease);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
}
.section-hero .btn.btn-filled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--mt-ease);
}
.section-hero .btn.btn-filled:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
}
.section-hero .btn.btn-filled:hover::before {
  transform: translateX(120%);
}

/* =====================================================
   2. PRODUCT CARDS — [data-product-card]
   ===================================================== */
[data-product-card] {
  position: relative;
  padding: 14px 14px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(184,137,74,.08);
  transition:
    transform .6s var(--mt-ease),
    box-shadow .6s var(--mt-ease),
    border-color .4s var(--mt-ease);
  will-change: transform;
}

[data-product-card]:hover {
  transform: translateY(-10px);
  border-color: rgba(184,137,74,.35);
  box-shadow:
    0 30px 60px -25px rgba(0, 74, 49, .22),
    0 15px 30px -15px rgba(184, 137, 74, .18);
}

/* Image wrapper — contain overflow for zoom */
[data-product-card] > a:first-child {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #fafaf7, #f2ede0);
  display: block;
}

/* Image zoom on hover */
[data-product-card] > a:first-child img {
  transition: transform 1s var(--mt-ease);
  will-change: transform;
}
[data-product-card]:hover > a:first-child img {
  transform: scale(1.08);
}

/* Gold shine sweep across card image */
[data-product-card] > a:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,255,255,.5) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 1s var(--mt-ease);
  pointer-events: none;
  z-index: 2;
}
[data-product-card]:hover > a:first-child::after {
  transform: translateX(100%);
}

/* Wishlist button — softer, more interactive */
[data-product-card] [data-wishlist-btn] {
  background: rgba(255, 255, 255, .9) !important;
  backdrop-filter: blur(10px);
  transition: transform .4s var(--mt-ease), background .3s;
  opacity: 0;
  transform: scale(.8) translateY(10px);
}
[data-product-card]:hover [data-wishlist-btn] {
  opacity: 1;
  transform: scale(1) translateY(0);
}
[data-product-card] [data-wishlist-btn]:hover {
  background: var(--mt-gold) !important;
  color: #fff !important;
  transform: scale(1.15) !important;
}

/* Product title — underline slide on hover */
[data-product-card] h3 a {
  position: relative;
  background-image: linear-gradient(var(--mt-gold), var(--mt-gold));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: right bottom;
  transition: background-size .5s var(--mt-ease);
  padding-bottom: 2px;
}
[data-product-card]:hover h3 a {
  background-size: 100% 1.5px;
}

/* Price emphasis */
[data-product-card] p.font-semibold {
  font-size: 1rem !important;
  color: #1C2A24 !important;
}

/* Discount badge — pulse */
[data-product-card] .bg-success\/20 {
  animation: mt-badge-pulse 2.5s ease-in-out infinite;
}
@keyframes mt-badge-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* Add to cart button — fills gold on hover */
[data-product-card] [data-add-to-cart] {
  position: relative;
  overflow: hidden;
  transition: all .4s var(--mt-ease) !important;
  z-index: 1;
}
[data-product-card] [data-add-to-cart]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mt-gold), var(--mt-gold-lt));
  transform: translateY(100%);
  transition: transform .4s var(--mt-ease);
  z-index: -1;
}
[data-product-card] [data-add-to-cart]:hover::before {
  transform: translateY(0);
}
[data-product-card] [data-add-to-cart]:hover {
  color: #fff !important;
  border-color: var(--mt-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(184,137,74,.5);
}

/* Staggered entrance for product grid (on page load) */
.section-products [data-grid-root] > div {
  animation: mt-card-in .8s var(--mt-ease-out) both;
}
.section-products [data-grid-root] > div:nth-child(1) { animation-delay: .05s; }
.section-products [data-grid-root] > div:nth-child(2) { animation-delay: .12s; }
.section-products [data-grid-root] > div:nth-child(3) { animation-delay: .19s; }
.section-products [data-grid-root] > div:nth-child(4) { animation-delay: .26s; }
.section-products [data-grid-root] > div:nth-child(5) { animation-delay: .33s; }
.section-products [data-grid-root] > div:nth-child(6) { animation-delay: .40s; }
.section-products [data-grid-root] > div:nth-child(7) { animation-delay: .47s; }
.section-products [data-grid-root] > div:nth-child(8) { animation-delay: .54s; }
.section-products [data-grid-root] > div:nth-child(9) { animation-delay: .61s; }
.section-products [data-grid-root] > div:nth-child(10){ animation-delay: .68s; }

@keyframes mt-card-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   3. SCROLL-DRIVEN REVEAL (modern browsers, CSS only)
   Uses view-timeline — gracefully degrades on old browsers
   ===================================================== */
@supports (animation-timeline: view()) {
  .section-products > .theme-container > div > .flex,
  .section-benefits .grid > div {
    animation: mt-reveal linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
  @keyframes mt-reveal {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* =====================================================
   4. SECTION HEADINGS — gold ornament above products
   ===================================================== */
.section-products h2 {
  position: relative;
  padding-right: 24px;
}
.section-products h2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--mt-gold), var(--mt-gold-lt));
  border-radius: 2px;
}

.section-products .items-center.justify-between > a {
  transition: gap .3s var(--mt-ease), color .3s;
}
.section-products .items-center.justify-between > a:hover {
  color: var(--mt-gold) !important;
  gap: 12px !important;
}

/* =====================================================
   5. BENEFITS SECTION — .section-benefits
   ===================================================== */
.section-benefits {
  position: relative;
  overflow: hidden;
}

/* Subtle najdi pattern overlay */
.section-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184,137,74,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 80%, rgba(0,98,65,.05) 0 2px, transparent 3px),
    linear-gradient(45deg, transparent 48%, rgba(184,137,74,.04) 49%, rgba(184,137,74,.04) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(184,137,74,.04) 49%, rgba(184,137,74,.04) 51%, transparent 52%);
  background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
  pointer-events: none;
  opacity: .8;
}
.section-benefits > .theme-container { position: relative; }

/* Benefit cards — elevated tiles */
.section-benefits .grid > div {
  background: #fff;
  padding: 28px 20px;
  border-radius: 14px;
  border: 1px solid rgba(184,137,74,.1);
  transition:
    transform .5s var(--mt-ease),
    box-shadow .5s var(--mt-ease),
    border-color .3s;
  position: relative;
  overflow: hidden;
}

.section-benefits .grid > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(184,137,74,.05) 100%);
  opacity: 0;
  transition: opacity .5s var(--mt-ease);
}

.section-benefits .grid > div:hover {
  transform: translateY(-8px);
  border-color: var(--mt-gold);
  box-shadow:
    0 25px 50px -20px rgba(0,98,65,.2),
    0 10px 20px -10px rgba(184,137,74,.15);
}
.section-benefits .grid > div:hover::before {
  opacity: 1;
}

/* Icon — rotates gently on hover */
.section-benefits .grid > div picture img {
  transition: transform .8s var(--mt-ease);
}
.section-benefits .grid > div:hover picture img {
  transform: rotate(-8deg) scale(1.12);
}

/* Benefit title gets a gold accent line under on hover */
.section-benefits .grid > div h3 {
  position: relative;
  padding-bottom: 8px;
}
.section-benefits .grid > div h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--mt-gold);
  transition: transform .5s var(--mt-ease);
  border-radius: 2px;
}
.section-benefits .grid > div:hover h3::after {
  transform: translateX(-50%) scaleX(1);
}

/* =====================================================
   6. GLOBAL BUTTON POLISH
   ===================================================== */
.btn {
  transition: all .35s var(--mt-ease) !important;
  letter-spacing: .2px;
}
.btn.btn-filled:not(.btn-icon) {
  font-weight: 600 !important;
}

/* =====================================================
   7. REDUCE MOTION — respect user preference
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .section-hero picture img { animation: none !important; }
}

/* ==========================================================
   MAMLAKATEA — Video Section Enhancement (CSS only)
   Paste into: Zid → CSS مخصص (append to existing CSS)
   ========================================================== */

/* Full-width video section */
.section-video {
  padding: 0 !important;
  padding-block: 0 !important;
  position: relative;
  overflow: hidden;
}

/* Soft brand overlay for text legibility */
.section-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 74, 49, .15) 0%,
    rgba(0, 0, 0, .1) 40%,
    rgba(0, 0, 0, .55) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Decorative Najdi pattern strip at the bottom */
/* .section-video::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -4px;
  left: 0;
  height: 102px;
  background-image: url(https://rfvuuwnpxesrkfhuwcwh.supabase.co/storage/v1/object/public/sava/assets/Pattern.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-origin: initial;
  z-index: 5;
  pointer-events: none;
  background-size:cover;
} */

/* Video wrapper: full width, no container limit */
.section-video .video-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  max-height: 90vh;
}

/* Video element: cover + no rounded corners edge-to-edge */
.section-video .video-wrapper video {
  object-fit: cover !important;
  width: 100% !important;
  max-height: 80vh;
  border-radius: 0 !important;
  display: block;
}

/* Injected title block (created by JS) */
.mt-video-caption {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: #fff;
  width: min(90%, 720px);
  padding: 0 16px;
  animation: mt-caption-in 1.2s cubic-bezier(.16,1,.3,1) .3s both;
}

.mt-video-caption__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d9ae74;
  margin-bottom: 12px;
  padding: 0 28px;
  position: relative;
}
.mt-video-caption__eyebrow::before,
.mt-video-caption__eyebrow::after {
  content: "◈";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #B8894A;
  font-size: 10px;
}
.mt-video-caption__eyebrow::before { right: 0; }
.mt-video-caption__eyebrow::after  { left: 0; }

.mt-video-caption__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.mt-video-caption__desc {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  opacity: .95;
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* Gold accent line under title */
.mt-video-caption__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B8894A, transparent);
  margin: 16px auto 0;
}

@keyframes mt-caption-in {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Responsive: lift caption higher on small screens */
@media (max-width: 768px) {
  .mt-video-caption {
    bottom: 110px;
  }
  .section-video::after {
    height: 50px;
  }
}
/* ==========================================================
   MAMLAKATEA — Regions Storytelling Section
   Paste into: Zid → CSS مخصص
   ========================================================== */
.mt-story {
  --mt-green:     #00382a;
  --mt-green-md:  #004a31;
  --mt-gold:      #B8894A;
  --mt-gold-lt:   #d9ae74;
  --mt-gold-dk:   #8a6332;
  --mt-ivory:     #f5efe0;
  --mt-cream:     #fbf8f0;
  --mt-ink:       #1a2420;
  --mt-ease:      cubic-bezier(.2,.7,.2,1);

  --c-najd:    #804C3B;
  --c-ula:     #E0592A;
  --c-okaz:    #A32035;
  --c-taif:    #A50064;
  --c-jazan:   #F4B223;
  --c-ahsa:    #006241;
  --c-abha:    #673065;

  position: relative;
  background: var(--mt-cream);
  color: var(--mt-ink);
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  line-height: 1.75;
  overflow: hidden;
}

.mt-story *, .mt-story *::before, .mt-story *::after { box-sizing: border-box; }

/* Faint najdi pattern */
.mt-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,56,42,.09) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 80%, rgba(184,137,74,.09) 0 2px, transparent 3px),
    linear-gradient(45deg, transparent 48%, rgba(0,56,42,.05) 49%, rgba(0,56,42,.05) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(184,137,74,.05) 49%, rgba(184,137,74,.05) 51%, transparent 52%);
  background-size: 80px 80px, 80px 80px, 40px 40px, 40px 40px;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

/* ============ Intro ============ */
.mt-story__intro {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.mt-story__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--mt-gold-dk);
  margin-bottom: 22px;
  padding: 0 36px;
  position: relative;
  text-transform: uppercase;
}
.mt-story__eyebrow::before, .mt-story__eyebrow::after {
  content: "◈";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: var(--mt-gold);
}
.mt-story__eyebrow::before { right: 0; }
.mt-story__eyebrow::after  { left: 0; }

.mt-story__title {
  font-family: 'Cormorant Garamond', 'IBM Plex Sans Arabic', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--mt-green);
  margin: 0 0 20px;
  letter-spacing: -.01em;
}
.mt-story__title em {
  font-style: italic;
  color: var(--mt-gold);
}
.mt-story__ornament {
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mt-gold), transparent);
  margin: 32px auto;
  position: relative;
}
.mt-story__ornament::before {
  content: "◈";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--mt-gold);
  background: var(--mt-cream);
  padding: 0 14px;
  font-size: 13px;
}
.mt-story__subtitle {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: rgba(26,36,32,.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ============ Pinned stage ============ */
.mt-story__stage { position: relative; z-index: 2; }

.mt-story__pin {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Map column */
.mt-story__map {
  position: relative;
  height: 75vh;
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-story__map-glow {
  position: absolute;
  inset: 5%;
  background: radial-gradient(ellipse at center, rgba(184,137,74,.28) 0%, transparent 60%);
  filter: blur(50px);
  animation: mt-glow-breathe 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mt-glow-breathe {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.1); }
}
.mt-story__svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.mt-story__svg .mt-bg,
.mt-story__svg .mt-bg-fill {
  fill: #ffffff;
  stroke: rgba(0,56,42,.2);
  stroke-width: .8;
}
.mt-story__svg .mt-region {
  fill: rgba(184,137,74,.18);
  stroke: rgba(184,137,74,.5);
  stroke-width: 1;
  transition: fill 1s var(--mt-ease), stroke 1s var(--mt-ease), stroke-width 1s var(--mt-ease), filter 1s var(--mt-ease);
}

.mt-story__svg[data-active="najd"]  .mt-region--najd,
.mt-story__svg[data-active="ula"]   .mt-region--ula,
.mt-story__svg[data-active="okaz"]  .mt-region--okaz,
.mt-story__svg[data-active="taif"]  .mt-region--taif,
.mt-story__svg[data-active="jazan"] .mt-region--jazan,
.mt-story__svg[data-active="ahsa"]  .mt-region--ahsa,
.mt-story__svg[data-active="abha"]  .mt-region--abha {
  stroke: #fff;
  stroke-width: 2;
}

.mt-story__svg[data-active="najd"]  .mt-region--najd  { fill: var(--c-najd);  filter: drop-shadow(0 0 30px rgba(128,76,59,.55))  brightness(1.1); }
.mt-story__svg[data-active="ula"]   .mt-region--ula   { fill: var(--c-ula);   filter: drop-shadow(0 0 30px rgba(224,89,42,.55))  brightness(1.1); }
.mt-story__svg[data-active="okaz"]  .mt-region--okaz  { fill: var(--c-okaz);  filter: drop-shadow(0 0 30px rgba(163,32,53,.55))  brightness(1.1); }
.mt-story__svg[data-active="taif"]  .mt-region--taif  { fill: var(--c-taif);  filter: drop-shadow(0 0 30px rgba(165,0,100,.55))  brightness(1.1); }
.mt-story__svg[data-active="jazan"] .mt-region--jazan { fill: var(--c-jazan); filter: drop-shadow(0 0 30px rgba(244,178,35,.5))   brightness(1.05); }
.mt-story__svg[data-active="ahsa"]  .mt-region--ahsa  { fill: var(--c-ahsa);  filter: drop-shadow(0 0 30px rgba(0,98,65,.55))    brightness(1.15); }
.mt-story__svg[data-active="abha"]  .mt-region--abha  { fill: var(--c-abha);  filter: drop-shadow(0 0 30px rgba(103,48,101,.55)) brightness(1.1); }

/* Content column */
.mt-story__content {
  position: relative;
  height: 75vh;
  max-height: 720px;
  display: flex;
  align-items: center;
}
.mt-story__slides {
  position: relative;
  width: 100%;
  min-height: 460px;
}
.mt-story__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mt-story__slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--mt-gold-dk);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mt-story__slide-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--mt-gold);
}
.mt-story__slide-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mt-gold-dk);
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.mt-story__slide-name {
  font-family: 'Cormorant Garamond', 'IBM Plex Sans Arabic', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--mt-green);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
.mt-story__slide-divider {
  width: 60px;
  height: 1px;
  background: var(--mt-gold);
  margin-bottom: 24px;
  position: relative;
}
.mt-story__slide-divider::before {
  content: "◈";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--mt-gold);
  background: var(--mt-cream);
  padding: 0 6px;
}
.mt-story__slide-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.mt-story__slide-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(184,137,74,.08);
  border: 1px solid rgba(184,137,74,.35);
  border-radius: 999px;
  font-size: 11px;
  color: var(--mt-gold-dk);
  letter-spacing: .05em;
}
.mt-story__slide-text {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(26,36,32,.78);
  margin: 0 0 32px;
  max-width: 540px;
}
.mt-story__slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: transparent;
  color: var(--mt-gold-dk);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--mt-gold);
  align-self: flex-start;
  transition: all .6s var(--mt-ease);
  position: relative;
  overflow: hidden;
}
.mt-story__slide-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mt-gold);
  transform: translateX(100%);
  transition: transform .6s var(--mt-ease);
  z-index: 0;
}
.mt-story__slide-cta span,
.mt-story__slide-cta svg { position: relative; z-index: 1; transition: color .6s, transform .4s; }
.mt-story__slide-cta:hover::before { transform: translateX(0); }
.mt-story__slide-cta:hover span,
.mt-story__slide-cta:hover svg { color: #fff; }
.mt-story__slide-cta:hover svg { transform: translateX(-6px); }

/* Progress rail */
.mt-story__rail {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.mt-story__rail.is-visible { opacity: 1; visibility: visible; }
.mt-story__rail-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(184,137,74,.25);
  border: 1px solid rgba(184,137,74,.5);
  transition: all .6s var(--mt-ease);
  position: relative;
  cursor: pointer;
  padding: 0;
}
.mt-story__rail-dot:hover { transform: scale(1.3); border-color: var(--mt-gold); }
.mt-story__rail-dot.is-active {
  background: var(--mt-gold);
  border-color: var(--mt-gold);
  transform: scale(1.5);
  box-shadow: 0 0 22px rgba(184,137,74,.55);
}
.mt-story__rail-dot.is-active::after {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--mt-gold-dk);
  white-space: nowrap;
  text-transform: uppercase;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* Outro (hidden by default; JS adds .is-visible if config.showOutro) */
.mt-story__outro {
  position: relative;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .6s;
}
.mt-story__outro.is-visible {
  max-height: none;
  padding: 120px 24px;
  opacity: 1;
}
.mt-story__outro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--mt-green);
  margin: 0 0 28px;
  line-height: 1.3;
}
.mt-story__outro-title em { font-style: italic; color: var(--mt-gold); }
.mt-story__outro-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 44px;
  background: var(--mt-gold);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .5s var(--mt-ease);
}
.mt-story__outro-cta:hover {
  background: var(--mt-gold-dk);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(184,137,74,.5);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .mt-story__pin { gap: 40px; padding: 30px 40px; }
}
@media (max-width: 900px) {
  .mt-story__pin {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    height: auto;
    min-height: 100vh;
  }
  .mt-story__map     { height: 38vh; max-height: 380px; }
  .mt-story__content { height: auto; min-height: 52vh; max-height: none; }
  .mt-story__slides  { min-height: 420px; }
  .mt-story__intro   { padding: 80px 20px 40px; }
  .mt-story__rail    { right: 14px; gap: 14px; }
  .mt-story__rail-dot.is-active::after { display: none; }
  .mt-story__outro.is-visible { padding: 80px 20px; }
}
@media (max-width: 560px) {
  .mt-story__pin { padding: 16px; }
  .mt-story__slide-name { font-size: 2rem; }
  .mt-story__map { height: 34vh; }
  .mt-story__slide-cta { padding: 14px 24px; font-size: 11px; }
}