/* ============================================
   GHAYT STORE — design tokens
   ============================================ */
:root {
  --navy: #101A33;
  --navy-2: #1B2A4A;
  --paper: #F3F2ED;
  --white: #FFFFFF;
  --gold: #A9832E;
  --gold-soft: #C7A354;
  --gold-pale: #F1E7CF;
  --bordeaux: #5E2436;
  --slate: #3B4A5E;
  --ink: #101A33;
  --ink-70: rgba(16, 26, 51, 0.72);
  --ink-45: rgba(16, 26, 51, 0.45);
  --line: rgba(16, 26, 51, 0.14);
  --line-on-navy: rgba(255, 255, 255, 0.16);
  --wa: #128C7E;
  --wa-dark: #0E7566;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1160px;
}

/* ============================================
   Reset / base
   ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  background: none !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

h1, h2 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 1.2rem + 4.5vw, 4.25rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.6rem); line-height: 1.1; }

p { color: var(--ink-70); max-width: 62ch; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--navy-2); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--navy);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-soft); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 242, 237, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 560;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-45);
  margin-top: 3px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lang-switch {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-switch:hover, .lang-switch:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: 76px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 0.5rem 24px 1.5rem;
  display: none;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  padding: 0.85rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 2.25rem;
    background: none;
    border: none;
    padding: 0;
  }
  .site-nav a { padding: 0; border: none; font-size: 0.95rem; }
  .site-nav a:hover { color: var(--gold); }
}

/* ============================================
   Hero
   ============================================ */
.hero { padding: 3rem 0 4rem; overflow: hidden; }
.hero-inner {
  display: grid;
  gap: 2.5rem;
}
.hero-copy { max-width: 40ch; }
.hero-sub { margin-top: 1.1rem; font-size: 1.05rem; }
.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-price { display: flex; align-items: baseline; gap: 0.6rem; }
.price-now { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); font-weight: 560; }
.price-was { font-size: 0.9rem; color: var(--ink-45); text-decoration: line-through; }

.hero-media { border-radius: 4px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise 0.7s ease both; }
  .hero-media { animation: rise 0.7s 0.15s ease both; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 800px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .hero-copy { max-width: 34ch; }
}

/* ============================================
   Value strip
   ============================================ */
.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 0;
}
.value-grid {
  display: grid;
  gap: 2rem;
}
.value-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.value-item p { margin-top: 0.5rem; font-size: 0.95rem; }

@media (min-width: 800px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-item { padding-left: 1.75rem; border-left: 1px solid var(--line); }
  .value-item:first-child { padding-left: 0; border-left: none; }
}

/* ============================================
   Shop / product grid
   ============================================ */
.shop { padding: 5rem 0; }
.section-lede { margin-top: 0.75rem; font-size: 1.05rem; }

.product-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.product-card__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper);
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.product-card__image--crop-top img { object-position: 50% 12%; }
.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
  transform: scale(1.04);
}

.product-card__body { padding: 1.25rem 1.25rem 1.5rem; }
.product-card__body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}
.product-price { margin-top: 0.35rem; color: var(--ink-70); font-size: 0.95rem; }
.product-card__body .btn { margin-top: 1rem; width: 100%; }

.compat-note {
  margin-top: 2rem;
  font-size: 0.92rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.compat-note a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* ============================================
   Bundle band
   ============================================ */
.bundle { background: var(--navy); padding: 4rem 0; }
.bundle-inner { max-width: 46ch; }
.bundle h2 { color: var(--white); }
.bundle p { color: rgba(255,255,255,0.75); margin-top: 0.85rem; font-size: 1.05rem; }
.bundle .btn { margin-top: 1.75rem; }

/* ============================================
   Story
   ============================================ */
.story { padding: 5rem 0; }
.story-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.story-media {
  display: flex;
  justify-content: center;
}
.story-crest {
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.92;
}
.story-copy p { margin-top: 1rem; font-size: 1.05rem; }

@media (min-width: 800px) {
  .story-inner { grid-template-columns: 220px 1fr; }
  .story-crest { width: 190px; height: 190px; }
}

/* ============================================
   Trust strip
   ============================================ */
.trust { padding: 2.5rem 0 3.5rem; }
.trust-grid {
  display: grid;
  gap: 0.9rem;
  text-align: center;
}
.trust-grid p {
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--ink-45);
  font-weight: 500;
}
@media (min-width: 800px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--navy); padding: 3rem 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

@media (min-width: 800px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-copy {
    flex-basis: 100%;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-on-navy);
  }
}

/* ============================================
   Breadcrumbs
   ============================================ */
.crumbs {
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.crumbs a:hover { color: var(--navy); }

/* ============================================
   Product page (PDP)
   ============================================ */
.pdp {
  display: grid;
  gap: 2.5rem;
  padding: 1.75rem 0 4.5rem;
}
@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: start;
    padding-top: 2.25rem;
  }
  .pdp-gallery { position: sticky; top: 100px; }
}

.pdp-image {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pdp-image img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.pdp-info h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.pdp-sub { margin-top: 0.85rem; font-size: 1.02rem; }

.pdp-price {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pdp-price .price-now { font-size: 1.7rem; }
.pdp-price .price-was { font-size: 1rem; }
.pdp-save {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.pdp-colors { margin-top: 1.6rem; }
.pdp-colors-2 { margin-top: 1.1rem; }
.pdp-label { font-size: 0.9rem; }
.pdp-label strong { color: var(--navy); font-weight: 600; }
.swatches { display: flex; gap: 0.8rem; margin-top: 0.7rem; }
.swatch {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sw);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35), 0 0 0 1px var(--line);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.swatch:hover { transform: scale(1.06); }
.swatch.is-active {
  box-shadow: inset 0 0 0 2px var(--paper), 0 0 0 2px var(--gold);
}

.pdp-offers {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 560px) {
  .pdp-offers { grid-template-columns: 1fr 1fr; }
}
.offer {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.offer input { position: absolute; opacity: 0; pointer-events: none; }
.offer.is-active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.offer-name { display: block; font-weight: 600; color: var(--navy); }
.offer-price { display: block; margin-top: 0.3rem; font-size: 0.95rem; color: var(--ink-70); }
.offer-price s { color: var(--ink-45); font-size: 0.85rem; margin-inline-start: 0.35rem; }
.offer-badge {
  position: absolute;
  top: -11px;
  inset-inline-end: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
}
.offer-note { display: block; margin-top: 0.4rem; font-size: 0.78rem; color: var(--ink-45); }

.btn-buy {
  width: 100%;
  margin-top: 1.6rem;
  padding: 1.05rem 1.6rem;
  font-size: 1rem;
}
.btn-wa {
  width: 100%;
  margin-top: 0.65rem;
  background: var(--wa);
  color: var(--white);
  gap: 0.55rem;
}
.btn-wa:hover, .btn-wa:focus-visible { background: var(--wa-dark); }
.btn-wa svg { flex-shrink: 0; }

.pdp-assurance { margin-top: 1.5rem; display: grid; gap: 0.55rem; }
.pdp-assurance li {
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-70);
  padding-inline-start: 1.5rem;
}
.pdp-assurance li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   Compatibility band
   ============================================ */
.compat { background: var(--gold-pale); padding: 4.5rem 0; }
.compat-inner {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 800px) {
  .compat-inner { grid-template-columns: 300px 1fr; gap: 3.5rem; }
}
.compat-media { display: flex; justify-content: center; }
.compat-media img {
  width: 100%;
  max-width: 250px;
  background: var(--white);
  border: 1px solid rgba(16, 26, 51, 0.12);
  border-radius: 6px;
}
.compat-copy p { margin-top: 1rem; font-size: 1.02rem; }
.compat-chips {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.compat-chips li {
  background: var(--white);
  border: 1px solid rgba(16, 26, 51, 0.12);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}
.compat-more { margin-top: 1.2rem; font-size: 0.92rem; }
.compat-more a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* ============================================
   Specs
   ============================================ */
.specs { padding: 5rem 0 4rem; }
.specs-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
}
.spec-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.spec-item p { margin-top: 0.5rem; font-size: 0.95rem; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 1rem 0 5rem; }
.faq-list {
  margin-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding-bottom: 1.25rem; font-size: 0.95rem; }

/* ============================================
   Reviews
   ============================================ */
.reviews { padding: 1rem 0 5rem; }
.reviews-grid {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 800px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.review-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.review-body { padding: 1.25rem 1.25rem 1.4rem; }
.review-stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }
.review-text { margin-top: 0.6rem; font-size: 0.95rem; color: var(--ink-70); }
.review-who { margin-top: 0.9rem; font-weight: 600; font-size: 0.88rem; color: var(--navy); }
html[lang="ar"] .review-text[dir="ltr"] { text-align: left; }

/* ============================================
   Order form
   ============================================ */
.order-form {
  margin-top: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.4rem 1.25rem;
}
.order-form-title { font-weight: 600; color: var(--navy); font-size: 1rem; }
.form-field { margin-top: 0.95rem; }
.form-field label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.form-field textarea { resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-45); }
.form-field.is-error input,
.form-field.is-error textarea { border-color: #B3403A; background: #FBF3F2; }
.form-error { margin-top: 0.9rem; font-size: 0.85rem; font-weight: 600; color: #B3403A; }
.order-submit {
  width: 100%;
  margin-top: 1.2rem;
  padding: 1.05rem 1rem;
  font-size: 1rem;
  white-space: normal;
  line-height: 1.3;
}
.order-hint { margin-top: 0.8rem; font-size: 0.85rem; font-weight: 600; color: var(--gold); }
.order-note { margin-top: 0.85rem; font-size: 0.8rem; color: var(--ink-45); }
.order-success {
  margin-top: 1.6rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1.4rem 1.25rem;
}
.order-success-title { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.order-success p:not(.order-success-title) { margin-top: 0.4rem; font-size: 0.95rem; }

/* ============================================
   Sticky mobile buy bar
   ============================================ */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1.1rem calc(0.7rem + env(safe-area-inset-bottom));
  transform: translateY(102%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
}
.buybar.is-visible { transform: none; visibility: visible; }
.buybar[hidden] { display: none; }
.buybar-price { display: flex; flex-direction: column; min-width: 0; }
#barPrice {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.15rem;
  color: var(--navy);
}
#barLabel {
  font-size: 0.75rem;
  color: var(--ink-45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}
.buybar .btn { padding: 0.75rem 1.5rem; }
@media (min-width: 900px) {
  .buybar { display: none; }
}

/* ============================================
   WhatsApp float (homepage)
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 45;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(16, 26, 51, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.wa-float:hover, .wa-float:focus-visible {
  transform: scale(1.05);
  background: var(--wa-dark);
}

/* ============================================
   Arabic / RTL
   ============================================ */
html[lang="ar"] {
  --font-display: "Cairo", "Tajawal", sans-serif;
  --font-body: "Tajawal", -apple-system, BlinkMacSystemFont, sans-serif;
}
html[lang="ar"] body { line-height: 1.75; }
html[lang="ar"] h1, html[lang="ar"] h2 {
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.3;
}
html[lang="ar"] h1 { font-size: clamp(2rem, 1.2rem + 3.6vw, 3.5rem); }
html[lang="ar"] .pdp-info h1 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); }
html[lang="ar"] .price-now, html[lang="ar"] #barPrice { font-weight: 700; }
html[lang="ar"] .brand-name { font-weight: 700; }
html[lang="ar"] .brand-name-sub { letter-spacing: 0.08em; }
html[lang="ar"] .footer-brand { font-weight: 700; }

[dir="rtl"] .value-item { padding-left: 0; border-left: none; }
@media (min-width: 800px) {
  [dir="rtl"] .value-item { padding-right: 1.75rem; border-right: 1px solid var(--line); }
  [dir="rtl"] .value-item:first-child { padding-right: 0; border-right: none; }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
