/* =========================================================
   MON3SH — Premium Minimalist Stylesheet
   Mobile-First | RTL/LTR | Dark/Light
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand palette */
  --dusty-rose: #CD858C;
  --mint-green: #92DED4;
  --soft-pink: #FFA1B2;
  --peach-yellow: #F2C285;

  /* Surfaces (Light mode) */
  --bg: #FDFBF8;
  --bg-elevated: #FFFFFF;
  --bg-subtle: #F6F2EC;
  --border: rgba(74, 74, 74, 0.08);
  --border-strong: rgba(74, 74, 74, 0.16);

  /* Text */
  --text: #4A4A4A;
  --text-muted: #CD858C;
  --text-faint: rgba(74, 74, 74, 0.4);
  --text-on-brand: #FFFFFF;

  /* Tints (lower-opacity brand colors) */
  --tint-rose: rgba(205, 133, 140, 0.08);
  --tint-mint: rgba(146, 222, 212, 0.12);
  --tint-pink: rgba(255, 161, 178, 0.10);
  --tint-peach: rgba(242, 194, 133, 0.12);

  /* Shadows (soft, Apple-like) */
  --shadow-sm: 0 1px 2px rgba(74, 74, 74, 0.04), 0 1px 3px rgba(74, 74, 74, 0.06);
  --shadow-md: 0 4px 12px rgba(74, 74, 74, 0.06), 0 2px 4px rgba(74, 74, 74, 0.04);
  --shadow-lg: 0 12px 32px rgba(74, 74, 74, 0.08), 0 4px 12px rgba(74, 74, 74, 0.04);
  --shadow-xl: 0 24px 60px rgba(74, 74, 74, 0.12);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;

  /* Type */
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-en: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion (Apple-style easing) */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 520ms;

  /* Z layers */
  --z-nav: 50;
  --z-drawer: 90;
  --z-toast: 100;
}

/* ---------- DARK MODE ---------- */
[data-theme="dark"] {
  --bg: #1A1816;
  --bg-elevated: #232120;
  --bg-subtle: #2B2826;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #F0EDE8;
  --text-muted: rgba(240, 237, 232, 0.65);
  --text-faint: rgba(240, 237, 232, 0.4);

  --tint-rose: rgba(205, 133, 140, 0.14);
  --tint-mint: rgba(146, 222, 212, 0.16);
  --tint-pink: rgba(255, 161, 178, 0.14);
  --tint-peach: rgba(242, 194, 133, 0.14);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .logo-img,
[data-theme="dark"] .hero-logo,
[data-theme="dark"] .footer-logo {
  filter: brightness(1.15) contrast(0.95);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

[lang="en"] body { font-family: var(--font-en); }
[lang="ku"] body { font-family: var(--font-ar); }

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea { font-family: inherit; }

::selection { background: var(--mint-green); color: #1A1816; }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--s-8); }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(253, 251, 248, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

[data-theme="dark"] .navbar {
  background: rgba(26, 24, 22, 0.72);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  transition: opacity var(--t-fast) var(--ease);
}
.nav-logo:active { opacity: 0.6; }

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: transparent;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.icon-btn:hover { background: var(--bg-subtle); }
.icon-btn:active { transform: scale(0.92); }
.icon-btn svg { width: 20px; height: 20px; }

.lang-btn {
  width: auto;
  padding: 0 var(--s-3);
  gap: var(--s-1);
  font-weight: 600;
  font-size: 13px;
}
.lang-btn svg { width: 16px; height: 16px; }
.lang-label { font-family: var(--font-en); letter-spacing: 0.02em; }

/* Theme icon toggle */
.icon-sun, .icon-moon {
  position: absolute;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
[data-theme="dark"] .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
.icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

.cart-btn .cart-badge {
  position: absolute;
  top: 2px;
  inset-inline-end: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--dusty-rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  transform: scale(0);
  transition: transform var(--t-base) var(--ease-out);
}
.cart-btn.has-items .cart-badge { transform: scale(1); }
.cart-btn.bump { animation: bump 0.5s var(--ease-out); }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.15); }
}

/* ---------- LANG MENU ---------- */
.lang-menu {
  position: fixed;
  top: 64px;
  inset-inline-end: var(--s-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--s-2);
  z-index: var(--z-nav);
  min-width: 160px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.lang-menu:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-option {
  display: block;
  width: 100%;
  padding: var(--s-3) var(--s-4);
  text-align: start;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--t-fast) var(--ease);
}
.lang-option:hover { background: var(--bg-subtle); }
.lang-option.active {
  background: var(--tint-mint);
  color: var(--text);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 96px var(--s-5) var(--s-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image with Shadow Overlay for HERO */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('image/promo1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}
.blob-1 {
  width: 320px; height: 320px;
  background: var(--soft-pink);
  top: -80px;
  inset-inline-start: -80px;
}
.blob-2 {
  width: 280px; height: 280px;
  background: var(--mint-green);
  bottom: 10%;
  inset-inline-end: -60px;
  animation-delay: -6s;
}
.blob-3 {
  width: 240px; height: 240px;
  background: var(--peach-yellow);
  top: 40%;
  inset-inline-start: 40%;
  animation-delay: -12s;
  opacity: 0.4;
}

[data-theme="dark"] .blob { opacity: 0.25; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--s-6);
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(205, 133, 140, 0.25));
}

.hero-title {
  margin-bottom: var(--s-4);
}

.hero-brand {
  display: inline-block;
  font-size: clamp(48px, 12vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--soft-pink) 50%, var(--peach-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: var(--s-10);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: stretch;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--dusty-rose);
  color: var(--text-on-brand);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }

[data-theme="dark"] .btn-primary {
  background: var(--mint-green);
  color: #1A1816;
}

.btn-ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-strong); }

.btn-block { width: 100%; }

/* Flip arrow in RTL */
[dir="rtl"] .btn svg { transform: scaleX(-1); }
[dir="rtl"] .btn .no-flip { transform: none; }

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- SECTIONS ---------- */
.menu-section {
  padding: var(--s-16) 0 var(--s-12);
  background: var(--bg);
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: var(--s-10);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  padding: 6px 14px;
  background: var(--tint-rose);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
}

.section-title {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--s-3);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- FILTERS ---------- */
.filters {
  display: flex;
  gap: var(--s-2);
  overflow-x: auto;
  padding: 0 var(--s-1) var(--s-2);
  margin-bottom: var(--s-8);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  justify-content: center;
  flex-wrap: wrap;
}
.filters::-webkit-scrollbar { display: none; }

.filter-chip {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--t-fast) var(--ease);
  scroll-snap-align: start;
  min-height: 40px;
}
.filter-chip:hover { color: var(--text); }
.filter-chip.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

[data-theme="dark"] .filter-chip.active {
  background: var(--mint-green);
  color: #1A1816;
  border-color: var(--mint-green);
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
  }
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn 0.6s var(--ease-out) forwards;
}

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-subtle);
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-image { transform: scale(1.06); }

.product-unavailable .product-image { filter: grayscale(0.9); opacity: 0.5; }

.unavailable-badge {
  position: absolute;
  top: var(--s-2);
  inset-inline-start: var(--s-2);
  background: rgba(74, 74, 74, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}

.product-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-price {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--dusty-rose);
  letter-spacing: -0.01em;
  margin-top: auto;
}
.product-price .iqd { font-size: 11px; color: var(--text-muted); margin-inline-start: 2px; font-weight: 600; }

.add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  margin-top: var(--s-2);
  background: var(--bg-subtle);
  color: var(--text);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--t-fast) var(--ease);
  min-height: 40px;
}
.add-btn:hover {
  background: var(--text);
  color: var(--bg);
}
[data-theme="dark"] .add-btn:hover {
  background: var(--mint-green);
  color: #1A1816;
}
.add-btn:active { transform: scale(0.96); }
.add-btn svg { width: 16px; height: 16px; }
.add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: var(--s-16) 0 var(--s-12);
  background: var(--bg);
  position: relative;
}

.contact-content {
  margin-top: var(--s-8);
}

.contact-map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .contact-map-placeholder {
    height: 500px;
  }
}

/* ---------- FAB (Floating Action Button) ---------- */
.fab {
  position: fixed;
  bottom: var(--s-8);
  inset-inline-end: var(--s-6);
  width: 64px;
  height: 64px;
  border-radius: var(--r-pill);
  background: var(--dusty-rose);
  color: var(--text-on-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.fab:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: #b97578;
}

.fab:active {
  transform: scale(0.95);
}

.fab svg {
  width: 28px;
  height: 28px;
}

[data-theme="dark"] .fab {
  background: var(--mint-green);
  color: #1A1816;
}

[data-theme="dark"] .fab:hover {
  background: #7fd4c7;
}

/* Pulse animation on load */
@keyframes pulse-fab {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: var(--shadow-xl); }
}

.fab.pulse {
  animation: pulse-fab 2s ease-in-out;
}

/* Hide FAB when modal is open */
.fab.hidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

/* ---------- MODAL BACKDROP ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 89;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- CONTACT MODAL ---------- */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  padding: var(--s-6);
  pointer-events: none;
}

.contact-modal.open {
  pointer-events: auto;
}

.contact-modal.open .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-content {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(40px);
  opacity: 0;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-slow) var(--ease);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.modal-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  flex: 1;
  overflow-y: auto;
}

.contact-item {
  display: flex;
  gap: var(--s-4);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--dusty-rose);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-en);
  letter-spacing: -0.01em;
}

/* Phone numbers links */
.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-1);
}

.phone-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--dusty-rose);
  font-family: var(--font-en);
  letter-spacing: -0.01em;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease);
  display: inline-block;
  background: var(--tint-rose);
}

.phone-link:hover {
  background: var(--dusty-rose);
  color: #fff;
  transform: translateX(4px);
}

[dir="rtl"] .phone-link:hover {
  transform: translateX(-4px);
}

.phone-link:active {
  transform: scale(0.97);
}

[dir="rtl"] .phone-link:active {
  transform: scale(0.97);
}

/* Address display */
.contact-address {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--bg-subtle);
  border-radius: var(--r-sm);
  margin: var(--s-2) 0;
  border-inline-start: 3px solid var(--dusty-rose);
}

/* Social icons grid */
.social-icons {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-2);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--t-fast) var(--ease);
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--dusty-rose);
  color: #fff;
  border-color: var(--dusty-rose);
  box-shadow: var(--shadow-md);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  color: inherit;
}

[data-theme="dark"] .social-icon:hover {
  background: var(--mint-green);
  color: #1A1816;
  border-color: var(--mint-green);
}

/* Navigation buttons */
.nav-buttons {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-2);
}

.nav-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--bg-subtle);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .nav-btn:hover {
  background: var(--mint-green);
  color: #1A1816;
  border-color: var(--mint-green);
}

.nav-btn:active {
  transform: scale(0.97);
}

/* ---------- SCROLLBAR IN MODAL ---------- */
.modal-body::-webkit-scrollbar {
  width: 4px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ---------- BODY LOCK (when drawer open) ---------- */
body.no-scroll {
  overflow: hidden;
}

/* ---------- LTR-SPECIFIC FIXES ---------- */
[dir="ltr"] .scroll-indicator { transform: translateX(-50%); }

/* ---------- RESPONSIVE CONTACT MODAL ---------- */
@media (min-width: 640px) {
  .contact-modal {
    align-items: center;
    justify-content: center;
    padding: var(--s-5);
  }

  .modal-content {
    max-width: 520px;
    max-height: 80vh;
  }

  .nav-buttons {
    gap: var(--s-3);
  }

  .nav-btn {
    min-width: 140px;
    padding: 14px 20px;
  }
}

/* ---------- DRAWER ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: var(--z-drawer);
  transition: opacity var(--t-base) var(--ease);
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  height: 100vh;
  height: 100dvh;
  width: min(420px, 92vw);
  background: var(--bg-elevated);
  z-index: calc(var(--z-drawer) + 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
[dir="rtl"] .cart-drawer { transform: translateX(-100%); }
.cart-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-head h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-4) var(--s-5);
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border);
  animation: itemIn 0.4s var(--ease-out);
}
@keyframes itemIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--bg-subtle);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item-price {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--dusty-rose);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--bg-subtle);
  border-radius: var(--r-pill);
  padding: 4px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  transition: background var(--t-fast) var(--ease);
}
.qty-btn:hover { background: var(--bg-elevated); }
.qty-btn:active { transform: scale(0.9); }
.qty-val {
  min-width: 20px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

.empty-cart {
  text-align: center;
  padding: var(--s-12) var(--s-4);
  color: var(--text-muted);
}
.empty-cart svg {
  width: 64px; height: 64px;
  margin: 0 auto var(--s-4);
  opacity: 0.3;
}
.empty-cart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-1);
}
.empty-cart-text { font-size: 14px; }

.drawer-foot {
  padding: var(--s-5);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-4);
  font-size: 15px;
  color: var(--text-muted);
}
.cart-total-row strong {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.btn-clear-cart {
  margin-bottom: var(--s-3);
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-clear-cart:hover,
.btn-clear-cart:active {
  background: rgba(205, 133, 140, 0.12);
  color: var(--dusty-rose);
  border-color: rgba(205, 133, 140, 0.28);
  box-shadow: 0 10px 24px rgba(205, 133, 140, 0.12);
}

[data-theme="dark"] .btn-clear-cart:hover,
[data-theme="dark"] .btn-clear-cart:active {
  background: rgba(255, 161, 178, 0.12);
  color: var(--soft-pink);
  border-color: rgba(255, 161, 178, 0.24);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.field input,
.field textarea {
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  resize: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
  min-height: 44px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 3px var(--tint-rose);
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  /* Just visual cue, not aggressive */
}

#drawerFoot[hidden] { display: none; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--text);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  z-index: var(--z-toast);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  transition: transform var(--t-base) var(--ease-out);
  max-width: 90vw;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

[data-theme="dark"] .toast {
  background: var(--mint-green);
  color: #1A1816;
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .blob { animation: none; }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--dusty-rose);
  outline-offset: 2px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-subtle);
  padding: var(--s-12) 0 var(--s-8);
  margin-top: var(--s-16);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-6);
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: var(--s-2);
}

.footer-brand {
  flex: 1;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-credit {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
.dev-credit {
  margin-top: var(--s-1);
  color: var(--text-faint);
  font-size: 12px;
}
/* =========================================================
   MON3SH — UPDATES: Social Section, Show All, FA Icons
   ========================================================= */

/* ---------- FONT AWESOME ICON ALIGNMENT ---------- */
/* Navbar icon buttons using FA */
.icon-btn .fa-solid,
.icon-btn .fa-brands {
  font-size: 18px;
  line-height: 1;
}

/* Theme icons via FA */
.theme-btn .icon-sun,
.theme-btn .icon-moon {
  position: absolute;
  font-size: 18px;
  line-height: 1;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
[data-theme="dark"] .theme-btn .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="dark"] .theme-btn .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
.theme-btn .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.theme-btn .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* Lang btn icon */
.lang-btn .fa-globe { font-size: 15px; }

/* Cart badge position with FA icon */
.cart-btn .fa-bag-shopping { font-size: 18px; }

/* Scroll indicator FA */
.scroll-indicator .fa-chevron-down {
  font-size: 20px;
}

/* Hero button arrow for RTL */
.btn .btn-arrow {
  font-size: 16px;
}
[dir="rtl"] .btn .btn-arrow { transform: scaleX(1); } /* arrow-left already points correctly in RTL */
[dir="ltr"] .btn .btn-arrow { transform: scaleX(-1); }

/* Contact item icon alignment */
.contact-item__icon {
  font-size: 20px;
  color: var(--dusty-rose);
  flex-shrink: 0;
  margin-top: 3px;
  width: 24px;
  text-align: center;
}

/* FAB whatsapp icon */
.fab .fa-whatsapp { font-size: 28px; }

/* Close button icon */
.close-btn .fa-xmark { font-size: 20px; }

/* Add button icon */
.add-btn .fa-plus { font-size: 14px; }

/* Checkout btn icon */
#checkoutBtn .fa-whatsapp { font-size: 18px; }

/* ---------- SHOW ALL BUTTON ---------- */
.show-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}

.btn-show-all {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: transparent;
  color: var(--dusty-rose);
  border: 2px solid var(--dusty-rose);
  transition: all var(--t-base) var(--ease);
  min-height: 52px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-show-all::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dusty-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease);
  z-index: 0;
}
[dir="ltr"] .btn-show-all::before { transform-origin: left; }

.btn-show-all:hover::before { transform: scaleX(1); }
.btn-show-all:hover {
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-show-all span,
.btn-show-all i {
  position: relative;
  z-index: 1;
}

.btn-show-all .fa-grid-2 { font-size: 16px; }

.btn-show-all:active { transform: scale(0.97); }

[data-theme="dark"] .btn-show-all {
  color: var(--mint-green);
  border-color: var(--mint-green);
}
[data-theme="dark"] .btn-show-all::before {
  background: var(--mint-green);
}
[data-theme="dark"] .btn-show-all:hover { color: #1A1816; }

/* Hide show-all when all products are visible */
.show-all-wrap.hidden { display: none; }

/* ---------- SOCIAL SECTION ---------- */
.social-section {
  padding: var(--s-16) 0 var(--s-12);
  position: relative;
  overflow: hidden;
}

/* Background Image with Shadow Overlay for SOCIAL */
.social-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('image/promo2.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Subtle decorative gradient behind the section */
.social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, var(--tint-rose) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 30%, var(--tint-mint) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.social-section .container { position: relative; z-index: 1; }

/* Social cards grid */
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

@media (min-width: 480px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
}

.social-card {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-5);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

/* Colored left/start accent stripe */
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  transition: width var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  opacity: 0.7;
}
[dir="ltr"] .social-card::before { border-radius: 0 4px 4px 0; }

.social-card--instagram::before { background: linear-gradient(160deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card--tiktok::before    { background: #010101; }
.social-card--facebook::before  { background: #1877f2; }
.social-card--whatsapp::before  { background: #25d366; }

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.social-card:active { transform: translateY(-2px) scale(0.99); }

/* Platform-specific hover border accent */
.social-card--instagram:hover { border-color: #e6683c; }
.social-card--tiktok:hover    { border-color: #69c9d0; }
.social-card--facebook:hover  { border-color: #1877f2; }
.social-card--whatsapp:hover  { border-color: #25d366; }

/* Icon circle */
.social-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  transition: transform var(--t-base) var(--ease);
}

.social-card:hover .social-card__icon { transform: scale(1.1) rotate(-4deg); }

/* Platform icon colors & backgrounds */
.social-card--instagram .social-card__icon {
  background: linear-gradient(135deg, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 100%);
  color: #fff;
}
.social-card--tiktok .social-card__icon {
  background: #010101;
  color: #fff;
}
.social-card--facebook .social-card__icon {
  background: #1877f2;
  color: #fff;
}
.social-card--whatsapp .social-card__icon {
  background: #25d366;
  color: #fff;
}

/* Text info */
.social-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.social-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  font-family: var(--font-en);
}

.social-card__handle {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-en);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow icon */
.social-card__arrow {
  font-size: 13px;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.social-card:hover .social-card__arrow {
  color: var(--text-muted);
  transform: translate(2px, -2px);
}

/* Dark mode adjustments */
[data-theme="dark"] .social-card { background: var(--bg-elevated); }
[data-theme="dark"] .social-card--tiktok .social-card__icon { background: #2d2d2d; }

/* =========================================================
   MON3SH — ENHANCEMENTS: Nav State, Checkout, Hero Motion
   ========================================================= */

/* ---------- DESKTOP NAV LINKS ---------- */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .nav-links {
  background: rgba(255, 255, 255, 0.06);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-elevated);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--text-on-brand);
  background: var(--dusty-rose);
  box-shadow: 0 8px 22px rgba(205, 133, 140, 0.24);
}

[data-theme="dark"] .nav-link.active {
  color: #1A1816;
  background: var(--mint-green);
  box-shadow: 0 8px 22px rgba(146, 222, 212, 0.18);
}

@media (min-width: 820px) {
  .nav-links { display: flex; }
}

/* ---------- HERO REDESIGN ---------- */
.hero {
  min-height: 92vh;
  min-height: 92svh;
  isolation: isolate;
}

.hero::before {
  background-image:
    linear-gradient(180deg, rgba(15, 14, 13, 0.42) 0%, rgba(15, 14, 13, 0.64) 100%),
    radial-gradient(ellipse 80% 60% at 50% 22%, rgba(255, 255, 255, 0.26), transparent 62%),
    linear-gradient(135deg, rgba(205, 133, 140, 0.62), rgba(146, 222, 212, 0.36) 42%, rgba(242, 194, 133, 0.52)),
    url('image/promo1.jpg');
  background-attachment: fixed;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.14) 42%, transparent 58%),
    linear-gradient(180deg, transparent 68%, var(--bg) 100%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-bg {
  display: none;
}

.hero-content {
  max-width: 720px;
  animation: heroContentIn 760ms var(--ease-out) both;
}

.hero-logo {
  width: clamp(112px, 16vw, 148px);
  height: clamp(112px, 16vw, 148px);
  padding: 14px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  animation: heroLogoFloat 5.8s ease-in-out infinite;
}

.hero-brand {
  background: linear-gradient(135deg, #ffffff 0%, #ffe2e8 42%, #cffff8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.24));
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.hero-actions .btn {
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-actions .btn-primary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow-sm);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:active {
  background: var(--dusty-rose);
  color: var(--text-on-brand);
  border-color: var(--dusty-rose);
  box-shadow: 0 14px 34px rgba(205, 133, 140, 0.28), var(--shadow-lg);
}

[data-theme="dark"] .hero-actions .btn-primary:hover,
[data-theme="dark"] .hero-actions .btn-primary:active {
  background: var(--mint-green);
  color: #1A1816;
  border-color: var(--mint-green);
  box-shadow: 0 14px 34px rgba(146, 222, 212, 0.22), var(--shadow-lg);
}

.hero-actions .btn-ghost:hover,
.hero-actions .btn-ghost:active {
  background: var(--dusty-rose);
  color: var(--text-on-brand);
  border-color: var(--dusty-rose);
  box-shadow: 0 14px 34px rgba(205, 133, 140, 0.28), var(--shadow-lg);
}

[data-theme="dark"] .hero-actions .btn-ghost:hover,
[data-theme="dark"] .hero-actions .btn-ghost:active {
  background: var(--mint-green);
  color: #1A1816;
  border-color: var(--mint-green);
  box-shadow: 0 14px 34px rgba(146, 222, 212, 0.22), var(--shadow-lg);
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

/* ---------- CHECKOUT MODAL ---------- */
.checkout-modal .modal-content {
  max-width: 560px;
}

.checkout-details-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.field select {
  min-height: 44px;
  padding: 12px 42px 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  appearance: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

[dir="rtl"] .field select {
  padding: 12px 14px 12px 42px;
  background-position:
    18px 50%,
    13px 50%,
    0 0;
}

.field select:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 3px var(--tint-rose);
}

.field.is-hidden {
  display: none;
}

.checkout-summary {
  padding: var(--s-4);
  border-radius: var(--r-lg);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}

.checkout-summary:empty {
  display: none;
}

.checkout-summary-head,
.checkout-summary-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
}

.checkout-summary-head {
  margin-bottom: var(--s-3);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.checkout-summary-head strong {
  font-family: var(--font-en);
  color: var(--dusty-rose);
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.checkout-summary-item {
  color: var(--text-muted);
  font-size: 13px;
}

.checkout-summary-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary-item strong {
  flex-shrink: 0;
  color: var(--text);
  font-family: var(--font-en);
  font-weight: 700;
}

/* ---------- MICRO-INTERACTIONS ---------- */
button:not(:disabled),
.btn,
.nav-btn,
.phone-link,
.social-icon,
.social-card,
.filter-chip,
.add-btn {
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(205, 133, 140, 0.24), var(--shadow-lg);
}

[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 14px 34px rgba(146, 222, 212, 0.18), var(--shadow-lg);
}

.icon-btn:hover,
.qty-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px var(--border);
}

.icon-btn:active,
.qty-btn:active,
.filter-chip:active,
.add-btn:active,
.nav-link:active {
  transform: scale(0.94);
}

.filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.filter-chip.active:hover {
  transform: translateY(-1px) scale(1.01);
}

.add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(74, 74, 74, 0.12);
}

.lang-option {
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.lang-option:hover {
  transform: translateX(-2px);
}

[dir="ltr"] .lang-option:hover {
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-logo {
    animation: none;
  }
}
