/* =========================================================
   SECRETS OF HEALTH (أسرار الصحة) - MASTER STYLESHEET
   Luxury Emerald Green & Gold Botanical Aesthetic
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800&family=Cinzel:wght@600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Brand Palette */
  --primary-emerald: #145a32;
  --primary-dark: #0a331c;
  --primary-light: #1e7e45;
  --primary-deep: #072213;
  
  --gold-primary: #c8963e;
  --gold-dark: #9e7127;
  --gold-light: #e5b967;
  --gold-soft: #fcf6e9;
  
  --bg-cream: #fbf9f5;
  --bg-card: #ffffff;
  --bg-surface: #f4f1ea;
  
  --text-main: #1d2d22;
  --text-muted: #5e6d62;
  --text-light: #8e9c92;
  --text-white: #ffffff;
  
  --danger: #d9383a;
  --success: #28a745;
  --warning: #f39c12;
  
  --border-color: rgba(20, 90, 50, 0.12);
  --border-gold: rgba(200, 150, 62, 0.35);
  
  --shadow-sm: 0 2px 8px rgba(10, 51, 28, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 51, 28, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 51, 28, 0.12);
  --shadow-gold: 0 8px 25px rgba(200, 150, 62, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  
  --font-arabic: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Outfit', sans-serif;
}

/* Reset & Basics */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 70px 0;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.3;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px auto;
}

.section-header .badge-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
}

.section-header h2 span {
  color: var(--gold-primary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(20, 90, 50, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-emerald));
  box-shadow: 0 6px 20px rgba(20, 90, 50, 0.4);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-emerald);
  color: var(--primary-emerald);
}

.btn-outline:hover {
  background: var(--primary-emerald);
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* =========================================================
   TOP ANNOUNCEMENT MARQUEE TICKER (شريط متحرك مستمر)
   ========================================================= */
.top-bar-marquee {
  background: linear-gradient(90deg, #072514 0%, #0d4224 50%, #072514 100%);
  color: #ffffff;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 150, 62, 0.35);
  position: relative;
  z-index: 1001;
  font-size: 0.86rem;
  font-weight: 600;
  user-select: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: topMarqueeScroll 28s linear infinite;
}

.top-bar-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-left: 22px;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
}

.marquee-item strong,
.marquee-item .top-highlight {
  color: var(--gold-light);
  font-weight: 800;
}

.marquee-sep {
  color: var(--gold-primary);
  font-size: 0.85rem;
  opacity: 0.85;
}

@keyframes topMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* =========================================================
   HEADER & NAVBAR
   ========================================================= */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(20, 90, 50, 0.1);
  box-shadow: 0 4px 20px rgba(10, 51, 28, 0.06);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

/* Brand Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
  user-select: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #18683b 0%, #0d4224 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(13, 66, 36, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(200, 150, 62, 0.45);
  flex-shrink: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.logo-container:hover .logo-icon-box {
  box-shadow: 0 6px 18px rgba(13, 66, 36, 0.38), 0 0 0 2px rgba(200, 150, 62, 0.4);
}

.logo-icon-box svg {
  width: 32px;
  height: 32px;
}

.logo-official-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.logo-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-brand-ar {
  font-family: var(--font-arabic);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-brand-en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* Nav Menu */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.02rem;
  position: relative;
  padding: 8px 2px;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--primary-emerald));
  transition: width 0.25s ease;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-emerald);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cart-btn {
  position: relative;
  background: #f4f6f4;
  border: 1.5px solid rgba(20, 90, 50, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--primary-emerald);
}

.header-cart-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-cart-btn:hover {
  background: #ffffff;
  border-color: var(--primary-emerald);
  box-shadow: 0 4px 14px rgba(20, 90, 50, 0.18);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.4);
}

.menu-toggle-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f4f6f4;
  border: 1.5px solid rgba(20, 90, 50, 0.15);
  color: var(--primary-dark);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.menu-toggle-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle-btn:hover {
  background: #ffffff;
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

/* =========================================================
   MOBILE NAVIGATION DRAWER
   ========================================================= */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 34, 19, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-cream);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  color: var(--danger);
  border-color: var(--danger);
  transform: rotate(90deg);
}

.mobile-drawer-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #ffffff;
  border: 1px solid transparent;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: var(--gold-soft);
  color: var(--primary-emerald);
  border-color: var(--border-gold);
}

.mobile-drawer-link span.drawer-icon {
  font-size: 1.2rem;
}

.mobile-drawer-footer {
  padding: 18px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mobile-drawer-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-emerald);
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

/* =========================================================
   HERO BANNER SECTION (IMAGE BANNER + SHARP RECTANGULAR CTA)
   ========================================================= */
.hero-banner-section {
  position: relative;
  background: #f1f8f3;
  width: 100%;
  overflow: hidden;
}

.hero-banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  line-height: 0;
}

.hero-banner-desktop-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner-mobile-img {
  display: none;
}

.hero-sharp-cta-btn {
  position: absolute;
  top: 94.7%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  background: linear-gradient(135deg, #e8be70 0%, #c8963e 50%, #9e7127 100%);
  color: #052110 !important;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 13px 38px;
  border-radius: 0px !important; /* مستطيل بحواف مدببة حادة */
  border: 2px solid #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-sharp-cta-btn:hover {
  background: linear-gradient(135deg, #f7d58b 0%, #d8a54c 50%, #b0812d 100%);
  transform: translate(-50%, -50%) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  border-color: #fcf6e9;
}

.sharp-cta-arrow {
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.hero-sharp-cta-btn:hover .sharp-cta-arrow {
  transform: translateX(-4px);
}

/* =========================================================
   FEATURES BAR (SINGLE HORIZONTAL ROW)
   ========================================================= */
.features-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 3;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
}

.feature-box {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-cream);
  border: 1px solid rgba(200, 150, 62, 0.22);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.feature-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 51, 28, 0.08);
  background: #ffffff;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-info {
  min-width: 0;
  overflow: hidden;
}

.feature-info h4 {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* =========================================================
   SHOP / PRODUCTS SECTION & CATEGORY TABS SLIDER
   ========================================================= */
.shop-controls {
  margin-bottom: 35px;
}

.search-filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.search-input-box {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.search-input-box input {
  width: 100%;
  padding: 13px 46px 13px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.search-input-box input:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 4px rgba(20, 90, 50, 0.12);
}

.search-icon-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
}

.category-tabs-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.cat-nav-arrow {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  flex-shrink: 0;
}

.cat-nav-arrow:hover {
  background: var(--primary-emerald);
  color: #ffffff;
  border-color: var(--primary-emerald);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(20, 90, 50, 0.25);
}

.cat-nav-arrow svg {
  width: 18px;
  height: 18px;
}

.category-tabs-track {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px;
  flex-grow: 1;
}

.category-tabs-track::-webkit-scrollbar {
  display: none;
}

.cat-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-tab-btn:hover {
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
  transform: translateY(-1px);
}

.cat-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-dark));
  border-color: var(--primary-emerald);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(20, 90, 50, 0.25);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 90, 50, 0.3);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  background: #f8f6f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  cursor: pointer;
}

.product-title:hover {
  color: var(--primary-emerald);
}

.product-short-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
}

.product-price-box {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
}

.product-price-current {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-emerald);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.product-price-current span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-actions-btn-group {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6px;
  width: 100%;
}

.product-actions-btn-group .btn {
  padding: 8px 6px;
  font-size: 0.84rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* =========================================================
   PRODUCT MODAL (QUICK VIEW)
   ========================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 34, 19, 0.7);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-surface);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--danger);
  color: #ffffff;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  padding: 30px;
}

.modal-image-col img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.modal-details-col {
  display: flex;
  flex-direction: column;
}

.modal-badge {
  align-self: flex-start;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.modal-price-tag {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-emerald);
  margin-bottom: 14px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.modal-features-list {
  margin-bottom: 20px;
}

.modal-features-list li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-features-list li::before {
  content: '✓';
  color: var(--primary-emerald);
  font-weight: 900;
}

.modal-cart-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 38px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.qty-input {
  width: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
}

/* =========================================================
   SLIDING CART DRAWER
   ========================================================= */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 34, 19, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 10px 0 30px rgba(0,0,0,0.15);
}

.cart-drawer-backdrop.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px;
  background: var(--primary-deep);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.cart-drawer-footer {
  padding: 20px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cart-summary-row.total-row {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-dark);
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
  margin-bottom: 18px;
}

/* =========================================================
   ABOUT / TRUST SECTION
   ========================================================= */
.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.about-img-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 30px 0;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.bullet-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-emerald);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 1rem;
  color: var(--primary-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =========================================================
   CALL TO ACTION & FOOTER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-emerald));
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 28px auto;
  font-size: 1.1rem;
}

footer {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 60px 0 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-right: 6px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   FLOATING CART & MOBILE BOTTOM NAV
   ========================================================= */
.floating-cart-btn {
  position: fixed;
  bottom: 85px;
  left: 20px;
  background: var(--primary-emerald);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(20, 90, 50, 0.4);
  cursor: pointer;
  z-index: 9999;
  border: 2px solid #ffffff;
  transition: transform 0.25s ease;
}

.floating-cart-btn:hover {
  transform: scale(1.08);
}

.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--danger);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 99999;
  padding: 6px 12px;
  justify-content: space-around;
  align-items: center;
}

.nav-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-bottom-item.active {
  color: var(--primary-emerald);
}

.nav-bottom-icon {
  font-size: 1.3rem;
  position: relative;
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 28px auto;
  }
  .hero-badges-list, .hero-cta-group {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .top-bar-marquee {
    padding: 6px 0;
    font-size: 0.78rem;
  }

  .header-container {
    height: 64px;
    padding: 0 12px;
  }

  .logo-container {
    gap: 8px;
  }

  .logo-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .logo-icon-box svg {
    width: 26px;
    height: 26px;
  }

  .logo-brand-ar {
    font-size: 1.15rem;
  }

  .logo-brand-en {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
  }

  .nav-menu, .header-actions .btn {
    display: none;
  }

  .menu-toggle-btn {
    display: flex;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .floating-cart-btn {
    display: none !important; /* Mobile bottom navigation already contains cart */
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .hero-sharp-cta-btn {
    padding: 11px 28px !important;
    font-size: 0.95rem !important;
    min-width: 190px !important;
    top: 94.7% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-sharp-cta-btn:hover {
    transform: translate(-50%, -50%) translateY(-2px) !important;
  }

  /* Features Bar in Single Horizontal Line on Mobile */
  .features-bar {
    padding: 10px 0;
  }

  .features-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    padding: 0 4px;
  }

  .feature-box {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    padding: 6px 2px;
    border-radius: 8px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .feature-info {
    width: 100%;
    text-align: center;
  }

  .feature-info h4 {
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }

  .feature-info p {
    font-size: 0.52rem;
    line-height: 1.1;
    color: var(--text-muted);
    text-align: center;
  }

  /* Category tabs slider on mobile */
  .category-tabs-slider-wrapper {
    gap: 4px;
  }

  .cat-nav-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .cat-nav-arrow svg {
    width: 15px;
    height: 15px;
  }

  .cat-tab-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  /* Products Grid - 2 Cards Side-by-Side in the Same Line on Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-badge {
    top: 6px;
    right: 6px;
    font-size: 0.62rem;
    padding: 2px 7px;
  }

  .product-image-container {
    height: 135px !important;
  }

  .product-card-body {
    padding: 10px 8px !important;
  }

  .product-category-tag {
    font-size: 0.68rem;
    margin-bottom: 2px;
  }

  .product-title {
    font-size: 0.84rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    min-height: 2.3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-short-desc {
    display: none !important;
  }

  .product-footer {
    padding-top: 6px !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .product-price-box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
  }

  .product-price-current {
    font-size: 1.05rem !important;
  }

  .product-price-current span {
    font-size: 0.72rem !important;
  }

  .product-price-old {
    font-size: 0.74rem !important;
  }

  .product-actions-btn-group {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .product-actions-btn-group .btn {
    padding: 7px 2px !important;
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .logo-brand-ar {
    font-size: 1.05rem;
  }
  .logo-brand-en {
    font-size: 0.52rem;
  }
  .top-bar-text {
    font-size: 0.72rem;
  }
  .feature-info p {
    display: none; /* Ultra clean for very small screens */
  }
}

/* =========================================================
   DESKTOP VS MOBILE HERO ADAPTATIONS
   ========================================================= */
@media (min-width: 769px) {
  .home-page .top-bar-marquee {
    display: none;
  }

  .home-page header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
  }

  .home-page header.header-scrolled {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(20, 90, 50, 0.1);
    box-shadow: 0 4px 20px rgba(10, 51, 28, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .features-bar {
    display: none !important;
  }

  .hero-sharp-cta-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-banner-desktop-img {
    display: none !important;
  }
  .hero-banner-mobile-img {
    display: block !important;
    width: 100%;
    height: auto;
  }
}
