/* =====================================================
   Adventure and Roaming — Main Stylesheet
   ===================================================== */

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --espresso:    #1a1008;
  --warm-white:  #f5f0e8;
  --beige:       #ede8df;
  --crimson:     #c0392b;
  --muted:       #7a7065;
  --border:      #e0d8cc;
  --font-display: 'Cormorant Garamond', serif;
  --font-body-en: 'DM Sans', sans-serif;
  --font-body-ar: 'IBM Plex Arabic', sans-serif;
  --radius:      0px;
  --shadow:      0 4px 24px rgba(26,16,8,0.08);
  --transition:  0.2s ease;
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--espresso);
  font-family: var(--font-body-en);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}
body.rtl { font-family: var(--font-body-ar); direction: rtl; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── Container ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ─── Typography ────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body-en);
}
body.rtl .section-label { font-family: var(--font-body-ar); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--espresso); color: var(--warm-white);
}
.btn-primary:hover { background: #2d1f0e; }
.btn-accent {
  background: var(--crimson); color: #fff;
}
.btn-accent:hover { background: #a93226; }
.btn-outline {
  border: 1.5px solid var(--espresso); color: var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: var(--warm-white); }
.btn-white {
  border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
}
.btn-white:hover { background: rgba(255,255,255,0.1); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Header ────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.main-nav { display: none; gap: 2rem; }
@media (min-width: 768px) { .main-nav { display: flex; } }
.main-nav a {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--espresso); }
/* ═══ Header layout: ALWAYS LTR — ≡  🛍  EN  ·····  Site Name ═══ */
.header-inner {
  direction: ltr !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
/* Left cluster: hamburger + cart + lang */
.header-left-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  order: 1;
}
/* Logo: pushed to the far right */
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: static !important;
  transform: none !important;
  margin-left: auto;
  order: 3;
}
/* Desktop nav: between left group and logo (hidden on mobile) */
.main-nav {
  display: none;
  gap: 2rem;
  order: 2;
  margin-left: 2rem;
  direction: ltr;
}
@media (min-width: 768px) { .main-nav { display: flex; } }
body.rtl .main-nav { flex-direction: row; }
/* Keep old classes for compatibility */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions-left { order: 0; margin-inline-end: 0; }
.header-right-group { display: none; }
.lang-btn {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  padding: 0.3rem 0.6rem; border: 1px solid var(--border);
  transition: var(--transition);
}
.lang-btn:hover { color: var(--espresso); border-color: var(--espresso); }
.cart-btn {
  position: relative; color: var(--espresso);
  display: flex; align-items: center;
}
.cart-count {
  position: absolute; top: -6px; inset-inline-end: -6px;
  background: var(--crimson); color: #fff;
  font-size: 10px; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.menu-btn { color: var(--espresso); display: flex; }
@media (min-width: 768px) { .menu-btn { display: none; } }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border); color: var(--espresso);
}

/* ─── Cart Drawer ───────────────────────────────────── */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 200;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100vw;
  background: var(--warm-white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
body.rtl .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
.cart-drawer.open { transform: translateX(0); }
body.rtl .cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.4rem; }
.cart-close { font-size: 1.2rem; color: var(--muted); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 12px; color: var(--muted); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
}
.qty-num { font-size: 13px; min-width: 20px; text-align: center; }
.cart-remove { color: var(--muted); font-size: 12px; cursor: pointer; margin-top: 4px; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 1rem; font-weight: 500; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px; max-height: 900px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: 5rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; color: #fff; line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; font-weight: 500; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 480px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── Announcement Bar / Marquee ────────────────────── */
.announce-bar {
  background: var(--espresso); color: rgba(245,240,232,0.7);
  padding: 0.65rem 0; overflow: hidden; white-space: nowrap;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.marquee-track {
  display: inline-flex; animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 2.5rem;
  white-space: nowrap; flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
body.rtl .marquee-track { animation-direction: reverse; }

/* ─── Product Slider (Auto-scroll) ───────────────────── */
.product-slider-section { padding: 4rem 0; overflow: hidden; }
.product-slider-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; padding: 0 1.5rem; }
@media (min-width: 768px) { .product-slider-header { padding: 0 2.5rem; } }
.product-slider-track-wrap {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.product-slider-track-wrap.grabbing { cursor: grabbing; }
.product-slider-track {
  display: flex; gap: 1.25rem;
  padding: 0 1.5rem 1rem;
  width: max-content;
  animation: sliderAutoScroll 30s linear infinite;
}
.product-slider-track:hover { animation-play-state: paused; }
@media (min-width: 768px) { .product-slider-track { padding: 0 2.5rem 1rem; gap: 1.75rem; } }
@keyframes sliderAutoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
body.rtl .product-slider-track {
  animation-name: sliderAutoScrollRTL;
}
@keyframes sliderAutoScrollRTL {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.slider-card {
  width: 160px; flex-shrink: 0;
  position: relative;
}
@media (min-width: 640px) { .slider-card { width: 200px; } }
.slider-card a { display: block; }
.slider-card-img {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--beige); margin-bottom: 0.85rem;
}
.slider-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.slider-card:hover .slider-card-img img { transform: scale(1.04); }
.slider-card-badge {
  position: absolute; top: 0.6rem; inset-inline-start: 0.6rem;
  background: var(--crimson); color: #fff;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 7px;
}
.slider-card-cat { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.slider-card-name { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 5px; }
.slider-card-price { font-size: 12px; color: var(--muted); }
.slider-card-price .price-current { color: var(--espresso); font-weight: 500; }
.slider-card-price .price-old { text-decoration: line-through; margin-inline-start: 5px; }
.slider-add-btn {
  width: 100%; margin-top: 0.5rem;
  background: var(--espresso); color: var(--warm-white);
  padding: 0.6rem 1rem;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
}
.slider-add-btn:hover { background: #2d1f0e; }
/* زر اطلب الآن */
.slider-order-btn {
  width: 100%; margin-top: 0.4rem;
  background: var(--crimson); color: #fff;
  padding: 0.6rem 1rem;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
}
.slider-order-btn:hover { background: #a93226; }
/* زر أضف للسلة في product-card */
.product-card-add-btn {
  width: 100%; margin-top: 0.5rem;
  background: var(--espresso); color: #fff;
  padding: 0.65rem 1rem;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.product-card-add-btn:hover { background: #3a2818; }
/* للتوافق مع الكود القديم */
.product-card-order-btn {
  width: 100%; margin-top: 0.5rem;
  background: var(--espresso); color: #fff;
  padding: 0.65rem 1rem;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.product-card-order-btn:hover { background: #3a2818; }
/* وزن القهوة */
.coffee-weight-badge {
  display: inline-block;
  background: var(--beige);
  border: 1px solid var(--border);
  color: var(--espresso);
  font-size: 11px; letter-spacing: 0.1em;
  padding: 2px 8px;
  margin-bottom: 0.5rem;
}
.product-detail-weight {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--beige); border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  font-size: 12px; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

/* ─── Section ───────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--espresso);
}
.section-header.center { text-align: center; }
.section-header.flex {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

/* ─── Featured Section (Homepage) ────────────────────── */
.featured-section { padding: 3rem 0 2rem; }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.featured-header.rtl { flex-direction: row-reverse; }
.featured-label {
  margin-bottom: 0.4rem;
  color: var(--muted);
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.1;
}
.featured-view-all {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  transition: var(--transition);
  padding-bottom: 0.25rem;
}
.featured-view-all:hover { color: var(--espresso); }
/* Grid 2 columns always (like the screenshot) */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .featured-grid { gap: 1.25rem; } }
/* Featured card */
.feat-card {
  position: relative;
  background: var(--warm-white);
  overflow: hidden;
}
.feat-card-img-link { display: block; }
.feat-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige);
}
.feat-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.feat-card:hover .feat-card-img img { transform: scale(1.04); }
.feat-badge {
  position: absolute; top: 0.6rem; right: 0.6rem;
  background: var(--crimson); color: #fff;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px;
  z-index: 2;
}
body.ltr .feat-badge { right: auto; left: 0.6rem; }
.feat-card-info {
  padding: 0.6rem 0.25rem 0;
}
.feat-card-info.rtl { text-align: right; }
.feat-card-meta { margin-bottom: 0.5rem; }
.feat-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.feat-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.feat-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--muted);
}
.feat-star { color: #f59e0b; font-size: 13px; }
.feat-card-price {
  font-size: 13px;
  color: var(--espresso);
  font-weight: 500;
  white-space: nowrap;
}
/* Quick add button - full width dark bar */
.feat-add-btn {
  width: 100%;
  background: var(--espresso);
  color: #fff;
  padding: 0.65rem 0.75rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}
.feat-add-btn:hover { background: #3a2818; }
.feat-add-btn--out { background: var(--muted); cursor: not-allowed; }
.feat-add-btn--out:hover { background: var(--muted); }

/* ─── Product Grid ────────────────────────────────────────── */product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .product-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

/* ─── Product Card ──────────────────────────────────── */
.product-card { position: relative; }
.product-card a { display: block; }
.product-card-img {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--beige); margin-bottom: 1rem;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--crimson); color: #fff;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px;
}
body.rtl .product-badge { left: auto; right: 0.75rem; }
.product-card-info { padding: 0 0.25rem; }
.product-card-cat { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.product-card-name { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; }
.product-card-price { font-size: 13px; color: var(--muted); }
.product-card-price .price-current { color: var(--espresso); font-weight: 500; }
.product-card-price .price-old { text-decoration: line-through; margin-inline-start: 6px; }

/* ─── Product Detail ────────────────────────────────── */
.product-detail-grid {
  display: grid; gap: 3rem;
  padding: 2rem 0 4rem;
}
@media (min-width: 1024px) { .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.product-detail-img { aspect-ratio: 1; overflow: hidden; background: var(--beige); }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info {}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; margin-bottom: 1rem;
}
.product-detail-price { font-size: 1.5rem; font-weight: 500; margin-bottom: 1.5rem; }
.product-detail-price .price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; margin-inline-start: 0.75rem; }
.product-detail-desc { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); }
.qty-control button { width: 40px; height: 44px; font-size: 1.2rem; color: var(--muted); transition: var(--transition); }
.qty-control button:hover { color: var(--espresso); }
.qty-control span { width: 44px; text-align: center; font-size: 14px; }

/* ─── Shop Filter ───────────────────────────────────── */
.shop-filter {
  position: sticky; top: 72px; z-index: 50;
  background: rgba(245,240,232,0.97);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.filter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; overflow-x: auto;
}
.filter-tabs { display: flex; gap: 0.25rem; flex-shrink: 0; }
.filter-tab {
  padding: 0.5rem 1rem;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: var(--transition);
  white-space: nowrap;
}
.filter-tab:hover, .filter-tab.active { background: var(--espresso); color: var(--warm-white); }
.sort-select {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: transparent; border: none; outline: none;
  cursor: pointer; flex-shrink: 0;
}

/* ─── Page Header ───────────────────────────────────── */
.page-header {
  background: var(--espresso); color: var(--warm-white);
  padding: 5rem 0 4rem;
  margin-top: 72px;
}
.page-header .section-label { color: rgba(245,240,232,0.4); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; margin-top: 0.75rem;
}
.page-header p { color: rgba(245,240,232,0.6); margin-top: 0.75rem; max-width: 480px; }

/* ─── Why Section ───────────────────────────────────── */
.why-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item { }
.why-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(26,16,8,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.why-item h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-item p { color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ─── Reviews ───────────────────────────────────────── */
.reviews-section { background: #1a1008; }
.reviews-section .section-header h2 { color: var(--warm-white); }
.reviews-section .section-label { color: rgba(245,240,232,0.4); }
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: #f59e0b; }
.review-text { color: rgba(245,240,232,0.8); font-family: var(--font-display); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--crimson); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; flex-shrink: 0;
}
.review-name { color: var(--warm-white); font-size: 13px; font-weight: 500; }
.review-loc { color: rgba(245,240,232,0.4); font-size: 12px; }

/* ─── CTA Section ───────────────────────────────────── */
.cta-section {
  background: var(--crimson); color: #fff;
  text-align: center; padding: 5rem 0;
}
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1rem; }
.cta-section p { opacity: 0.85; max-width: 480px; margin: 0 auto 2rem; }

/* ─── Footer ────────────────────────────────────────── */
.site-footer { background: var(--espresso); color: rgba(245,240,232,0.6); padding: 4rem 0 0; }
.footer-inner { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; color: var(--warm-white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(245,240,232,0.5); transition: var(--transition); }
.footer-social a:hover { color: var(--warm-white); }
.footer-links h4 { color: var(--warm-white); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links a { display: block; font-size: 13px; margin-bottom: 0.5rem; transition: var(--transition); }
.footer-links a:hover { color: var(--warm-white); }
/* Contact items with icon */
.footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  margin-bottom: 0.65rem !important;
  color: rgba(245,240,232,0.6);
  word-break: break-all;
}
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; }
.footer-contact-item:hover { color: var(--warm-white) !important; }
.footer-contact-item:hover svg { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.1); margin-top: 3rem; padding: 1.25rem 0; }
.footer-bottom p { font-size: 12px; text-align: center; }

/* ─── WhatsApp FAB ──────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
body.rtl .whatsapp-fab { left: auto; right: 1.5rem; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ─── Forms ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 14px; transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--espresso); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-error { color: var(--crimson); font-size: 12px; margin-top: 0.25rem; }
.form-success { color: #16a34a; font-size: 13px; padding: 0.75rem 1rem; background: #f0fdf4; border: 1px solid #bbf7d0; margin-bottom: 1rem; }
.form-alert { color: var(--crimson); font-size: 13px; padding: 0.75rem 1rem; background: #fef2f2; border: 1px solid #fecaca; margin-bottom: 1rem; }

/* ─── Checkout ──────────────────────────────────────── */
.checkout-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .checkout-grid { grid-template-columns: 1fr 400px; } }
.order-summary { background: var(--beige); padding: 2rem; }
.order-summary h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.5rem; }
.order-item { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-total { display: flex; justify-content: space-between; padding: 1rem 0 0; font-weight: 600; font-size: 1.1rem; }

/* ─── About ─────────────────────────────────────────── */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { aspect-ratio: 4/5; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1.5rem; }
.about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem; }

/* ─── Contact ───────────────────────────────────────── */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; margin-bottom: 1.5rem; }
.contact-info p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--crimson); }
.contact-item span { font-size: 14px; color: var(--muted); }

/* ─── Toast ─────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; gap: 0.75rem;
}
body.rtl .toast-container { right: auto; left: 2rem; }
.toast {
  background: var(--espresso); color: var(--warm-white);
  padding: 0.85rem 1.25rem; font-size: 13px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
  max-width: 320px;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }

/* ─── Utility ───────────────────────────────────────── */
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-header { padding-top: 72px; }
.bg-beige { background: var(--beige); }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.stars { color: #f59e0b; display: inline-flex; gap: 2px; }
.badge { display: inline-block; background: var(--crimson); color: #fff; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; }
.out-of-stock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
