:root {
  --bg: #000;
  --bg-2: #0a0a0a;
  --bg-card: #111;
  --text: #fff;
  --text-2: #a0a0a0;
  --border: #222;
  --border-2: #2a2a2a;
  --accent: #fff;
  --accent-hover: #e8e8e8;
  --green: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --font-en: 'Inter', -apple-system, sans-serif;
  --font-ar: 'Tajawal', sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.en-mode { font-family: var(--font-en); }

img { max-width: 100%; height: auto; display: block; }

/* ── Language visibility ── */
body:not(.en-mode) .en-text { display: none !important; }
body.en-mode       .ar-text { display: none !important; }
.hidden { display: none !important; }


/* ════════════════════════════════════════════
   LAYOUT VISIBILITY CONTROL
   ════════════════════════════════════════════ */
.mobile-layout  { display: block; }
.desktop-layout { display: none; }

@media (min-width: 960px) {
  .mobile-layout  { display: none; }
  .desktop-layout { display: block; }
}


/* ════════════════════════════════════════════
   SHARED COMPONENTS  (used by both layouts)
   ════════════════════════════════════════════ */

/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-en);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.toggle-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.toggle-track {
  width: 38px;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--border-2);
  transition: background 0.2s;
}
.toggle-thumb {
  width: 14px;
  height: 14px;
  background: var(--text);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.toggle-track.active .toggle-thumb { transform: translateX(18px); }
body:not(.en-mode) .toggle-label:first-child,
body.en-mode       .toggle-label:last-child { color: var(--text); }

/* Badge */
.badge {
  display: inline-block;
  background: #1a1a1a;
  border: 1px solid var(--border-2);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

/* Rating row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 8px 0;
}
.stars-sm { color: var(--yellow); font-size: 0.82rem; letter-spacing: 1px; }
.rating-count { font-size: 0.78rem; color: var(--text-2); }

/* Countdown */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 8px;
}
.countdown-wrap svg { color: var(--yellow); flex-shrink: 0; }
.countdown-timer {
  font-weight: 700;
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: 0.88rem;
}

/* Stock urgency */
.stock-urgency { margin-bottom: 10px; }
.stock-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 5px;
  overflow: hidden;
}
.stock-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #16a34a);
  border-radius: 2px;
}
.stock-label {
  font-size: 0.76rem;
  color: #f87171;
  font-weight: 500;
}

/* Shipping note */
.shipping-note {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 4px;
}

/* Stars */
.stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.stars-block { display: flex; align-items: center; gap: 6px; }
.review-count { font-size: 0.82rem; color: var(--text-2); font-weight: 400; }

/* Discount tag */
.discount-tag {
  display: inline-block;
  background: rgba(239,68,68,.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Price row */
.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.price {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.original-price {
  font-size: 1rem;
  color: var(--text-2);
  text-decoration: line-through;
  opacity: 0.7;
}

/* COD Badges */
.cod-badges {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.cod-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.3;
}
.cod-badge svg { color: var(--green); }

/* Form */
.cod-form { display: flex; flex-direction: column; gap: 14px; }

.input-group { position: relative; }
.input-group input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 20px 14px 8px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--r-sm);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.input-group input:focus {
  outline: none;
  border-color: var(--text);
}
.input-group input.error { border-color: var(--red); }

.input-group label {
  position: absolute;
  top: 7px;
  right: 14px;
  color: var(--text-2);
  pointer-events: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body.en-mode .input-group label,
body[dir="ltr"] .input-group label { right: auto; left: 14px; }

.field-error {
  display: none;
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 4px;
  padding-right: 4px;
}
.field-error.visible { display: block; }

/* Qty */
.qty-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-controls button {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.qty-controls button:active { background: var(--border); }
#qtyDisplay, #mQtyDisplay, #dQtyDisplay {
  min-width: 28px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Order Summary */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--text-2);
  gap: 8px;
}
.summary-row strong { color: var(--text); font-weight: 600; }
.free-label { color: var(--green) !important; }
.summary-divider { height: 1px; background: var(--border); }
.summary-row.total-row { font-weight: 600; color: var(--text); }
.summary-row.total-row strong { font-size: 1.05rem; font-weight: 700; }

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: inherit;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:active { transform: scale(0.99); background: var(--accent-hover); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-icon { display: flex; align-items: center; }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 13px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:active { color: var(--text); border-color: var(--text-2); }

/* Micro Trust */
.micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.4;
}

/* Success View */
.success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeUp 0.5s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-icon-wrap { margin-bottom: 16px; }
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(34,197,94,.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(.175,.885,.32,1.275);
}
.success-icon svg { color: var(--green); }
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.success-subtitle {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 20px;
  max-width: 300px;
  line-height: 1.6;
}
.order-details-box {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 14px;
  text-align: start;
}
.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  gap: 8px;
}
.order-detail-row:last-child { border-bottom: none; }
.order-detail-row span { color: var(--text-2); flex-shrink: 0; }
.order-detail-row strong { font-weight: 600; text-align: end; word-break: break-word; }
.order-detail-row.total-row strong { color: var(--green); font-size: 0.95rem; }
.confirm-total { color: var(--green); }

.success-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--r-sm);
  padding: 12px;
  font-size: 0.78rem;
  color: var(--text-2);
  text-align: start;
  line-height: 1.5;
  margin-bottom: 12px;
}
.success-note svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* Accordion */
.accordion {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-2);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.accordion-content {
  padding: 0 0 14px;
  color: var(--text-2);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.accordion-content ul { list-style: none; padding: 0; }
.accordion-content li {
  margin-bottom: 8px;
  font-weight: 300;
  font-size: 0.87rem;
  padding-right: 14px;
  position: relative;
}
.accordion-content li::before {
  content: '–';
  position: absolute;
  right: 0;
  color: var(--border-2);
}
body.en-mode .accordion-content li { padding-right: 0; padding-left: 14px; }
body.en-mode .accordion-content li::before { right: auto; left: 0; }

/* Reviews */
.reviews-grid { display: flex; flex-direction: column; gap: 12px; }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.review-stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-text {
  font-size: 0.88rem;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.reviewer { display: flex; align-items: center; gap: 8px; }
.reviewer-avatar {
  width: 34px;
  height: 34px;
  background: var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.reviewer-location { font-size: 0.73rem; color: var(--green); }

/* Feature icon */
.feature-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.feature-icon svg { color: var(--text-2); }

/* Shake */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.shake { animation: shake 0.4s ease; }


/* ════════════════════════════════════════════
   MOBILE LAYOUT STYLES
   ════════════════════════════════════════════ */

/* Mobile Header */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

/* ── HERO SLIDER (shared mobile + desktop) ── */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  scroll-snap-align: start;
}
.slide img {
  width: 100%;
  height: 56vw;
  min-height: 220px;
  max-height: 340px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Desktop slider fills the content pane height */
.desktop-slider .slide img {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
}

.hero-discount-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(239,68,68,.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 10;
}
body[dir="rtl"] .hero-discount-pill { left: auto; right: 12px; }

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Arrow buttons (desktop only) */
.slider-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  -webkit-tap-highlight-color: transparent;
}
.slider-arrow:hover { background: rgba(0,0,0,0.75); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
/* Flip arrows for RTL */
body[dir="rtl"] .slider-prev { left: auto; right: 16px; }
body[dir="rtl"] .slider-next { right: auto; left: 16px; }

/* Show arrows only on desktop slider */
.desktop-slider .slider-arrow { display: flex; }

/* Mobile Product Info */
.mobile-product-info {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.mobile-product-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.mobile-price-block { text-align: start; flex-shrink: 0; }
.mobile-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.mobile-old-price {
  font-size: 0.85rem;
  color: var(--text-2);
  text-decoration: line-through;
  text-align: end;
}

/* Mobile Trust Strip */
.mobile-trust-strip {
  display: flex;
  padding: 10px 16px;
  gap: 8px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.mobile-trust-strip::-webkit-scrollbar { display: none; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-pill svg { color: var(--green); flex-shrink: 0; }

/* Mobile Form Section */
.mobile-form-section {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.form-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-subtitle {
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 16px;
}

/* Mobile Gallery (thumbnails) */
.mobile-gallery {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-gallery-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.mobile-gallery-scroll::-webkit-scrollbar { display: none; }
.mobile-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid var(--border);
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.mobile-thumb.active-thumb { border-color: var(--text); }

/* Mobile Social Proof */
.mobile-social-proof {
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

/* Mobile Features */
.mobile-features {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-features h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.mobile-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 12px;
}
.mobile-feature-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.mobile-feature-card p {
  font-size: 0.75rem;
  color: var(--text-2);
}

/* Mobile Photo Strip */
.mobile-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mobile-photo-strip img {
  width: 100%;
  height: 44vw;
  object-fit: cover;
}

/* Mobile Reviews */
.mobile-reviews {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-reviews h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Mobile Accordion */
.mobile-accordion-section {
  padding: 4px 16px 20px;
  border-top: 1px solid var(--border);
}

/* Mobile Footer */
.mobile-footer {
  padding: 20px 16px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-2);
}


/* ════════════════════════════════════════════
   DESKTOP LAYOUT STYLES
   ════════════════════════════════════════════ */

.split-layout {
  display: flex;
  min-height: 100vh;
}

.content-side {
  flex: 1;
  position: relative;
  min-width: 0;
}

.desktop-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo.desktop-logo { padding: 0; position: relative; }

.gallery { display: flex; flex-direction: column; gap: 2px; }
.gallery-img {
  width: 100%;
  object-fit: cover;
  min-height: 80vh;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.5,0,0,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Social proof strip */
.social-proof-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.divider-dot { color: var(--border-2); font-size: 1.2rem; }
.proof-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.proof-item svg { color: var(--green); flex-shrink: 0; }

/* Details section */
.details-section {
  padding: 64px 32px;
  max-width: 800px;
  margin: 0 auto;
}
.details-section h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 12px; }
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.feature-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.2s;
}
.feature-item:hover { border-color: var(--border-2); }
.feature-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--text-2); }

/* Reviews section */
.reviews-section {
  padding: 64px 32px;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.reviews-section h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 20px; }
.reviews-section .reviews-grid { gap: 14px; }

/* Accordion section */
.accordion-section {
  padding: 40px 32px;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* Footer */
.site-footer {
  padding: 48px 32px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--text-2);
}
.trust-badge svg { color: var(--text-2); }
.site-footer p { font-size: 0.8rem; color: var(--text-2); }

/* Checkout side */
.checkout-side {
  width: 460px;
  flex-shrink: 0;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
}
body[dir="rtl"] .checkout-side { border-left: none; border-right: 1px solid var(--border); }

.checkout-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 40px 28px 28px;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}
.checkout-inner::-webkit-scrollbar { display: none; }

.product-header { margin-bottom: 16px; }
.product-header h1 { font-size: 2rem; font-weight: 700; margin-bottom: 6px; }

.form-container h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
