:root {
  --bg: #080a08;
  --surface: #11130f;
  --surface-2: #171911;
  --gold: #d8b35c;
  --gold-soft: #f1d58c;
  --text: #f7f1df;
  --muted: #aea894;
  --line: rgba(216, 179, 92, 0.25);
  --green: #1f6b45;
  --danger: #c95e4d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Noto Sans Arabic", sans-serif;
  line-height: 1.6;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.sandbox-front-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 7px 14px;
  color: #cbd7ff;
  background: #14204a;
  border-bottom: 1px solid #2d4388;
  font-size: 12px;
  text-align: center;
  line-height: 1.45;
  white-space: normal;
}
.sandbox-front-banner a, .sandbox-admin-link { color: #9cc1ff; font-weight: 800; }

.top-strip {
  padding: 8px 16px;
  text-align: center;
  color: #17130a;
  background: linear-gradient(90deg, #b98b37, #f2d58a, #b98b37);
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(8, 10, 8, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { color: var(--gold-soft); font-size: 23px; font-weight: 900; letter-spacing: 0.18em; }
.market-pill, .language-pill, .language-switcher {
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gold-soft);
  background: #10120e;
  font-size: 12px;
}
.market-pill { justify-self: start; }
.language-pill, .language-switcher { justify-self: end; }
.language-switcher { display: flex; gap: 3px; padding: 3px; }
.language-switcher button {
  min-height: 30px;
  padding: 4px 9px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.language-switcher button.active { color: #17130a; background: var(--gold); font-weight: 900; }
.market-switcher { position: relative; padding: 0; overflow: hidden; }
.market-switcher select {
  min-height: 36px;
  padding: 7px 34px 7px 12px;
  border: 0;
  outline: 0;
  color: var(--gold-soft);
  background: #10120e;
  cursor: pointer;
}
.market-switcher select:focus-visible { box-shadow: inset 0 0 0 2px var(--gold); }

.page-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 38px;
  align-items: start;
  padding: 48px 0 58px;
}
.hero.no-media { grid-template-columns: minmax(0, 760px); justify-content: center; }
.hero.no-media .product-info { width: 100%; }
.gallery { position: static; width: min(54vw, 620px); margin-inline: auto; }
.main-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0d0f0c;
  box-shadow: 0 22px 80px rgba(0,0,0,.4);
}
.main-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--surface); }
.image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  padding: 28px;
  border: 2px dashed rgba(216, 179, 92, .42);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: radial-gradient(circle at center, rgba(216,179,92,.08), transparent 58%), var(--surface);
}
.image-placeholder span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.image-placeholder strong { margin-top: 14px; color: var(--text); font-size: clamp(22px, 4vw, 34px); }
.image-placeholder small { margin-top: 6px; font-size: 14px; }
.image-count {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: var(--gold-soft);
  font-size: 12px;
}
.thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 12px; }
.thumb {
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #111;
  cursor: pointer;
}
.thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; opacity: .64; }
.thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(216,179,92,.16); }
.thumb.active img, .thumb:hover img { opacity: 1; }

@keyframes media-shimmer {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}
.media-skeleton,
.media-pending .main-image {
  background: linear-gradient(105deg, #11130f 20%, #202218 42%, #11130f 64%);
  background-size: 220% 100%;
  animation: media-shimmer 1.25s linear infinite;
}
.media-pending [data-main-image],
.media-pending [data-thumbnails] img,
.media-pending [data-detail-grid] img,
.media-pending [data-feedback-grid] img { opacity: 0; }
.media-pending .image-count { visibility: hidden; }
.thumb-placeholder { display: block; aspect-ratio: 1; border: 1px solid transparent; border-radius: 10px; }
.detail-placeholder { display: block; min-height: 420px; border: 1px solid var(--line); border-radius: 18px; }
.review-placeholder {
  flex: 0 0 min(78vw, 480px);
  width: min(78vw, 480px);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.rating { color: var(--gold-soft); font-size: 14px; }
.rating b { margin-inline: 8px; color: var(--text); }
.product-info h1 { margin: 15px 0 10px; font-size: clamp(34px, 4vw, 58px); line-height: 1.08; letter-spacing: -.03em; }
.lede { color: var(--muted); font-size: 17px; }
.price-line { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 6px; }
.price { color: var(--gold-soft); font-size: 34px; font-weight: 900; }
.compare-price { color: #7f7c70; text-decoration: line-through; }
.trust-row { margin: 18px 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: var(--surface); }
.watching { color: #edb47a; font-size: 13px; }

.package-heading { margin: 26px 0 10px; font-size: 14px; color: var(--gold-soft); letter-spacing: .08em; }
.hero-package-choice { display: grid; gap: 6px; margin-bottom: 12px; }
.hero-package-choice label { color: var(--muted); font-size: 12px; }
.hero-package-choice select { width: 100%; min-height: 50px; padding: 10px 14px; border: 1px solid var(--gold); border-radius: 12px; outline: none; color: var(--text); background: #0c0e0b; font-weight: 800; cursor: pointer; }
.hero-package-choice select:focus { box-shadow: 0 0 0 3px rgba(216,179,92,.14); }
.packages { display: grid; grid-template-columns: 1fr; gap: 12px; }
.package-card {
  position: relative;
  padding: 15px;
  text-align: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid #292c24;
  border-radius: 16px;
  cursor: pointer;
}
.package-image { width: 100%; aspect-ratio: 1.45 / 1; margin-bottom: 12px; border-radius: 11px; object-fit: cover; background: #0b0d0a; }
.package-card.selected { border-color: var(--gold); background: linear-gradient(145deg, #19180f, #11130f); box-shadow: 0 0 0 2px rgba(216,179,92,.12); }
.package-card span, .package-card small { display: block; color: var(--muted); }
.package-card .package-image-missing { display: none; }
.package-card strong { display: block; margin: 4px 0; color: var(--gold-soft); font-size: 22px; }
.badge { position: absolute; top: -10px; inset-inline-end: 12px; padding: 3px 8px; border-radius: 999px; background: var(--gold); color: #15130b !important; font-size: 10px; font-weight: 900; }

.cta-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
.primary, .secondary {
  min-height: 52px;
  border-radius: 13px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}
.primary { background: linear-gradient(135deg, #f0d183, #bd8b36); color: #17130a; }
.primary:disabled { cursor: not-allowed; filter: grayscale(1); opacity: .55; }
.secondary { border: 1px solid #2d8058; background: #153d2a; color: #e7fff1; text-decoration: none; display: grid; place-items: center; }

.section { padding: 62px 0; border-top: 1px solid rgba(255,255,255,.06); }
.section-title { max-width: 680px; margin: 0 auto 30px; text-align: center; }
.section-title span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.section-title h2 { margin: 8px 0; font-size: clamp(28px, 4vw, 44px); }
.section-title p { color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.detail-grid img { width: 100%; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.reviews-carousel { position: relative; }
.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: -10px 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.reviews-controls button {
  width: 42px;
  height: 42px;
  padding: 0 0 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  background: var(--surface);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.reviews-controls button:hover { border-color: var(--gold); background: #211d10; }
.reviews-controls button:disabled { cursor: default; opacity: .32; }
.reviews {
  direction: ltr;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px max(4px, calc((100% - 1030px) / 2)) 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews::-webkit-scrollbar { display: none; }
.reviews.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.reviews img {
  flex: 0 0 min(78vw, 480px);
  width: min(78vw, 480px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  scroll-snap-align: start;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
  pointer-events: none;
}
.reviews-dots { display: flex; justify-content: center; gap: 7px; min-height: 8px; margin-top: 3px; }
.reviews-dots i { width: 7px; height: 7px; border-radius: 999px; background: #4b493f; transition: width .2s ease, background .2s ease; }
.reviews-dots i.active { width: 24px; background: var(--gold); }

.order-wrap { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.order-copy { position: static; }
.order-copy h2 { font-size: 42px; margin: 0 0 12px; }
.order-copy p, .order-copy li { color: var(--muted); }
.order-form { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.order-package-choice { display: grid; gap: 7px; margin-bottom: 14px; }
.order-package-choice label { color: var(--gold-soft); font-size: 14px; font-weight: 800; }
.order-package-choice select { width: 100%; min-height: 54px; padding: 11px 14px; border: 1px solid var(--gold); border-radius: 11px; outline: none; color: var(--text); background: #0c0e0b; font-weight: 800; cursor: pointer; }
.order-package-choice select:focus { box-shadow: 0 0 0 3px rgba(216,179,92,.14); }
.order-package-preview { display: grid; grid-template-columns: 92px 1fr; gap: 13px; align-items: center; margin-bottom: 18px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #0c0e0b; }
.order-package-preview img { width: 92px; aspect-ratio: 1; border-radius: 10px; object-fit: cover; background: #171911; }
.order-package-image-missing { display: grid; place-items: center; width: 92px; aspect-ratio: 1; padding: 8px; border: 1px dashed #4b4d40; border-radius: 10px; color: #8f8b7d; background: #171911; font-size: 11px; text-align: center; }
.package-summary { padding: 13px 15px; border-radius: 12px; background: #1a190f; color: var(--gold-soft); font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d8d3c5; font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #34382e;
  border-radius: 10px;
  outline: none;
  background: #0c0e0b;
  color: var(--text);
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,179,92,.1); }
.submit-order { width: 100%; margin-top: 16px; min-height: 54px; }
.form-note { margin: 10px 0 0; color: #8b877a; font-size: 12px; }
.form-result { display: none; margin-top: 14px; padding: 14px; border-radius: 12px; background: #123522; color: #e6fff0; }
.form-result.visible { display: block; }
.form-result.error { background: #431d1a; color: #ffd8d1; }
.form-result a { color: #ffdf89; font-weight: 800; }
.order-number { direction: ltr; display: inline-block; color: #fff; letter-spacing: .04em; }

.site-footer { padding: 38px 0 92px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; }
.site-footer strong { color: var(--gold-soft); letter-spacing: .16em; }
.local-badge { display: inline-block; margin-top: 10px; padding: 5px 10px; border-radius: 999px; background: #2b1f0d; color: #efc66d; font-size: 11px; }
.floating-whatsapp { position: fixed; inset-inline-end: 18px; bottom: 18px; z-index: 25; width: 64px; height: 64px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #25d366; color: white; text-decoration: none; box-shadow: 0 14px 34px rgba(0,0,0,.45); transition: transform .2s ease, box-shadow .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 40px rgba(0,0,0,.52); }
.floating-whatsapp:focus-visible { outline: 3px solid #fff1b0; outline-offset: 3px; }
.floating-whatsapp svg { width: 38px; height: 38px; display: block; fill: currentColor; }
.mobile-bar { display: none; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin: 14px 0; }
.footer-links a { color: var(--gold-soft); text-underline-offset: 3px; }
.product-disclaimer { max-width: 760px; margin: 0 auto 12px; font-size: 12px; }
.cookie-consent {
  position: fixed; inset: auto 18px 18px; z-index: 90; width: min(560px, calc(100% - 36px)); margin-inline: auto;
  padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(17,19,15,.98); color: var(--text);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}
.cookie-consent p { margin: 0 0 12px; color: var(--muted); }
.cookie-consent div { display: flex; gap: 9px; }
.cookie-consent button { min-height: 42px; padding: 8px 18px; border: 1px solid var(--line); border-radius: 10px; color: var(--text); background: #24261f; cursor: pointer; }
.cookie-consent .primary { color: #17130a; background: var(--gold); }
.legal-page { width: min(760px, calc(100% - 32px)); min-height: 100vh; margin: 0 auto; padding: 56px 0; }
.legal-page > a { color: var(--gold-soft); }
.legal-page h1 { margin: 32px 0 18px; font-size: clamp(30px, 5vw, 48px); }
.legal-page p { color: var(--muted); white-space: pre-line; }
.legal-page hr { margin: 32px 0; border: 0; border-top: 1px solid var(--line); }

.visual-editor-toolbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 9px 18px;
  color: #eef7f1;
  background: #173d2a;
  border-bottom: 1px solid #47725b;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  font-family: Arial, sans-serif;
}
.visual-editor-toolbar strong { color: #ffe09a; font-size: 16px; }
.visual-editor-toolbar span { color: #c6ddd0; font-size: 12px; }
.visual-editor-toolbar i { margin-left: auto; padding: 5px 9px; border-radius: 999px; color: #bdf3cf; background: #245e40; font-size: 11px; font-style: normal; }
.visual-editor-toolbar a { padding: 8px 11px; border: 1px solid #60856f; border-radius: 8px; color: #fff; text-decoration: none; font-size: 12px; font-weight: 800; }
.visual-editor-mode { padding-top: 58px; }
.visual-editor-mode [data-edit-field] { position: relative; outline: 1px dashed rgba(255,218,126,.55); outline-offset: 4px; cursor: text; }
.visual-editor-mode [data-edit-field]:hover { outline: 2px solid #ffcb59; background: rgba(255,203,89,.06); }
.visual-editor-mode [data-edit-field]:focus { outline: 3px solid #57a9ff; background: rgba(87,169,255,.08); }
.visual-editor-mode [data-editor-image] { cursor: grab; transition: box-shadow .15s ease, transform .15s ease; pointer-events: auto; touch-action: none; }
.visual-editor-mode [data-editor-image]:hover { box-shadow: 0 0 0 4px #ffca54 !important; transform: translateY(-2px); }
.visual-editor-mode [data-editor-image].editor-selected { box-shadow: 0 0 0 5px #55aaff !important; }
.visual-editor-mode [data-section] { position: relative; outline: 1px dashed rgba(97,184,132,.48); outline-offset: -2px; }
.editor-section-handle {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border: 1px solid #6d977e;
  border-radius: 9px;
  color: #effcf3;
  background: rgba(20,64,42,.94);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  cursor: grab;
  direction: ltr;
  font: 11px/1.2 Arial,sans-serif;
}
.editor-section-handle span { color: #bcd4c4; }
.editor-section-handle button { width: 27px; height: 27px; padding: 0; border: 1px solid #719782; border-radius: 6px; color: #fff; background: #255d40; cursor: pointer; }
.visual-editor-inspector {
  position: fixed;
  top: 76px;
  left: 18px;
  z-index: 900;
  width: min(320px,calc(100vw - 36px));
  max-height: calc(100vh - 96px);
  overflow: auto;
  padding: 17px;
  border: 1px solid #b9cbc0;
  border-radius: 14px;
  color: #1d2d24;
  background: #f8fbf9;
  box-shadow: 0 20px 55px rgba(0,0,0,.3);
  font-family: Arial,sans-serif;
  transform: translateX(calc(-100% - 28px));
  transition: transform .2s ease;
}
.visual-editor-inspector.open { transform: translateX(0); }
.editor-inspector-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.editor-inspector-head h3 { margin: 3px 0 0; font-size: 19px; }
.editor-inspector-head small { color: #597467; }
.editor-inspector-head button { width: 32px; height: 32px; border: 1px solid #ccd8d1; border-radius: 50%; background: #fff; cursor: pointer; }
.editor-inspector-preview { width: 100%; max-height: 260px; object-fit: contain; border-radius: 9px; background: #15231b; }
.visual-editor-inspector p { color: #5e6f65; font-size: 12px; line-height: 1.6; }
.editor-inspector-actions, .editor-inspector-form { display: grid; gap: 9px; }
.editor-inspector-actions button, .editor-inspector-actions a, .editor-inspector-form button { min-height: 40px; padding: 9px 12px; border: 1px solid #b8c9bf; border-radius: 8px; color: #214433; background: #fff; text-align: center; text-decoration: none; font: 800 12px Arial,sans-serif; cursor: pointer; }
.editor-inspector-actions .primary, .editor-inspector-form .primary { border-color: #2c6c49; color: #fff; background: #2c6c49; }
.editor-inspector-actions .danger { border-color: #a8392b; color: #fff; background: #a8392b; }
.editor-inspector-form label { display: grid; gap: 5px; color: #52675b; font-size: 11px; font-weight: 800; }
.editor-inspector-form input { min-height: 40px; padding: 8px 10px; border: 1px solid #c4d1ca; border-radius: 8px; background: #fff; }
.editor-empty { color: #597064; text-align: center; }
.visual-editor-toast { position: fixed; left: 50%; bottom: 24px; z-index: 1100; padding: 10px 16px; border-radius: 999px; color: #fff; background: #247047; box-shadow: 0 8px 30px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translate(-50%,20px); transition: .2s ease; font: 800 12px Arial,sans-serif; }
.visual-editor-toast.show { opacity: 1; transform: translate(-50%,0); }

body.mobile-preview {
  width: min(390px, 100%);
  min-height: 100vh;
  margin-inline: auto;
  overflow-x: hidden;
  box-shadow: 0 0 0 1px rgba(216,179,92,.18), 0 0 80px rgba(0,0,0,.55);
}
.mobile-preview .site-header { grid-template-columns: auto 1fr auto; min-height: 62px; padding-inline: 10px; }
.mobile-preview .market-switcher select { max-width: 138px; min-height: 32px; padding: 5px 25px 5px 7px; font-size: 10px; }
.mobile-preview .language-switcher button { padding-inline: 6px; font-size: 10px; }
.mobile-preview .page-shell { width: calc(100% - 24px); }
.mobile-preview .hero { grid-template-columns: 1fr; gap: 22px; padding: 18px 0 42px; }
.mobile-preview .gallery { width: 100%; }
.mobile-preview .main-image-wrap, .mobile-preview .main-image, .mobile-preview .image-placeholder { border-radius: 14px; }
.mobile-preview .product-info h1 { font-size: 30px; }
.mobile-preview .lede { font-size: 15px; }
.mobile-preview .section { padding: 42px 0; }
.mobile-preview .order-form { padding: 17px; }
.mobile-preview .mobile-bar { left: 50%; right: auto; display: grid; width: min(390px, 100vw); grid-template-columns: 1fr 1fr; transform: translateX(-50%); }
.mobile-preview .floating-whatsapp { display: none; }
.mobile-preview .sandbox-front-banner { min-height: 42px; padding-inline: 10px; }
.mobile-preview .cookie-consent { bottom: 78px; }

@media (max-width: 820px) {
  .visual-editor-toolbar { gap: 7px; padding-inline: 10px; }
  .visual-editor-toolbar span, .visual-editor-toolbar i { display: none; }
  .visual-editor-toolbar strong { margin-right: auto; font-size: 13px; }
  .visual-editor-toolbar a { padding: 7px 8px; font-size: 10px; }
  .editor-section-handle span { display: none; }
  .visual-editor-inspector { inset: auto 8px 72px; width: auto; max-height: 55vh; transform: translateY(calc(100% + 84px)); }
  .visual-editor-inspector.open { transform: translateY(0); }
  .sandbox-front-banner { flex-wrap: wrap; gap: 5px 10px; }
  .site-header { grid-template-columns: auto 1fr auto; padding: 0 12px; min-height: 62px; }
  .brand { font-size: 18px; text-align: center; }
  .market-pill, .language-pill { padding: 6px 8px; font-size: 10px; }
  .market-switcher { padding: 0; }
  .market-switcher select { max-width: 150px; min-height: 32px; padding: 5px 27px 5px 7px; font-size: 10px; }
  .page-shell { width: min(100% - 24px, 620px); }
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 24px; }
  .gallery, .order-copy { position: static; }
  .gallery { width: min(92vw, 420px); margin-inline: auto; }
  .main-image-wrap, .main-image, .image-placeholder { border-radius: 14px; }
  .image-placeholder { min-height: 280px; }
  .product-info h1 { font-size: 36px; }
  .packages, .cta-row, .detail-grid, .order-wrap { grid-template-columns: 1fr; }
  .reviews { gap: 12px; padding-inline: 4px 12%; }
  .reviews img { flex-basis: 86%; width: 86%; }
  .section { padding: 46px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .floating-whatsapp { display: none; }
  .mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 24; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 8px; background: rgba(8,10,8,.96); border-top: 1px solid var(--line); }
  .mobile-bar button, .mobile-bar a { min-height: 52px; border-radius: 9px; }
  .cookie-consent { bottom: 78px; }
}

@media (max-width: 470px) {
  .gallery { width: 100%; }
  .hero { gap: 22px; padding-top: 18px; }
  .product-info h1 { font-size: 30px; }
  .lede { font-size: 15px; }
  .package-card { padding: 13px; }
  .language-switcher button { padding-inline: 7px; font-size: 10px; }
  .top-strip { font-size: 11px; }
  .brand { letter-spacing: .1em; }
  .reviews-controls span { font-size: 12px; }
  .order-form { padding: 17px; }
}
