/* ============================================
   RAHIQ BIO — Main Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Scheherazade+New:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --gold-dark:   #B8960C;
  --olive:       #6B8E23;
  --olive-light: #8AB32A;
  --olive-dark:  #4A6318;
  --umber:       #4B3621;
  --umber-light: #6B4F30;
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDD8;
  --white:       #FFFFFF;
  --text-dark:   #2C1810;
  --text-mid:    #5C4033;
  --text-light:  #8B6553;
  --shadow-sm:   0 2px 8px rgba(75, 54, 33, 0.12);
  --shadow-md:   0 4px 20px rgba(75, 54, 33, 0.18);
  --shadow-lg:   0 8px 40px rgba(75, 54, 33, 0.25);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17.5px;
}

body {
  font-family: 'Amiri', 'Scheherazade New', serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  direction: rtl;
}

body.lang-fr {
  direction: ltr;
  font-family: 'Playfair Display', 'Lato', serif;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Scheherazade New', 'Amiri', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--umber);
}

body.lang-fr h1,
body.lang-fr h2,
body.lang-fr h3,
body.lang-fr h4 {
  font-family: 'Playfair Display', serif;
}

p {
  font-size: 1.05rem;
  color: var(--text-mid);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-olive  { color: var(--olive); }
.text-umber  { color: var(--umber); }

.hidden { display: none !important; }

/* --- Section Title --- */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--umber);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 2px;
}

body[dir="rtl"] .section-title::after {
  margin: 12px auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  padding: 0 20px;
}

.navbar.scrolled {
  background: rgba(253, 248, 240, 0.98);
  box-shadow: var(--shadow-md);
  padding: 0 20px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 20px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 60px;
}

/* Nav Links */
.navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.navbar-links a {
  font-family: 'Scheherazade New', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--umber);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  position: relative;
  transition: var(--transition);
}

body.lang-fr .navbar-links a {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  left: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.08);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  right: 12px;
  left: 12px;
}

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 3px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
  gap: 2px;
}

.lang-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Cart Button */
.cart-btn {
  position: relative;
  background: var(--umber);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cart-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.cart-count {
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--olive);
  color: white;
  font-size: 0.65rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  transition: var(--transition);
}

.cart-count.bump {
  animation: cartBump 0.4s ease;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--umber);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(253, 248, 240, 0.98);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px 20px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Scheherazade New', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--umber);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: right;
}

body.lang-fr .mobile-nav a {
  text-align: left;
  font-family: 'Playfair Display', serif;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-dark);
  padding-right: 24px;
}

body.lang-fr .mobile-nav a:hover {
  padding-right: 16px;
  padding-left: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: 'Scheherazade New', serif;
  letter-spacing: 0.5px;
}

body.lang-fr .btn {
  font-family: 'Lato', sans-serif;
}

/* Shimmer effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: right 0.5s ease;
}

.btn:hover::before {
  right: 130%;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--umber);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--umber);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--umber);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Olive Button */
.btn-olive {
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.35);
}

.btn-olive:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(107, 142, 35, 0.5);
}

/* Small Button */
.btn-sm {
  padding: 9px 20px;
  font-size: 0.9rem;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body.lang-fr .float-whatsapp {
  left: auto;
  right: 28px;
  align-items: flex-end;
}

.float-whatsapp-main {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  color: white;
  animation: waPulse 2.5s infinite;
}

.float-whatsapp-main:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.float-whatsapp-options {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.float-whatsapp-options.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 16px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.wa-option:hover {
  background: #25D366;
  color: white;
  transform: translateX(-5px);
}

body.lang-fr .wa-option:hover {
  transform: translateX(5px);
}

.wa-option span.icon {
  font-size: 1.1rem;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(75, 54, 33, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(420px, 95vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

body.lang-fr .cart-drawer {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--umber);
  color: white;
}

.cart-header h3 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.cart-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(255,255,255,0.3);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--text-light);
  font-size: 1.1rem;
  gap: 12px;
}

.cart-empty .empty-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--cream);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation: slideInRight 0.3s ease;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--umber);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--gold);
}

.qty-display {
  font-weight: 700;
  color: var(--umber);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--umber);
}

.cart-total-price {
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.cart-footer .btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 16px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.3px;
  z-index: 2;
  white-space: nowrap;
}

body.lang-fr .product-card-badge {
  inset-inline-start: 14px;
}

.product-card-img-wrap {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.06);
}

.product-card-placeholder {
  font-size: 3rem;
  letter-spacing: 8px;
  opacity: 0.75;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.25));
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-placeholder {
  transform: scale(1.1);
}

.product-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-card-category {
  font-size: 0.78rem;
  color: var(--olive);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.product-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--umber);
  margin: 0;
  font-family: 'Scheherazade New', serif;
  line-height: 1.3;
}

body.lang-fr .product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
  margin-top: auto;
}

.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card-price {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-card-price small {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.product-card-actions {
  display: flex;
  gap: 10px;
}

.product-card-actions .product-add-btn {
  flex: 1;
  justify-content: center;
  font-size: 0.92rem;
  padding: 11px 16px;
}

.product-card-actions .product-detail-btn {
  justify-content: center;
  font-size: 0.92rem;
  padding: 11px 20px;
}

.product-price span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--umber);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  font-family: 'Scheherazade New', serif;
}

body.lang-fr .add-to-cart-btn {
  font-family: 'Lato', sans-serif;
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: right 0.5s ease;
}

.add-to-cart-btn:hover::before {
  right: 130%;
}

.add-to-cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.45);
}

.add-to-cart-btn.added {
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  color: white;
}

/* ============================================
   ORDER MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(75, 54, 33, 0.6);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--umber), var(--umber-light));
  padding: 24px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.modal-header h3 {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: 'Scheherazade New', serif;
}

body.lang-fr .modal-header h3 {
  font-family: 'Playfair Display', serif;
}

.modal-header p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

body.lang-fr .modal-close {
  left: auto;
  right: 16px;
}

.modal-close:hover {
  background: rgba(255,255,255,0.3);
}

.modal-body {
  padding: 28px;
}

.modal-order-summary {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-order-summary h4 {
  font-size: 1rem;
  color: var(--umber);
  margin-bottom: 10px;
  font-family: 'Scheherazade New', serif;
}

.modal-order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 4px 0;
}

.modal-order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--umber);
  font-size: 1.05rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

/* Form Styles */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 6px;
  font-family: 'Scheherazade New', serif;
}

body.lang-fr .form-label {
  font-family: 'Lato', sans-serif;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: 'Amiri', serif;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}

body.lang-fr .form-input {
  direction: ltr;
  font-family: 'Lato', sans-serif;
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 8px;
  border-radius: var(--radius-md);
  font-family: 'Scheherazade New', serif;
}

body.lang-fr .form-submit-btn {
  font-family: 'Lato', sans-serif;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.toast {
  background: var(--umber);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-family: 'Scheherazade New', serif;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastIn 0.35s ease, toastOut 0.35s ease 2.5s forwards;
  white-space: nowrap;
}

.toast.success { background: var(--olive); }
.toast.error   { background: #c0392b; }
.toast.info    { background: var(--gold-dark); color: var(--umber); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--umber);
  color: rgba(255,255,255,0.85);
  padding: 50px 20px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 14px;
  filter: brightness(1.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: 'Scheherazade New', serif;
}

body.lang-fr .footer-col h4 {
  font-family: 'Playfair Display', serif;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-right: 6px;
}

body.lang-fr .footer-col ul li a:hover {
  padding-right: 0;
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger    { display: flex; }

  .section-padding { padding: 60px 0; }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .product-card-img-wrap { height: 150px; }

  .float-whatsapp {
    bottom: 20px;
    left: 16px;
  }

  body.lang-fr .float-whatsapp {
    left: auto;
    right: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card-body { padding: 12px 14px 14px; }
  .product-card-name { font-size: 1rem; }
  .product-price     { font-size: 1rem; }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    var(--cream)      0%,
    var(--cream-dark) 40%,
    rgba(212,175,55,0.08) 100%
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

/* Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.45;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
  top: -100px; left: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,142,35,0.2), transparent 70%);
  bottom: -80px; right: -80px;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  top: 40%; right: 25%;
}

/* Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-dark);
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 700;
  width: fit-content;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: waPulse 2s infinite;
}

.hero-title {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--umber);
}

.hero-title-sub {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-mid);
  font-weight: 500;
  display: block;
  margin-top: 6px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

body.lang-fr .btn-arrow {
  transform: scaleX(-1);
}

.btn:hover .btn-arrow {
  transform: translateX(-4px);
}

body.lang-fr .btn:hover .btn-arrow {
  transform: scaleX(-1) translateX(-4px);
}

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}

.trust-icon { font-size: 1rem; }

.trust-sep {
  color: rgba(212,175,55,0.5);
  font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring {
  width: clamp(260px, 35vw, 420px);
  height: clamp(260px, 35vw, 420px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(212,175,55,0.15),
    rgba(212,175,55,0.05) 60%,
    transparent
  );
  border: 2px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 12px rgba(212,175,55,0.05),
    0 0 0 28px rgba(212,175,55,0.03),
    var(--shadow-lg);
}

.hero-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(212,175,55,0.3));
}

.honey-drop {
  position: absolute;
  font-size: 1.8rem;
  animation: float 3s ease-in-out infinite;
}
.drop-1 { top: 10%; right: 5%;  animation-delay: 0s;    }
.drop-2 { bottom: 15%; left: 5%;  animation-delay: 1s;  }
.drop-3 { top: 40%; left: 0%;  animation-delay: 0.5s;   }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--umber), var(--umber-light));
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(212,175,55,0.04) 20px,
    rgba(212,175,55,0.04) 40px
  );
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 700;
  display: inline;
  vertical-align: super;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-sep {
  color: rgba(212,175,55,0.3);
  font-size: 2rem;
  padding: 0 4px;
}

/* ============================================
   FEATURED SECTION
   ============================================ */
.section-head {
  margin-bottom: 48px;
}

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* Skeleton Loader */
.product-skeleton {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  height: 340px;
  position: relative;
  overflow: hidden;
}

.product-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.5) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.section-cta {
  margin-top: 48px;
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-dark), rgba(212,175,55,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-strip-logo {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(212,175,55,0.25));
}

.about-float-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--umber);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  font-family: 'Scheherazade New', serif;
}

.float-badge-icon { font-size: 1.2rem; }

.about-strip-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-strip-text {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.section-title.text-start::after { margin-right: 0; }

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 600;
}

.feature-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid rgba(212,175,55,0.15);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.cat-card:hover::before { opacity: 1; }

.cat-card-icon {
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-card-icon {
  transform: scale(1.2) rotate(-5deg);
}

.cat-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--umber);
  font-family: 'Scheherazade New', serif;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

body.lang-fr .cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.cat-card:hover .cat-card-name { color: var(--umber); }

.cat-card-count {
  font-size: 0.85rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
  font-family: 'Lato', sans-serif;
}

.cat-card:hover .cat-card-count { color: rgba(75,54,33,0.7); }

.cat-card-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  margin-top: auto;
}

body.lang-fr .cat-card-arrow { transform: scaleX(-1); }

.cat-card:hover .cat-card-arrow {
  transform: translateX(-5px);
  color: var(--umber);
}

body.lang-fr .cat-card:hover .cat-card-arrow {
  transform: scaleX(-1) translateX(-5px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '❝';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 3rem;
  color: rgba(212,175,55,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

body[dir="rtl"] .testi-card::before {
  left: auto;
  right: 20px;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--umber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--umber);
}

.testi-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--umber) 0%, #3a2817 100%);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(107,142,35,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  font-family: 'Scheherazade New', serif;
}

body.lang-fr .cta-title { font-family: 'Playfair Display', serif; }

.cta-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  max-width: 500px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cta-btn-light {
  color: white !important;
  border-color: rgba(255,255,255,0.4) !important;
}

.cta-btn-light:hover {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
}

/* ============================================
   RESPONSIVE — HOME PAGE
   ============================================ */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 50px 20px;
  }

  .hero-content { align-items: center; }
  .hero-badge   { align-self: center; }
  .hero-btns    { justify-content: center; }
  .hero-trust   { justify-content: center; }

  .hero-visual {
    order: -1;
  }

  .hero-logo-ring {
    width: 220px;
    height: 220px;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-strip-content { align-items: center; }
  .about-features { text-align: right; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: 75px; }

  .hero-logo-ring {
    width: 180px;
    height: 180px;
  }

  .stats-grid {
    gap: 0;
  }

  .stat-item { padding: 10px 16px; }
  .stat-number { font-size: 1.8rem; }
  .stat-sep { display: none; }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cat-card { padding: 22px 16px; }

  .cta-btns { flex-direction: column; align-items: center; }

  .about-features { text-align: right; }
}
/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 145px 20px 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--umber) 0%, #2e1d0f 100%);
  z-index: 0;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(107,142,35,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.page-hero-icon {
  font-size: 2.8rem;
  animation: float 3s ease-in-out infinite;
}

.page-hero-title {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  font-weight: 700;
}

body.lang-fr .page-hero-title {
  font-family: 'Playfair Display', serif;
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.breadcrumb a {
  color: rgba(212,175,55,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb-sep {
  opacity: 0.5;
  font-size: 1rem;
}

/* ============================================
   PRODUCTS MAIN
   ============================================ */
.products-main { padding-top: 50px; }

/* ── Toolbar ── */
.products-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow-sm);
}

.search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  right: 14px;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

body.lang-fr .search-icon {
  right: auto;
  left: 14px;
}

.search-input {
  width: 100%;
  padding: 10px 42px 10px 38px;
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--umber);
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.search-clear {
  position: absolute;
  left: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  padding: 4px;
}

body.lang-fr .search-clear {
  left: auto;
  right: 12px;
}

.search-clear.visible {
  opacity: 1;
  pointer-events: auto;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-label {
  font-size: 0.88rem;
  color: var(--text-light);
  white-space: nowrap;
}

.sort-select {
  padding: 9px 14px;
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--umber);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.sort-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.view-toggle {
  display: flex;
  gap: 4px;
  border: 1.5px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.view-btn {
  padding: 8px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
  background: rgba(212,175,55,0.12);
  color: var(--gold-dark);
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(212,175,55,0.2);
  background: var(--white);
  color: var(--text-mid);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.filter-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-tab .tab-icon,
.filter-tab span {
  position: relative;
  z-index: 1;
}

.filter-tab:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.filter-tab.active {
  border-color: var(--gold);
  color: var(--umber);
  box-shadow: var(--shadow-sm);
}

.filter-tab.active::before { opacity: 1; }

.tab-count {
  background: rgba(75,54,33,0.1);
  color: var(--text-mid);
  border-radius: 50px;
  padding: 1px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}

.filter-tab.active .tab-count {
  background: rgba(75,54,33,0.2);
  color: var(--umber);
}

/* Active filter tags */
.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  min-height: 0;
}

.filter-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-xl);
  padding: 5px 12px;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.filter-tag button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--gold-dark);
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}

.filter-tag button:hover { opacity: 1; }

/* Results bar */
.results-bar {
  margin-bottom: 24px;
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
}

.results-count span:first-child {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1rem;
}

/* ── Products Grid View ── */
.products-grid.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Products List View ── */
.products-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Product card hover overlay */
.product-card-top {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

body.lang-fr .product-card-top {
  right: 12px;
  left: 12px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-card-overlay {
  display: none !important;
}

.quickview-btn {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.quickview-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

/* ── List Row ── */
.product-list-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 16px 20px;
  transition: var(--transition);
}

.product-list-row:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}

body.lang-fr .product-list-row:hover {
  transform: translateX(4px);
}

.list-row-img {
  width: 100px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.list-row-img img,
.list-row-img .product-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
}

.list-row-body {
  flex: 1;
}

.list-row-body .product-card-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.list-row-body .product-card-desc {
  font-size: 0.88rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-row-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text-mid);
  padding: 6px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-sm { padding: 8px 16px !important; font-size: 0.88rem !important; }

/* ── Empty state ── */
.products-empty {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.products-empty.hidden { display: none; }

.empty-state-icon {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

.products-empty h3 {
  font-size: 1.4rem;
  color: var(--umber);
  font-family: 'Scheherazade New', serif;
}

.products-empty p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.modal-wide {
  max-width: 800px;
  width: 95%;
  padding: 0;
  overflow: hidden;
}

.quickview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.quickview-img {
  position: relative;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quickview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-placeholder {
  font-size: 5rem;
  opacity: 0.6;
}

.qv-cat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--umber);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
}

body.lang-fr .qv-cat-badge {
  right: auto;
  left: 16px;
}

.quickview-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
}

.quickview-name {
  font-family: 'Scheherazade New', serif;
  font-size: 1.6rem;
  color: var(--umber);
  line-height: 1.3;
}

body.lang-fr .quickview-name {
  font-family: 'Playfair Display', serif;
}

.quickview-desc {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
}

.quickview-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.quickview-price .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: 'Lato', sans-serif;
}

.quickview-price .price-currency {
  font-size: 1rem;
  color: var(--text-light);
}

.quickview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quickview-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.quickview-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(212,175,55,0.15);
  margin-top: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.meta-icon {
  color: var(--olive);
  font-weight: 700;
}

/* ============================================
   RESPONSIVE — PRODUCTS PAGE
   ============================================ */
@media (max-width: 992px) {
  .products-grid.grid-view {
    grid-template-columns: repeat(2, 1fr);
  }

  .quickview-inner {
    grid-template-columns: 1fr;
  }

  .quickview-img {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-wrap { justify-content: space-between; }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  .products-grid.grid-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-list-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .list-row-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 380px) {
  .products-grid.grid-view {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Main Layout */
.contact-main {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ── Info Column ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 4px;
}

/* ── Contact Cards ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(212, 175, 55, 0.02)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateX(-6px);
}

body.lang-fr .contact-card:hover {
  transform: translateX(6px);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-wa {
  border-color: rgba(37, 211, 102, 0.2);
}

.contact-card-wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

/* Card Icon */
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.wa-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.1));
  border: 1.5px solid rgba(37, 211, 102, 0.25);
}

.email-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 150, 12, 0.1));
  border: 1.5px solid rgba(212, 175, 55, 0.25);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Card Body */
.contact-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.contact-card-body h4 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.05rem;
  color: var(--umber);
  font-weight: 700;
}

body.lang-fr .contact-card-body h4 {
  font-family: 'Playfair Display', serif;
}

.contact-card-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  direction: ltr;
  text-align: right;
}

body.lang-fr .contact-card-body p {
  text-align: left;
}

.contact-card-tag {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  width: fit-content;
  letter-spacing: 0.3px;
}

/* Card Arrow */
.contact-card-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

body.lang-fr .contact-card-arrow {
  transform: translateX(-8px);
}

.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Business Hours ── */
.contact-hours {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.1rem;
  color: var(--umber);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}

body.lang-fr .contact-hours h4 {
  font-family: 'Playfair Display', serif;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: var(--transition);
}

.hours-row:hover {
  background: rgba(212, 175, 55, 0.08);
}

.hours-time {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.9rem;
  direction: ltr;
}

/* ── Contact Form Card ── */
.contact-form-col {
  position: sticky;
  top: 100px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--olive));
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-header h3 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.5rem;
  color: var(--umber);
  margin-bottom: 6px;
}

body.lang-fr .contact-form-header h3 {
  font-family: 'Playfair Display', serif;
}

.contact-form-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Form Row (two columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Textarea specific */
.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.contact-form .form-submit-btn {
  margin-top: 4px;
  font-size: 1.05rem;
  padding: 16px 28px;
}

/* Spinner inside button */
.btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(75, 54, 33, 0.25);
  border-top-color: var(--umber);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ── Success State ── */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.success-icon {
  font-size: 4rem;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.contact-success h3 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.6rem;
  color: var(--olive);
}

body.lang-fr .contact-success h3 {
  font-family: 'Playfair Display', serif;
}

.contact-success p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 300px;
}

.contact-success .btn {
  margin-top: 8px;
}

/* ── Order Strip ── */
.order-strip {
  background: var(--cream-dark);
}

.order-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}

.order-strip-text h3 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.5rem;
  color: var(--umber);
  margin-bottom: 6px;
}

body.lang-fr .order-strip-text h3 {
  font-family: 'Playfair Display', serif;
}

.order-strip-text p {
  color: var(--text-light);
  font-size: 0.98rem;
}

/* ============================================
   CONTACT PAGE — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-col {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .order-strip-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 14px 16px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* ── Story Section ── */
.about-story {
  background: var(--cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}

/* ── Visual Side ── */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-main {
  width: clamp(260px, 35vw, 380px);
  height: clamp(260px, 35vw, 380px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(212, 175, 55, 0.18),
    rgba(212, 175, 55, 0.06) 60%,
    transparent
  );
  border: 2px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 14px rgba(212, 175, 55, 0.06),
    0 0 0 30px rgba(212, 175, 55, 0.03),
    var(--shadow-lg);
}

.about-visual-icon {
  font-size: clamp(4rem, 8vw, 6rem);
  filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.3));
  animation: float 3.5s ease-in-out infinite;
}

/* Floating Badges */
.about-visual-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  min-width: 90px;
  text-align: center;
  transition: var(--transition);
}

.about-visual-badge:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.about-badge-1 {
  top: 8%;
  right: -5%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0s;
}

.about-badge-2 {
  bottom: 8%;
  left: -5%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.about-badge-3 {
  top: 45%;
  left: -12%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.badge-num {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.about-visual-badge span:not(.badge-num) {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.3px;
}

/* Decorative spinning border */
.about-visual-decor {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.25);
  animation: spin 25s linear infinite;
  pointer-events: none;
}

/* ── Text Side ── */
.about-text-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-story-body p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* Values List */
.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.value-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateX(-4px);
}

body.lang-fr .value-item:hover {
  transform: translateX(4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.value-item:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: rotate(-8deg) scale(1.05);
}

.value-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-item strong {
  font-family: 'Scheherazade New', serif;
  font-size: 1rem;
  color: var(--umber);
  font-weight: 700;
}

body.lang-fr .value-item strong {
  font-family: 'Playfair Display', serif;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ── Highlights Section ── */
.about-highlights {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(212, 175, 55, 0.04) 100%
  );
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: right;
}

body.lang-fr .highlight-card::after {
  transform-origin: left;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.35);
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

.highlight-icon {
  font-size: 2.8rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.25) rotate(-8deg);
}

.highlight-card h3 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.2rem;
  color: var(--umber);
}

body.lang-fr .highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.highlight-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: 'Lato', sans-serif;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  margin-top: auto;
  text-decoration: none;
}

.highlight-link:hover {
  background: var(--gold);
  color: var(--umber);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Why Us Section ── */
.about-why {
  background: var(--cream-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(212, 175, 55, 0.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.05)
  );
  border: 2px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}

.why-card h4 {
  font-family: 'Scheherazade New', serif;
  font-size: 1.1rem;
  color: var(--umber);
}

body.lang-fr .why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

/* ── CTA Section ── */
.about-cta {
  background: var(--cream);
}

.cta-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(107, 142, 35, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 72px 40px;
}

.cta-content h2 {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
}

body.lang-fr .cta-content h2 {
  font-family: 'Playfair Display', serif;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cta-actions .btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Section Header (shared) ── */
.section-header {
  text-align: center;
  margin-bottom: 0;
}

.section-header .section-title::after {
  margin: 12px auto 0;
}

/* ============================================
   ABOUT PAGE — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .highlights-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-visual {
    order: -1;
  }

  .about-visual-main {
    width: 280px;
    height: 280px;
  }

  .about-badge-1 { right: 0; }
  .about-badge-2 { left: 0; }
  .about-badge-3 { left: -5%; }

  .about-text-side {
    align-items: center;
  }

  .value-item {
    text-align: right;
  }

  body.lang-fr .value-item {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .about-visual-main {
    width: 230px;
    height: 230px;
  }

  .about-badge-3 {
    display: none;
  }

  .highlights-grid,
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-content {
    padding: 50px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-visual-badge {
    padding: 7px 10px;
    min-width: 75px;
  }

  .badge-num {
    font-size: 1.1rem;
  }
}

/* ============================================
   SHARED — bg-cream utility
   ============================================ */
.bg-cream {
  background: var(--cream-dark) !important;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
  grid-template-areas: "info visual";
  margin-top: 20px;
}

/* RTL Layout - visual on right, info on left */
body[dir="rtl"] .product-detail-grid {
  grid-template-areas: "info visual";
}

/* LTR Layout (French) - visual on left, info on right */
body.lang-fr .product-detail-grid {
  grid-template-areas: "visual info";
}

.product-info-col {
  grid-area: info;
}

.product-visual-col {
  grid-area: visual;
}

/* --- Visual Column --- */
.product-main-img-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 95px;
  transition: var(--transition);
}

.product-main-img-wrap:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-detail-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  transition: var(--transition);
}

.product-main-img-wrap:hover .product-detail-img {
  transform: scale(1.025);
}

/* --- Info Column --- */
.product-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-detail-category {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-share-btn {
  background: transparent;
  border: 1.5px solid rgba(75, 54, 33, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--umber);
  transition: var(--transition);
}

.product-share-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(184, 150, 12, 0.2);
}

.product-detail-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 12px;
  font-family: 'Scheherazade New', serif;
  line-height: 1.25;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.rating-number {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #d1d5db; /* Grey empty stars */
}

.star-empty {
  fill: transparent;
}

/* --- Price Row --- */
.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.detail-active-price {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Lato', 'Amiri', serif;
}

.detail-original-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--text-light);
  font-family: 'Lato', serif;
}

.detail-discount-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Amiri', 'Lato', sans-serif;
}

/* --- Badges Row --- */
.product-detail-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.badge-stock {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-stock .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

/* The trust-building ONSSA badge requested by USER */
.badge-onssa {
  border: 1.5px solid #10b981;
  color: #10b981;
  background: rgba(16, 185, 129, 0.04);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-onssa .check-icon {
  stroke: #10b981;
  stroke-width: 3.5px;
}

/* --- Variations Selector --- */
.detail-variations-section {
  margin-bottom: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 20px;
}

.variation-label {
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  font-size: 1.05rem;
  color: var(--umber);
}

.variation-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.size-pill {
  background: var(--white);
  border: 1.5px solid rgba(75, 54, 33, 0.2);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Lato', 'Amiri', sans-serif;
  color: var(--umber);
}

.size-pill:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.size-pill.active {
  border-color: var(--gold-dark);
  background: var(--gold);
  color: var(--umber);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

/* --- Purchase controls row --- */
.product-detail-purchase-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 25px;
}

.detail-qty-picker {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(75, 54, 33, 0.2);
  border-radius: 30px;
  overflow: hidden;
  height: 50px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.qty-control-btn {
  width: 44px;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--umber);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.qty-control-btn:hover {
  background: rgba(75, 54, 33, 0.05);
}

.qty-number-input {
  width: 45px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--umber);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
  pointer-events: none;
}

/* Web App Conversion Buy Button in deep green */
.detail-buy-btn {
  flex: 1;
  min-width: 220px;
  height: 50px;
  background: #10b981;
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  font-family: 'Scheherazade New', 'Amiri', serif;
}

.detail-buy-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.detail-buy-btn:active {
  transform: translateY(0);
}

.detail-buy-btn svg {
  margin-inline-end: 4px;
}

/* --- Accordions --- */
.product-accordions {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.accordion-trigger {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--umber);
  text-align: start;
  font-family: 'Scheherazade New', 'Amiri', serif;
}

.accordion-chevron {
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 400px;
  padding: 0 24px 20px 24px;
  overflow-y: auto;
}

.accordion-content p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Specifications Table styling */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
}

.specs-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.specs-table tr td:first-child {
  font-weight: 700;
  color: var(--umber);
  width: 35%;
}

.specs-table tr td:last-child {
  color: var(--text-mid);
}

/* ============================================
   PRODUCT DETAIL PAGE — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "visual"
      "info";
    gap: 30px;
  }
  
  body[dir="rtl"] .product-detail-grid {
    grid-template-areas: 
      "visual"
      "info";
  }

  body.lang-fr .product-detail-grid {
    grid-template-areas: 
      "visual"
      "info";
  }
  
  .product-main-img-wrap {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .product-detail-title {
    font-size: 2.1rem;
  }
}

/* ============================================
   ACCOUNT & AUTHENTICATION STYLING
   ============================================ */
.account-btn {
  background: var(--cream-dark);
  color: var(--umber);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.account-btn:hover,
.account-btn.active {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(184, 150, 12, 0.35);
}

/* Auth Card */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  width: 100%;
  max-width: 480px;
  padding: 35px;
  animation: fadeInUp 0.4s ease;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 25px;
  gap: 10px;
}

.auth-tab-btn {
  flex: 1;
  padding: 10px 5px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-family: 'Scheherazade New', 'Amiri', serif;
}

body.lang-fr .auth-tab-btn {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

.auth-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: var(--transition);
}

.auth-tab-btn.active {
  color: var(--umber);
}

.auth-tab-btn.active::after {
  background: var(--gold);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.3s ease;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

/* Profile Column */
.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 30px;
  text-align: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--umber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 16px auto;
  border: 2px solid var(--gold);
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 4px;
}

.profile-email {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.profile-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: start;
  margin-bottom: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 20px;
}

body.lang-fr .profile-details-list {
  text-align: left;
}

body.lang-ar .profile-details-list {
  text-align: right;
}

.profile-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-detail-item .detail-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 700;
}

.profile-detail-item .detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Orders Column */
.orders-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 30px;
}

.orders-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 20px;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 10px;
}

.orders-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.orders-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  opacity: 0.4;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Order Card */
.order-card {
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--cream);
  transition: var(--transition);
}

.order-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-sm);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-id {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--umber);
  margin-inline-end: 10px;
}

.order-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Status Badges */
.order-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.order-status.status-pending {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
}

.order-status.status-shipping {
  background: rgba(52, 152, 219, 0.15);
  color: #2980b9;
}

.order-status.status-delivered {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* Order Items Table */
.order-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.order-total strong {
  color: var(--gold-dark);
  font-family: 'Lato', 'Amiri', serif;
  font-size: 1.15rem;
  margin-inline-start: 4px;
}

.order-cancel-btn {
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  border: none !important;
  box-shadow: none !important;
}

.order-cancel-btn:hover {
  background: #128C7E !important;
  transform: translateY(-1px) !important;
}

/* ============================================
   ACCOUNT RESPONSIVE
   ============================================ */
@media (max-width: 800px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   PREMIUM SVG ICONS STYLING
   ============================================ */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

/* Category SVG Colors and Glows */
.svg-honey {
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.25));
}
.svg-amlou {
  filter: drop-shadow(0 2px 6px rgba(180, 83, 9, 0.25));
}
.svg-oils {
  filter: drop-shadow(0 2px 6px rgba(101, 163, 13, 0.25));
}
.svg-bio {
  filter: drop-shadow(0 2px 6px rgba(13, 148, 136, 0.25));
}
.svg-pack {
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.25));
}

/* Hover effects for category SVGs */
.cat-card:hover .svg-icon,
.product-card:hover .svg-icon,
.pack-card:hover .svg-icon {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 4px 12px currentColor);
}

/* Utility alignments */
.btn .svg-icon {
  margin-inline-end: 8px;
}
.cart-btn .svg-icon {
  margin-inline-end: 0;
}
.empty-icon .svg-icon {
  margin-bottom: 15px;
}
.cart-item-img-placeholder {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.product-card-placeholder .svg-icon,
.pack-card-placeholder .svg-icon,
.quickview-placeholder .svg-icon {
  width: 48px;
  height: 48px;
}
.pack-product-tag .svg-icon {
  margin-inline-end: 4px;
}
.nav-cart-icon {
  margin-inline-end: 6px;
}

/* ============================================
   FEATURED SLIDER & ARROWS
   ============================================ */
.featured-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.featured-slider-wrapper .products-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 24px;
  width: 100%;
  padding: 15px 5px;
}

.featured-slider-wrapper .products-grid::-webkit-scrollbar {
  display: none;
}

.featured-slider-wrapper .product-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .featured-slider-wrapper .product-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .featured-slider-wrapper .products-grid {
    gap: 16px;
  }
  .featured-slider-wrapper .product-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .featured-slider-wrapper .product-card {
    flex: 0 0 85%;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.25);
  color: var(--umber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--umber);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.slider-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.prev-arrow {
  right: -24px;
}

.next-arrow {
  left: -24px;
}

body[dir="rtl"] .prev-arrow {
  right: auto;
  left: -24px;
}
body[dir="rtl"] .next-arrow {
  left: auto;
  right: -24px;
}

@media (max-width: 1250px) {
  .prev-arrow {
    right: -10px;
  }
  .next-arrow {
    left: -10px;
  }
  body[dir="rtl"] .prev-arrow {
    left: -10px;
    right: auto;
  }
  body[dir="rtl"] .next-arrow {
    right: -10px;
    left: auto;
  }
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
}

/* =─ ONSSA CHECK BADGE ─= */
.hero-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.onssa-badge {
  background: rgba(107, 142, 35, 0.12) !important;
  border: 1px solid rgba(107, 142, 35, 0.35) !important;
  color: var(--olive-dark) !important;
}

.hero-badge-check {
  font-weight: bold;
  color: var(--olive);
  margin-inline-end: 4px;
}




