/* ============================================================
   ABRA W KHAIT — Design System
   Palette taken straight from the logo:
   bronze-gold wordmark + deep brown line art on cream.
   Signature motif: gold dashed "stitch line"
   ============================================================ */
:root {
  --primary: #4A3324;          /* deep brown — the logo's line art */
  --primary-soft: #5C4128;
  --primary-dark: #33231A;
  --secondary: #EBDCC1;        /* warm sand */
  --secondary-soft: #F6EEDF;
  --gold: #C08A2E;             /* the logo's bronze-gold */
  --gold-soft: #E0B45F;        /* the light stop of the logo gradient */
  --gold-dark: #9C6C1C;
  --bg: #FBF7F0;               /* soft cream */
  --card: #FFFFFF;
  --text: #3A2B1E;
  --muted: #8A7A66;
  --border: #E8DAC0;
  --success: #2F7D4F;
  --warning: #B07A1F;
  --danger: #A93B3B;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 10px rgba(74,51,36,.07);
  --shadow-lg: 0 10px 30px rgba(74,51,36,.12);
  --container: 1280px;
  --font-en: 'Manrope', system-ui, sans-serif;
  --font-ar: 'Tajawal', system-ui, sans-serif;
}

/* Currency symbol — inline SVG glyph that inherits colour and font size */
.cur-sym { display: inline-block; width: .78em; height: .7em; line-height: 1; vertical-align: -.02em; }
.cur-sym svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.cur-sym-img { display: inline-block; width: auto; height: .72em; vertical-align: -.02em; }
.cur-sym-txt { font-weight: inherit; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-en); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: var(--font-ar); letter-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

h1,h2,h3,h4 { font-weight: 800; line-height: 1.25; margin: 0 0 .5em; color: var(--primary); }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
.section { padding: 64px 0; content-visibility: auto; contain-intrinsic-size: 1px 720px; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:28px; }
.section-head p { color: var(--muted); margin: 4px 0 0; }
.eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

/* Signature stitch line */
.stitch { height: 0; border-top: 2px dashed var(--gold-soft); width: 72px; margin: 14px 0 0; }
.stitch.center { margin: 14px auto 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius); border: 1px solid transparent;
  font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .2s ease; line-height: 1.2;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-soft); color: #fff; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #A67A26; color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); border-color: var(--border); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE5A; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

/* Announcement bar */
.announce { background: var(--primary); color: var(--secondary); text-align: center; font-size: .85rem; padding: 8px 16px; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-main { display: flex; align-items: center; gap: 20px; padding: 10px 0; }
.logo img { height: 46px; width: auto; }
.header-search { flex: 1; max-width: 520px; position: relative; }

/* Mobile menu button + slide-in drawer (hidden on desktop) */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px 10px;
  font-size: 1.35rem; color: var(--primary); border-radius: 8px; line-height: 1;
}
.nav-toggle:hover { background: var(--secondary-soft); }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(51,35,26,.5); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; inset-inline-start: 0; bottom: 0; width: min(84vw, 330px);
  background: #fff; z-index: 310; display: flex; flex-direction: column;
  transform: translateX(-102%); transition: transform .28s ease; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
html[dir="rtl"] .drawer { transform: translateX(102%); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.drawer-head img { height: 40px; width: auto; }
.drawer-close { background: none; border: 0; font-size: 1.4rem; color: var(--muted); cursor: pointer; padding: 4px 8px; }
.drawer-search { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.drawer-search input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 999px; font-family: inherit; background: var(--bg); }
.drawer nav { padding: 8px 0; flex: 1; }
.drawer nav a {
  display: flex; align-items: center; gap: 12px; padding: 13px 18px;
  font-weight: 700; font-size: .98rem; border-bottom: 1px solid var(--secondary-soft); color: var(--primary);
}
.drawer nav a i { width: 22px; text-align: center; color: var(--gold); }
.drawer nav a.hi { background: var(--gold); color: #fff; margin: 10px 14px; border-radius: var(--radius); border-bottom: 0; justify-content: center; }
.drawer nav a.hi i { color: #fff; }
.drawer-foot { padding: 16px 18px; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.header-search input {
  width: 100%; padding: 11px 44px 11px 16px; border: 1.5px solid var(--border);
  border-radius: 999px; background: var(--bg); font-family: inherit; font-size: .93rem;
}
html[dir="rtl"] .header-search input { padding: 11px 16px 11px 44px; }
.header-search button { position: absolute; inset-inline-end: 6px; top: 50%; transform: translateY(-50%); background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 1.05rem; padding: 8px; }
.search-suggest { position: absolute; top: calc(100% + 6px); inset-inline: 0; background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; display: none; z-index: 200; }
.search-suggest a { display:block; padding:10px 14px; font-size:.9rem; border-bottom:1px solid var(--border); }
.search-suggest a:last-child { border-bottom: 0; }
.search-suggest a:hover { background: var(--secondary-soft); }
.header-icons { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.hicon {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; width: 60px; padding: 6px 4px; color: var(--primary); font-size: 1.15rem; border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.hicon span { font-size: .66rem; font-weight: 700; color: var(--muted); line-height: 1; }
.hicon:hover { background: var(--secondary-soft); color: var(--gold); }
.hicon:hover span { color: var(--gold); }
.badge-count { position:absolute; top:2px; inset-inline-end:10px; background: var(--gold); color:#fff; font-size:.6rem; font-weight:800; min-width:16px; height:16px; border-radius:999px; display:flex; align-items:center; justify-content:center; padding:0 4px; }
.lang-switch { font-weight: 800; font-size: .85rem; border: 1.5px solid var(--border); border-radius: 999px; padding: 8px 14px; margin-inline-end: 6px; white-space: nowrap; transition: border-color .15s ease, color .15s ease; }
.lang-switch:hover { border-color: var(--gold); color: var(--gold); }

/* Nav */
.site-nav { border-top: 1px solid var(--border); background: #fff; }
.site-nav > .container > ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.site-nav li { position: relative; display: flex; align-items: center; }
.site-nav > .container > ul > li > a {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px; font-weight: 700; font-size: .89rem;
  white-space: nowrap; color: var(--primary); position: relative; transition: color .15s ease;
}
/* Animated underline that grows from the centre */
.site-nav > .container > ul > li > a::after {
  content: ""; position: absolute; bottom: 5px; inset-inline: 14px; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.site-nav > .container > ul > li > a:hover { color: var(--gold); }
.site-nav > .container > ul > li > a:hover::after,
.site-nav > .container > ul > li > a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--gold); }

/* Highlighted items (Order Kandura, Book Appointment) — compact pills with clearly
   contrasting hover so the label never blends into its background. */
.site-nav a.nav-hi {
  color: var(--gold-dark); border: 1.5px solid var(--gold); border-radius: 999px;
  margin: 0 3px; padding: 6px 16px; font-weight: 800; letter-spacing: .01em;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.site-nav a.nav-hi::after { display: none; }
/* Outline (secondary) fills with deep brown on hover — distinct from the gold border. */
.site-nav a.nav-hi:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px rgba(74,51,36,.22); }
/* Primary (first highlighted) is solid gold; darkens on hover. */
.site-nav a.nav-hi.nav-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.site-nav a.nav-hi.nav-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

/* Desktop dropdown sub-menus */
.site-nav .sub-menu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; inset-inline-start: 4px;
  min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 200; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.site-nav li.has-sub:hover > .sub-menu,
.site-nav li.has-sub:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav .sub-menu li { display: block; }
.site-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: .9rem; }
.site-nav .sub-menu a::after { display: none; }
.site-nav .sub-menu a:hover { background: var(--secondary-soft); color: var(--gold); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #3B3226 100%); color: #fff; position: relative; overflow: hidden; }
.hero::after { content:""; position:absolute; inset-inline-end:-120px; top:-120px; width:420px; height:420px; border-radius:50%; border: 2px dashed rgba(217,179,106,.35); }
.hero-inner { padding: 84px 0; max-width: 640px; position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero p { color: var(--secondary); font-size: 1.08rem; margin: 0 0 28px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Cards & grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1024px) { .grid-4, .grid-6 { grid-template-columns: repeat(3, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px)  { .grid-4, .grid-3, .grid-6 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4/5; background: var(--secondary-soft); overflow: hidden; }
.card-img.square { aspect-ratio: 1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 16px; }
.card-body h3 { font-size: 1rem; margin-bottom: 6px; }
.price-row { display: flex; align-items: baseline; gap: 8px; font-weight: 800; }
.price-old { color: var(--muted); text-decoration: line-through; font-weight: 500; font-size: .88rem; }
.tag { display:inline-block; background: var(--secondary-soft); color: var(--primary); font-size:.72rem; font-weight:700; padding: 3px 10px; border-radius: 999px; }
.tag.gold { background: var(--gold); color: #fff; }
.tag.demo { background: #EEE; color: var(--muted); }

/* Steps strip */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
.step-item { padding: 26px 22px; border-inline-start: 2px dashed var(--gold-soft); position: relative; }
.step-item::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-weight:800; color: var(--gold); font-size: 1.5rem; display:block; margin-bottom: 8px; }
.step-item h3 { font-size: 1.02rem; }
.step-item p { color: var(--muted); font-size: .9rem; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Split banner */
.split { display:grid; grid-template-columns: 1.1fr .9fr; border-radius: var(--radius-lg); overflow:hidden; background: var(--primary); color:#fff; }
.split-body { padding: 48px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.split-body h2 { color:#fff; }
.split-body p { color: var(--secondary); }
.split-img { background: var(--secondary); min-height: 280px; }
.split-img img { width:100%; height:100%; object-fit:cover; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* Testimonials */
.quote-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.quote-card footer { color: var(--muted); font-size:.85rem; margin-top: 12px; font-weight: 600; }

/* Google reviews carousel — 3 up on desktop, 1 on mobile, auto-scrolls */
.rev-carousel { position: relative; }
.rev-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 6px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start;
  display: flex; flex-direction: column;
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; text-decoration: none; color: inherit;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.rev-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.08); transform: translateY(-3px); border-color: var(--gold); }
.rev-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.rev-card p { margin: 0; flex: 1; line-height: 1.6; }
.rev-card footer {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size:.85rem; margin-top: 16px; font-weight: 600;
}
.rev-av { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.rev-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.rev-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: var(--border); cursor: pointer; transition: background .2s, width .2s;
}
.rev-dots button.on { background: var(--gold); width: 22px; border-radius: 5px; }
@media (max-width: 900px) { .rev-card { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 640px) { .rev-card { flex-basis: 100%; } }

/* Forms */
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { font-weight: 700; font-size: .88rem; display:block; margin-bottom: 6px; color: var(--primary); }
/* Cover inputs written without an explicit type= attribute too (attribute selectors
   don't match the implicit default), so every field gets the themed styling. */
input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=range]):not([type=submit]):not([type=button]),
select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(192,138,46,.14);
}
input::placeholder, textarea::placeholder { color: #B3A488; }
select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A7A66' d='M6 8 0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-inline-end: 38px;
}
html[dir="rtl"] select { background-position: left 14px center; padding-inline-end: 14px; padding-inline-start: 38px; }
.field-hint { color: var(--muted); font-size:.8rem; margin-top:4px; }

/* Quantity stepper (− [n] +) */
.qty-input { text-align: center; }
input.qty-input { width: 84px; }
.qty-stepper { display: inline-flex; align-items: stretch; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.qty-stepper .qty-input { width: 60px; border: 0; border-radius: 0; box-shadow: none !important; border-inline: 1.5px solid var(--border); -moz-appearance: textfield; }
.qty-stepper .qty-input::-webkit-outer-spin-button, .qty-stepper .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-btn { border: 0; background: var(--secondary-soft); color: var(--primary); width: 42px; font-size: 1.2rem; font-weight: 700; cursor: pointer; line-height: 1; }
.qty-btn:hover { background: var(--gold); color: #fff; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-weight: 600; font-size:.92rem; }
.alert-success { background: #E8F4EC; color: var(--success); border:1px solid #BFE0CB; }
.alert-danger { background: #F9E9E9; color: var(--danger); border:1px solid #ECC7C7; }
.alert-info { background: var(--secondary-soft); color: var(--primary); border:1px solid var(--border); }

/* Wizard */
.wizard-progress { display:flex; gap: 6px; margin: 24px 0 32px; }
.wizard-progress span { flex:1; height: 5px; border-radius: 999px; background: var(--border); }
.wizard-progress span.done { background: var(--gold); }
.option-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.option-tile { border: 2px solid var(--border); border-radius: var(--radius); padding: 14px; text-align:center; cursor:pointer; background:#fff; transition: all .15s ease; }
.option-tile:hover { border-color: var(--gold-soft); }
.option-tile.selected { border-color: var(--gold); background: #FDF8EE; }
.option-tile .opt-name { font-weight: 700; font-size: .9rem; }
.option-tile .opt-price { color: var(--gold); font-weight: 700; font-size: .82rem; }
.wizard-layout { display:grid; grid-template-columns: 1fr 340px; gap: 28px; align-items:start; }
.wizard-summary { position: sticky; top: 90px; background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.sum-row { display:flex; justify-content:space-between; padding: 7px 0; font-size:.92rem; border-bottom:1px dashed var(--border); }
.sum-row:last-of-type { border-bottom: 0; }
.sum-row.total { font-weight: 800; font-size: 1.05rem; border-top: 2px solid var(--primary); margin-top: 8px; padding-top: 12px; }
@media (max-width: 900px) { .wizard-layout { grid-template-columns: 1fr; } .wizard-summary { position: static; } }

/* Product page */
.product-layout { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .product-layout { grid-template-columns: 1fr; } }
.gallery-main { border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:#fff; aspect-ratio: 4/5; }
.gallery-main img { width:100%; height:100%; object-fit: cover; cursor: zoom-in; transition: transform .3s; }
.gallery-main img:hover { transform: scale(1.35); }
.gallery-thumbs { display:flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs img { width: 70px; height:70px; object-fit:cover; border-radius: 8px; border:2px solid var(--border); cursor:pointer; }
.gallery-thumbs img.active { border-color: var(--gold); }

/* Tables — clean, card-like, comfortable spacing */
.table {
  width: 100%; border-collapse: separate; border-spacing: 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.table th, .table td { padding: 14px 18px; text-align: start; font-size: .94rem; border-bottom: 1px solid var(--border); }
.table thead th { background: var(--secondary-soft); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--primary); }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: #FDFAF4; }
/* A borderless "summary" variant for cart / order lines (label ↔ value rows) */
.table.summary { border: 0; background: transparent; }
.table.summary td, .table.summary th { padding: 11px 2px; border-bottom: 1px dashed var(--border); }
.table.summary tr:last-child td, .table.summary tr:last-child th { border-bottom: 0; }
.table.summary th { background: transparent; text-transform: none; letter-spacing: 0; font-size: 1.02rem; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.table-wrap .table { min-width: 480px; }

/* Timeline */
.timeline { list-style:none; margin:0; padding:0; }
.timeline li { position:relative; padding: 0 0 22px 26px; border-inline-start: 2px dashed var(--gold-soft); margin-inline-start: 8px; }
html[dir="rtl"] .timeline li { padding: 0 26px 22px 0; }
.timeline li::before { content:""; position:absolute; inset-inline-start:-7px; top: 4px; width:12px; height:12px; border-radius:50%; background: var(--gold); }
.timeline time { color: var(--muted); font-size:.8rem; display:block; }

/* Footer */
.site-footer { background: var(--primary); color: var(--secondary); margin-top: 60px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 0 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { margin-bottom: 9px; font-size: .92rem; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(232,220,200,.18); padding: 18px 0; font-size:.85rem; display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }
.social-links a { display:inline-flex; width:38px; height:38px; align-items:center; justify-content:center; border:1px solid rgba(232,220,200,.3); border-radius: 50%; margin-inline-end: 8px; }
.social-links a:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 84px; inset-inline-end: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size: 1.7rem; box-shadow: var(--shadow-lg); }
.wa-float:hover { color:#fff; transform: scale(1.07); }
@media (min-width: 861px) { .wa-float { bottom: 24px; } }

/* Mobile bottom nav */
.mobile-nav { display:none; position: fixed; bottom:0; inset-inline:0; background:#fff; border-top:1px solid var(--border); z-index: 95; }
.mobile-nav a { flex:1; text-align:center; padding: 9px 4px 7px; font-size: 1.2rem; color: var(--primary); position:relative; }
.mobile-nav a small { display:block; font-size:.62rem; font-weight:700; color: var(--muted); }
@media (max-width: 900px) {
  .mobile-nav { display:flex; }
  body { padding-bottom: 62px; }
  .site-nav { display:none; }
  .header-search { display:none; }
  .hicon span { display:none; }
  .nav-toggle { display: inline-flex; }

  /* One tidy row: menu · logo · language + cart. Nothing else competes for space. */
  .header-main { gap: 8px; padding: 10px 0; }
  .logo { flex: 1; display: flex; justify-content: center; }
  .logo img { height: 40px; }
  .header-icons { gap: 2px; }
  .header-icons .hicon[aria-label="WhatsApp"],
  .header-icons .hicon[data-hide-mobile] { display: none; }
  .hicon { padding: 6px 7px; font-size: 1.2rem; }
  .lang-switch { padding: 6px 10px; font-size: .8rem; }
  .announce { font-size: .78rem; padding: 7px 12px; }
}
@media (max-width: 380px) {
  .logo img { height: 34px; }
  .lang-switch { padding: 5px 8px; font-size: .72rem; }
}

/* ============ Hero banner (image managed in admin) ============ */
.hero-banner { position: relative; background: var(--primary-dark); color: #fff; overflow: hidden; }
.hero-banner .hero-bg { position: absolute; inset: 0; }
.hero-banner .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-banner::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(51,35,26,.94) 0%, rgba(74,51,36,.86) 45%, rgba(74,51,36,.35) 100%);
}
html[dir="rtl"] .hero-banner::before { background: linear-gradient(260deg, rgba(51,35,26,.94) 0%, rgba(74,51,36,.86) 45%, rgba(74,51,36,.35) 100%); }
.hero-banner .container { position: relative; z-index: 2; }
.hero-content { padding: 76px 0; max-width: 620px; }
.hero-content h1 { color: #fff; font-size: clamp(1.8rem, 4.4vw, 2.9rem); margin-bottom: 14px; }
.hero-content p { color: var(--secondary); font-size: 1.06rem; margin: 0 0 26px; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero-content { padding: 48px 0; text-align: center; }
  .hero-content .stitch { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

/* ============ Appointment page layout: form left, banner right (desktop) ============ */
.appt-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.appt-form   { order: 1; }
.appt-banner { order: 2; position: sticky; top: 92px; }
.appt-banner .visit-points li { font-size: 1rem; }
@media (max-width: 900px) {
  .appt-layout { grid-template-columns: 1fr; gap: 16px; }
  /* On mobile the booking form comes first; the compact banner sits below it. */
  .appt-form   { order: 1; }
  .appt-banner { order: 2; position: static; }
  .appt-banner .visit-hero { padding: 22px 20px; }
  .appt-banner .visit-hero .eyebrow { font-size: .72rem; }
  .appt-banner .visit-hero h1 { font-size: 1.5rem !important; margin-bottom: 8px; line-height: 1.2; }
  .appt-banner .visit-hero p { font-size: .9rem; margin-bottom: 14px; }
  .appt-banner .visit-points { gap: 8px 18px; margin-bottom: 0; }
  .appt-banner .visit-points li { font-size: .85rem; }
  .appt-banner .visit-hero::after { display: none; }   /* drop the decorative circle on mobile */
}

/* ============ The main highlight: book a visit ============ */
.visit-hero {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden;
}
.visit-hero::after {
  content: ""; position: absolute; inset-inline-end: -90px; top: -90px; width: 300px; height: 300px;
  border-radius: 50%; border: 2px dashed rgba(255,255,255,.35);
}
.visit-hero h2 { color: #fff; margin-bottom: 8px; }
.visit-hero p { color: #FCF2DF; margin: 0 0 22px; max-width: 560px; }
.visit-hero .btn-light { font-size: 1.02rem; padding: 14px 30px; }
.visit-points { display: flex; gap: 22px; flex-wrap: wrap; margin: 0 0 24px; padding: 0; list-style: none; }
.visit-points li { font-weight: 700; font-size: .93rem; display: flex; align-items: center; gap: 8px; }
@media (max-width: 640px) { .visit-hero { padding: 28px 22px; text-align: center; } .visit-points { justify-content: center; gap: 14px; } .visit-hero p { margin-inline: auto; } }

/* ============ Order Kandura — pick a style ============ */
/* Capped at 4 columns so styles never get too small on wide screens. */
.kandura-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .kandura-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .kandura-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .kandura-grid { grid-template-columns: 1fr; } }
.kandura-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.kandura-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.kandura-card .k-img { aspect-ratio: 3/4; background: var(--secondary-soft); position: relative; }
.kandura-card .k-img img { width: 100%; height: 100%; object-fit: cover; }
.kandura-card .k-flag { position: absolute; top: 12px; inset-inline-start: 12px; background: rgba(51,35,26,.82); color: #fff; font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase; }
.kandura-card .k-sale { position: absolute; top: 12px; inset-inline-end: 12px; background: var(--danger); color: #fff; font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.kandura-card .k-price .price-row { align-items: baseline; }
.kandura-card .k-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.kandura-card h3 { margin: 0; font-size: 1.06rem; }
.kandura-card .k-desc { color: var(--muted); font-size: .88rem; margin: 0; flex: 1; }
.kandura-card .k-price { font-weight: 800; color: var(--primary); font-size: 1.05rem; }
.kandura-card .k-price small { color: var(--muted); font-weight: 600; font-size: .78rem; display: block; }

/* ============ Numbered step headings (booking / order forms) ============ */
.step-title { font-size: 1.08rem; display: flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.step-num {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: #fff;
  font-size: .82rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}

/* ============ Big choice tiles (measurement method, visit type) ============ */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.choice {
  position: relative; display: flex; gap: 13px; align-items: center; cursor: pointer;
  border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; background: #fff;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.choice:hover { border-color: var(--gold-soft); box-shadow: var(--shadow); }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice .c-ico { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--secondary-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.choice .c-t { font-weight: 800; font-size: .96rem; display: block; margin-bottom: 3px; }
.choice .c-x { color: var(--muted); font-size: .84rem; line-height: 1.45; display: block; }
.choice:has(input:checked) { border-color: var(--gold); background: #FDF8EE; }
.choice:has(input:checked) .c-ico { background: var(--gold); color: #fff; }
.choice input:focus-visible + .c-ico { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============ Cart lines (card layout, mobile-friendly) ============ */
.cart-line { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 14px; }
.cart-line .cl-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); background: var(--secondary-soft); }
.cart-line .cl-body { min-width: 0; }
.cart-line .cl-body strong { font-size: 1.02rem; }
.cl-meta { margin: 6px 0 0; padding: 0; list-style: none; font-size: .8rem; color: var(--muted); }
.cl-note { margin: 8px 0 0; font-size: .8rem; color: var(--gold-dark); background: #FDF8EE; border-radius: 8px; padding: 6px 10px; }
.cl-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.cl-link { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; font-size: .82rem; font-weight: 700; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.cl-link:hover { color: var(--gold); }
.cart-line .cl-right { text-align: end; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-line .cl-total { font-weight: 800; font-size: 1.05rem; }
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line .cl-img { width: 64px; height: 64px; }
  .cart-line .cl-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============ Payment / balance ============ */
.pay-summary { background: var(--secondary-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.pay-row { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; padding: 4px 0; }
.pay-row.balance { font-weight: 800; color: var(--danger); border-top: 1px dashed var(--border); margin-top: 6px; padding-top: 8px; }
.pay-row.paid { color: var(--success); font-weight: 700; }

/* Utility */
.text-center { text-align:center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mb-2 { margin-bottom: 16px; }
.muted { color: var(--muted); }
.breadcrumbs { font-size:.85rem; color: var(--muted); margin: 18px 0; }
.breadcrumbs a:hover { color: var(--gold); }
.pagination { display:flex; gap:8px; justify-content:center; margin-top: 36px; }
.pagination a, .pagination span { padding: 8px 14px; border:1px solid var(--border); border-radius: 8px; font-weight:700; background:#fff; }
.pagination .current { background: var(--primary); color:#fff; border-color: var(--primary); }
.empty-state { text-align:center; padding: 70px 20px; }
.empty-state .big-icon { font-size: 3rem; color: var(--gold-soft); margin-bottom: 12px; }

/* ============ Account area & shared admin-ish bits ============ */
.account-layout { display:grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px) { .account-layout { grid-template-columns: 1fr; } }
.account-nav { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; position: sticky; top: 90px; }
.account-nav a { display:flex; align-items:center; gap:10px; padding: 13px 18px; font-weight: 700; font-size: .92rem; border-bottom: 1px solid var(--border); color: var(--primary); }
.account-nav a:last-child { border-bottom: 0; }
.account-nav a.active, .account-nav a:hover { background: var(--secondary-soft); color: var(--gold); }
.kpi { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align:center; }
.kpi-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.form-grid-full { grid-column: 1 / -1; }
.timeline-item { position:relative; padding: 0 0 22px 26px; border-inline-start: 2px dashed var(--gold-soft); margin-inline-start: 8px; }
html[dir="rtl"] .timeline-item { padding: 0 26px 22px 0; }
.timeline-item::before { content:""; position:absolute; inset-inline-start:-7px; top: 4px; width:12px; height:12px; border-radius:50%; background: var(--gold); }
.timeline-item.done::before { background: var(--success); }

/* ============ Home refresh: premium polish without changing sections ============ */
body {
  background:
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 320px, #fff 860px, var(--bg) 100%);
}

.site-header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,220,200,.72);
  box-shadow: 0 10px 30px rgba(74,51,36,.08);
}
.header-main { padding: 12px 0; }
.logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background .18s ease, transform .18s ease;
}
.logo:hover { background: var(--secondary-soft); transform: translateY(-1px); }
.logo img { height: 50px; }
.header-search input {
  background: #fff;
  border-color: rgba(192,138,46,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 22px rgba(74,51,36,.06);
}
.header-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(192,138,46,.14), 0 10px 26px rgba(74,51,36,.08);
}
.header-search button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background .18s ease, color .18s ease;
}
.header-search button:hover { background: var(--gold); color: #fff; }
.hicon {
  border: 1px solid transparent;
  background: rgba(255,255,255,.55);
}
.hicon:hover {
  background: #fff7e7;
  border-color: rgba(192,138,46,.26);
  box-shadow: 0 8px 20px rgba(74,51,36,.08);
}
.lang-switch {
  background: #fff;
  border-color: rgba(192,138,46,.34);
  box-shadow: 0 6px 16px rgba(74,51,36,.05);
}

.site-nav {
  background: rgba(255,255,255,.9);
  border-top: 1px solid rgba(232,220,200,.68);
}
.site-nav > .container > ul {
  gap: 8px;
  padding: 8px 0;
}
.site-nav > .container > ul > li > a {
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.site-nav > .container > ul > li > a::after { display: none; }
.site-nav > .container > ul > li > a:hover,
.site-nav > .container > ul > li > a.active {
  background: #fff4dc;
  color: var(--gold-dark);
  box-shadow: inset 0 0 0 1px rgba(192,138,46,.2);
  transform: translateY(-1px);
}
.site-nav a.nav-hi {
  padding: 9px 17px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(74,51,36,.08);
}
.site-nav a.nav-hi.nav-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2f2115;
  box-shadow: 0 10px 24px rgba(192,138,46,.24);
}
.site-nav a.nav-hi:hover,
.site-nav a.nav-hi.nav-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.site-nav .sub-menu {
  padding: 10px;
  border-color: rgba(192,138,46,.22);
  box-shadow: 0 18px 42px rgba(74,51,36,.16);
}
.site-nav .sub-menu a {
  padding: 11px 14px;
  border-radius: 10px;
}

.hero-banner {
  min-height: min(680px, calc(100vh - 126px));
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(232,220,200,.8);
}
.hero-banner .container {
  width: 100%;
}
html[dir="rtl"] .hero-banner .hero-bg img {
  transform: scaleX(-1);
}
.hero-banner .hero-content {
  margin-inline: 0 auto;
  text-align: start;
}
.hero-banner::before {
  background:
    linear-gradient(100deg, rgba(38,25,18,.96) 0%, rgba(74,51,36,.88) 44%, rgba(74,51,36,.38) 76%, rgba(74,51,36,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.24));
}
html[dir="rtl"] .hero-banner::before {
  background:
    linear-gradient(260deg, rgba(38,25,18,.96) 0%, rgba(74,51,36,.88) 44%, rgba(74,51,36,.38) 76%, rgba(74,51,36,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.24));
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  height: 78px;
  background: linear-gradient(180deg, transparent, rgba(251,247,240,.96));
  pointer-events: none;
}
.hero-content {
  padding: 94px 0 116px;
  max-width: 680px;
}
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(224,180,95,.42);
  color: #ffe0a1;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(2.15rem, 5vw, 4.3rem);
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hero-content p {
  color: #fff5df;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 580px;
}
.hero-content .stitch {
  width: 104px;
  border-top-color: #ffd788;
}
.hero-ctas .btn {
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.hero-ctas .btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2f2115;
}
.hero-ctas .btn-light {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.4);
}

.section {
  position: relative;
}
.section-head {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(232,220,200,.7);
}
.section-head h2,
.text-center h2 {
  text-wrap: balance;
}
.section-head .btn,
.text-center + .btn {
  box-shadow: 0 8px 20px rgba(74,51,36,.06);
}

.visit-hero {
  background:
    linear-gradient(135deg, rgba(192,138,46,.98), rgba(156,108,28,.98)),
    var(--gold);
  box-shadow: 0 22px 54px rgba(156,108,28,.24);
  border: 1px solid rgba(255,255,255,.36);
}
.visit-hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255,255,255,.24);
  border-radius: 12px;
  pointer-events: none;
}
.visit-points li {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 7px 12px;
}

.steps {
  gap: 16px;
}
.step-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-inline-start: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.step-item:hover {
  transform: translateY(-3px);
  border-color: rgba(192,138,46,.5);
  box-shadow: var(--shadow-lg);
}
.step-item::before {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-soft);
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.card,
.kandura-card,
.quote-card,
.rev-card {
  border-color: rgba(232,220,200,.86);
  box-shadow: 0 10px 28px rgba(74,51,36,.07);
}
.card,
.kandura-card {
  background: linear-gradient(180deg, #fff, #fffdf8);
}
.card:hover,
.kandura-card:hover,
.quote-card:hover,
.rev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(74,51,36,.14);
}
.card-img,
.kandura-card .k-img {
  background: linear-gradient(135deg, var(--secondary-soft), #fff);
}
.card-img::after,
.kandura-card .k-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(51,35,26,.18));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.card-img,
.kandura-card .k-img { position: relative; }
.card:hover .card-img::after,
.kandura-card:hover .k-img::after { opacity: 1; }
.card-body,
.kandura-card .k-body {
  padding: 18px;
}
.card-body h3,
.kandura-card h3 {
  color: var(--primary-dark);
}
.price-row span:first-child,
.kandura-card .k-price {
  color: var(--gold-dark);
}
.kandura-card .btn-block {
  margin-top: 4px;
}
.kandura-card .k-flag {
  background: rgba(255,255,255,.92);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.quote-card,
.rev-card {
  background: linear-gradient(180deg, #fff, #fffaf1);
}
.rev-dots button.on {
  background: var(--primary);
}

.section[style*="background:#fff"] .grid-4 .text-center {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.section[style*="background:#fff"] .grid-4 .text-center:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.drawer {
  background: linear-gradient(180deg, #fff, #fff8ea);
}
.drawer-head,
.drawer-foot {
  background: rgba(255,255,255,.7);
}
.drawer nav a {
  margin: 4px 12px;
  border: 0;
  border-radius: 12px;
}
.drawer nav a:hover {
  background: #fff0d2;
  color: var(--gold-dark);
}
.mobile-nav {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -10px 28px rgba(74,51,36,.1);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold-dark);
  background: #fff4dc;
}

@media (max-width: 900px) {
  .site-header { box-shadow: 0 8px 24px rgba(74,51,36,.08); }
  .logo img { height: 42px; }
  .hero-banner { min-height: auto; }
  .hero-content { padding: 58px 0 78px; }
  .section-head {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    background: linear-gradient(180deg, #fffaf1 0%, var(--bg) 420px, #fff 960px);
  }
  .container {
    padding-inline: 16px;
  }
  .hero-banner {
    min-height: calc(50svh - 34px);
    align-items: center;
  }
  .hero-banner::before {
    background:
      linear-gradient(180deg, rgba(38,25,18,.9) 0%, rgba(74,51,36,.84) 58%, rgba(74,51,36,.64) 100%),
      linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3));
  }
  html[dir="rtl"] .hero-banner::before {
    background:
      linear-gradient(180deg, rgba(38,25,18,.9) 0%, rgba(74,51,36,.84) 58%, rgba(74,51,36,.64) 100%),
      linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3));
  }
  .hero-banner .hero-content {
    margin-inline: auto;
    text-align: center;
  }
  .hero-content {
    padding: 26px 0 38px;
    max-width: 100%;
  }
  .hero-content h1 { font-size: 1.72rem; }
  .hero-content p {
    font-size: .92rem;
    margin-bottom: 16px;
    margin-inline: auto;
  }
  .hero-content .stitch {
    margin-inline: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-ctas .btn {
    width: 100%;
    flex: 1 1 100%;
  }
  .section { padding: 46px 0; }
  .section-head {
    flex-direction: column;
    align-items: stretch;
  }
  .section-head .btn { align-self: flex-start; }
  .visit-hero::before { inset: 8px; }
  .visit-points li {
    justify-content: center;
    width: 100%;
  }
  .grid-4,
  .grid-3,
  .grid-6 {
    gap: 14px;
  }
  .card-body,
  .kandura-card .k-body {
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 1.56rem;
  }
  .hero-content p {
    font-size: .88rem;
  }
  .hero-content .eyebrow {
    white-space: normal;
    justify-content: center;
  }
}
