
:root {
  --primary-green: #1b4332;
  --secondary-green: #2d6a4f;
  --accent-green: #52b788;
  --light-green: #e8f5e9;
  --gold: #c5a059;
  --gold-light: #e6d5b8;
  --gold-dark: #9e782f;
  --white: #ffffff;
  --bg-light: #fafcfa;
  --bg-dark: #122b20;
  --text-dark: #202b24;
  --text-light: #64748b;
  --text-white: #ffffff;
  --font-title: 'Alexandria', 'Cairo', sans-serif;
  --font-body: 'Cairo', sans-serif;
  --border-radius-sm: 0px;
  --border-radius-md: 0px;
  --border-radius-lg: 0px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 12px 24px -4px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 20px 40px -8px rgba(27, 67, 50, 0.12);
  --max-width: 1200px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary-green);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-green);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-green);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--light-green);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
}

/* Common UI Elements */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 0px !important;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 16px;
  gap: 8px;
  font-family: var(--font-body);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 0px !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
  border-radius: 0px !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  border-radius: 0px !important;
}

.btn-secondary:hover {
  background: var(--gold-light);
  border-color: var(--gold-dark);
  color: var(--primary-green);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  border-radius: 0px !important;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.tab-btn, .card-btn, .btn-add-to-cart, .form-submit-btn, .submit-btn-large, button, input[type="submit"] {
  border-radius: 0px !important;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-green), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.logo-image:hover {
  transform: scale(1.06);
}

.logo-footer {
  width: 52px;
  height: 52px;
  background-color: var(--white);
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--gold-light);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  line-height: 1.2;
}

.logo-text span {
  font-size: 11.5px;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #f7f4ed 0%, #ffffff 100%);
  box-sizing: border-box;
}

.hero-slider-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: #fdfbf7;
  user-select: none;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.985);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hero-slide-link:hover .hero-slide-img {
  transform: scale(1.012);
}

/* Slider Navigation Buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--primary-green, #1b4332);
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-slider-btn svg {
  pointer-events: none;
  display: block;
}

.hero-slider-btn:hover {
  background: var(--primary-green, #1b4332);
  color: #ffffff;
  border-color: var(--gold, #c5a059);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.hero-prev-btn {
  right: 16px;
}

.hero-next-btn {
  left: 16px;
}

/* Slider Pagination Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold, #c5a059), #f0d28b);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Slider */
@media (max-width: 768px) {
  .hero-slider-section {
    padding-top: 86px;
    padding-bottom: 14px;
  }
  .hero-slider-container {
    padding: 0 10px;
  }
  .hero-slider-wrapper {
    border-radius: 12px;
  }
  .hero-slider-btn {
    width: 34px;
    height: 34px;
  }
  .hero-prev-btn {
    right: 8px;
  }
  .hero-next-btn {
    left: 8px;
  }
  .hero-slider-dots {
    bottom: 8px;
    padding: 4px 10px;
    gap: 6px;
  }
  .hero-dot {
    width: 7px;
    height: 7px;
  }
  .hero-dot.active {
    width: 20px;
  }
}

/* ==========================================================================
   About Section (لماذا تختار بيت الصحة)
   ========================================================================== */
.about {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

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

.about-image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.about-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(197, 160, 89, 0.2);
  background: #fdfbf7;
  transition: all 0.35s ease;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--gold, #c5a059);
}

.about-img-box:hover img {
  transform: scale(1.06);
}

/* Staggered visual offset on desktop */
@media (min-width: 901px) {
  .about-img-box:nth-child(2),
  .about-img-box:nth-child(4) {
    transform: translateY(16px);
  }
  .about-img-box:nth-child(2):hover,
  .about-img-box:nth-child(4):hover {
    transform: translateY(10px);
  }
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.12);
  color: var(--primary-green, #1b4332);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(82, 183, 136, 0.25);
}

.about-content {
  text-align: right;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-green, #1b4332);
  line-height: 1.35;
  margin-bottom: 18px;
  font-family: var(--font-title, 'Alexandria', sans-serif);
}

.about-content h2 span {
  background: linear-gradient(135deg, var(--gold-dark, #a37a3e), var(--gold, #c5a059));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  font-size: 16.5px !important;
  line-height: 1.8 !important;
  color: #1e293b !important;
  font-weight: 600 !important;
  margin-bottom: 14px !important;
}

.about-content p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
  text-align: right;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fdfbf7;
  border: 1px solid rgba(197, 160, 89, 0.22);
  padding: 12px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.highlight-item:hover {
  background: #ffffff;
  border-color: var(--gold, #c5a059);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.18);
  color: var(--primary-green, #1b4332);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 700;
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.4;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px !important;
}

/* About Mobile Responsive */
@media (max-width: 900px) {
  .about {
    padding: 40px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-content {
    order: 1;
  }
  .about-image-container {
    order: 2;
    gap: 14px;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .about-img-box img {
    height: 170px;
  }
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .about-content h2 {
    font-size: 24px;
  }
  .about-lead {
    font-size: 15px !important;
  }
  .about-content p {
    font-size: 14px;
  }
  .about-img-box img {
    height: 140px;
  }
}

/* Shop Section */
.shop {
  background-color: var(--bg-light);
}

.shop-controls {
  margin-bottom: 40px;
}

.search-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
  min-width: 250px;
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(197, 160, 89, 0.25);
  font-family: var(--font-body);
  font-size: 15px;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-box input:focus {
  outline: none;
  border-color: var(--secondary-green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.search-box .search-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 18px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background: var(--light-green);
  border-color: var(--secondary-green);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 10px rgba(45, 106, 79, 0.25);
}

/* Products Grid - 4 Columns on Desktop (PC) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-height: 300px;
}

.reveal-enabled .product-card:not(.revealed) {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  pointer-events: none;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(27, 67, 50, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.16);
  display: flex;
  flex-direction: column;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
  will-change: opacity, transform;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.product-card.revealed:hover,
.product-card:not(.reveal-enabled *):hover {
  transform: translateY(-6px) scale(1);
  box-shadow: 0 14px 28px rgba(27, 67, 50, 0.1);
  border-color: rgba(197, 160, 89, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .product-card:not(.revealed),
  .product-card,
  .product-card.revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}

.product-card:hover .product-title {
  color: var(--secondary-green);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  background-color: #fbfbf9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.badge-bestseller {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.badge-promo-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #e63946, #d90429);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 7px 4px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.product-gallery .badge-promo-banner {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.product-info-wrapper {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-tag {
  font-size: 11.5px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 5px;
}

.product-title {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-dark);
}

.product-description {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.45;
  height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 67, 50, 0.06);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price span:first-child {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 21px;
  font-weight: 700;
  color: var(--secondary-green);
  line-height: 1.1;
  transition: color var(--transition-fast);
  display: inline-block;
}

.product-card:hover .current-price {
  color: var(--gold-dark);
}

.discount-badge {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
  display: inline-block;
}

.current-price::after {
  content: ' ج.م';
  font-size: 12.5px;
  font-weight: 600;
}

.old-price {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: line-through;
}

.old-price::after {
  content: ' ج.م';
  font-size: 10px;
  font-weight: 400;
}

.card-btn {
  width: 36px;
  height: 36px;
  background: var(--light-green);
  color: var(--primary-green);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 24px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.card-btn:hover {
  background: var(--secondary-green);
  color: var(--white);
  transform: scale(1.05);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
}

.no-results i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
}

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

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 80px;
  color: rgba(197, 160, 89, 0.1);
  font-family: serif;
  line-height: 1;
}

.stars {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 15px;
}

.testimonial-content {
  font-size: 14.5px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--gold-light);
}

.user-details h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.user-details span {
  font-size: 12px;
  color: var(--text-light);
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, var(--bg-dark), var(--primary-green));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-content {
  max-width: 600px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content h2 span {
  color: var(--gold-light);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 15px;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px;
  border-top: 3px solid var(--gold);
}

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

.footer-brand .logo-container {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .logo-icon {
  border-color: var(--bg-dark);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--gold-light);
}

.footer-brand p {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14.5px;
  transition: var(--transition-fast);
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.contact-info-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 4px;
}

.contact-info-item span {
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Modal Windows (Glassmorphism backdrop) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 43, 32, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000000 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: var(--white);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 160, 89, 0.2);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-fast);
  color: var(--primary-green);
  font-size: 20px;
}

.modal-close-btn:hover {
  background: var(--light-green);
  color: var(--primary-green);
  transform: rotate(90deg);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100%;
}

.modal-img-col {
  background-color: #f7faf8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.modal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-detail-col {
  padding: 40px;
}

.modal-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(82, 183, 136, 0.2);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary-green);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.modal-price .current-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary-green);
}

.modal-price .current-price::after {
  content: ' ج.م';
  font-size: 16px;
  font-weight: 400;
}

.modal-price .old-price {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.modal-price .old-price::after {
  content: ' ج.م';
  font-size: 11px;
  font-weight: 400;
}

.modal-subtitle {
  font-size: 16px;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
}

.modal-subtitle::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.modal-desc {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
}

.modal-list li::before {
  content: '✓';
  color: var(--secondary-green);
  font-weight: bold;
  flex-shrink: 0;
}

/* Order Form in Modal */
.order-form-container {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px dashed rgba(197, 160, 89, 0.3);
}

.order-form h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(197, 160, 89, 0.25);
  font-family: var(--font-body);
  font-size: 14px;
  background-color: var(--bg-light);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-green);
  background-color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-circle-bg {
    width: 320px;
    height: 320px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .logo-text {
    font-size: 20px;
  }
  .logo-text span {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .header-container {
    height: 70px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .logo-container {
    position: static;
    transform: none;
    flex-shrink: 0;
  }

  .footer-brand .logo-container {
    position: static;
    transform: none;
    display: inline-flex;
    justify-content: flex-start;
  }

  .logo-image {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 18px;
    font-weight: 700;
  }

  .header-container .logo-text span {
    display: none;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 2px solid var(--light-green);
    box-shadow: var(--shadow-lg);
    gap: 15px;
    z-index: 999;
  }
  
  nav.open {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: flex-start;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14.5px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    margin: 0;
  }

  .header-actions .btn {
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 10;
    padding: 6px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  .logo-image {
    width: 36px;
    height: 36px;
  }
  .logo-text {
    font-size: 16px;
  }
  .header-actions .btn {
    padding: 6px 10px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    order: -1;
  }
  
  .hero-circle-bg {
    width: 280px;
    height: 280px;
  }
  
  .hero-image {
    max-height: 350px;
  }
  
  .search-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box {
    max-width: 100%;
  }
  
  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: space-between;
  }
  
  .category-tabs .tab-btn {
    flex: 1 1 calc(50% - 4px);
    width: calc(50% - 4px);
    text-align: center;
    padding: 8px 4px;
    font-size: 13px;
    margin: 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-img-wrapper {
    height: 150px;
  }

  .product-info-wrapper {
    padding: 10px;
  }

  .product-title {
    font-size: 14px;
    height: 38px;
    margin-bottom: 4px;
  }

  .product-description {
    font-size: 11px;
    height: 48px;
    margin-bottom: 8px;
  }

  .product-footer {
    padding-top: 8px;
  }

  .product-price span:first-child {
    font-size: 11px;
  }

  .price-amount {
    font-size: 13px;
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }

  .price-amount .current-price {
    font-size: 15px;
  }

  .current-price::after {
    font-size: 10px;
  }

  .price-amount .old-price {
    font-size: 11px;
  }

  .old-price::after {
    font-size: 8px;
  }

  .price-amount .discount-badge {
    font-size: 9px;
    padding: 2px 4px;
    margin-right: 0;
    margin-top: 2px;
  }

  .card-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .modal-content-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-img-col {
    height: 250px;
  }
  
  .modal-detail-col {
    padding: 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   Shopping Cart, Floating Cart & Drawer Styles
   ========================================================================== */

/* Quantity Selector in Modal */
.modal-cart-action {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px dashed rgba(197, 160, 89, 0.3);
}

/* Added state feedback for buttons */
.card-btn.added {
  background: var(--accent-green) !important;
  color: var(--white) !important;
  border-color: var(--accent-green) !important;
  transform: scale(1.1);
}

.btn-add-to-cart.added {
  background: linear-gradient(135deg, var(--accent-green), var(--secondary-green)) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(82, 183, 136, 0.3) !important;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--border-radius-sm);
  background: var(--bg-light);
  overflow: hidden;
  height: 48px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-green);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: var(--light-green);
}

.qty-selector input {
  width: 50px;
  height: 100%;
  border: none;
  border-left: 1px solid rgba(197, 160, 89, 0.15);
  border-right: 1px solid rgba(197, 160, 89, 0.15);
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  background: var(--white);
}

.qty-selector input:focus {
  outline: none;
}

.btn-add-to-cart {
  flex-grow: 1;
  height: 48px;
  font-size: 16px;
}

/* Floating Cart Button */
.floating-cart {
  position: fixed;
  bottom: 30px;
  left: 30px; /* Left side for RTL */
  z-index: 999;
  cursor: pointer;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart.show {
  transform: scale(1);
}

.cart-icon-wrapper {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(27, 67, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  position: relative;
  transition: var(--transition-smooth);
}

.cart-icon-wrapper:hover {
  transform: translateY(-5px) rotate(-8deg);
  box-shadow: 0 15px 30px rgba(27, 67, 50, 0.4);
}

.cart-icon {
  font-size: 26px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e63946;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  animation: pulseCount 2s infinite;
}

@keyframes pulseCount {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Cart Drawer Backdrop & Sidebar Drawer */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 43, 32, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000000 !important;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.show {
  display: block;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: -450px; /* Slide in from left for RTL */
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  box-shadow: 10px 0 30px rgba(18, 43, 32, 0.15);
  z-index: 10000001 !important;
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-backdrop.show .cart-drawer {
  left: 0;
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
}

.cart-drawer-header h3 {
  font-size: 20px;
  color: var(--primary-green);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.cart-drawer-close:hover {
  color: var(--primary-green);
  transform: rotate(90deg);
}

.cart-drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  padding-bottom: 120px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cart Items Styling */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(27, 67, 50, 0.05);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  border: 1px solid rgba(197, 160, 89, 0.15);
  background-color: var(--bg-light);
}

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

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
  line-height: 1.4;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-green);
}

.cart-item-price::after {
  content: ' ج.م';
  font-size: 11px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 32px;
}

.cart-item-qty .qty-btn {
  width: 25px;
  font-size: 14px;
}

.cart-item-qty input {
  width: 30px;
  height: 100%;
  border: none;
  border-left: 1px solid rgba(197, 160, 89, 0.1);
  border-right: 1px solid rgba(197, 160, 89, 0.1);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  background: var(--white);
}

.cart-item-qty input:focus {
  outline: none;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #e63946;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 2px 5px;
}

.cart-item-remove:hover {
  text-decoration: underline;
}

/* Empty Cart Style */
.empty-cart-message {
  text-align: center;
  padding: 40px 0;
  color: var(--text-light);
}

.empty-cart-message i {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

/* Cart Summary Styling */
.cart-summary {
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 16px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-light);
}

.summary-row.total-row {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 8px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--primary-green);
  font-size: 16px;
}

.summary-row.total-row span:last-child::after {
  content: ' ج.م';
  font-size: 12px;
  font-weight: 400;
}

/* Checkout Form in Cart */
.cart-checkout-form-container {
  margin-top: 10px;
  border-top: 2px dashed rgba(197, 160, 89, 0.3);
  padding-top: 20px;
}

.cart-checkout-form h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--primary-green);
}

@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
    left: -100%;
  }
  .cart-drawer-backdrop.show .cart-drawer {
    left: 0;
  }
  .floating-cart {
    bottom: 85px;
    left: 20px;
  }
}

/* Mobile Bottom Navigation Bar (Matching Reference Design) */
.mobile-bottom-nav {
  display: none;
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: #fdfbf7;
  border-top: 1px solid rgba(140, 111, 72, 0.18);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  height: 66px;
  padding: 6px 8px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  z-index: 999999;
  direction: ltr !important;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-around !important;
  }
  body {
    padding-bottom: 75px !important;
  }
  .floating-cart {
    display: none !important;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  text-decoration: none;
  color: #7d6350;
  font-family: var(--font-body), sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: transform 0.15s ease, color 0.15s ease;
}

.bottom-nav-item:active {
  transform: scale(0.92);
}

.bottom-nav-item.active {
  color: var(--gold-dark, #a37a3e);
  font-weight: 700;
}

.nav-icon-box {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-box svg {
  width: 22px;
  height: 22px;
  fill: #8c6f48;
  transition: fill 0.2s ease;
}

.bottom-nav-item.active .nav-icon-box svg {
  fill: var(--gold-dark, #a37a3e);
}

/* WhatsApp Icon Special Green */
.whatsapp-item {
  color: #25D366;
}

.whatsapp-icon-box svg {
  fill: #25D366 !important;
}

/* Cart Badge */
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #e63946;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid #fdfbf7;
}

/* Package Selector Styles */
.package-selector-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: block;
}
.package-cards-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.package-card {
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdfbf7;
}
.package-card:hover {
  border-color: var(--gold-dark);
  background-color: #fcf9f2;
}
.package-card.selected {
  border-color: var(--secondary-green);
  background-color: #f2f8f4;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.08);
  border-width: 2px;
  padding: 11px 13px;
}
.package-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.package-card-radio {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-green);
  cursor: pointer;
}
.package-card-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary-green);
}

/* ==========================================================================
   Horizontal Product Carousel Styles (Best Sellers, Men, Women)
   ========================================================================== */
.section-carousel {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}

.section-carousel.bg-alt {
  background-color: #faf7f2;
}

.section-carousel.bg-white {
  background-color: #ffffff;
}

.carousel-header-box {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.carousel-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #b77b58;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-heading), 'Alexandria', sans-serif;
}

.carousel-title {
  font-size: 32px;
  font-weight: 800;
  color: #2b1e17;
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-heading), 'Alexandria', sans-serif;
}

.carousel-title span {
  color: var(--gold-dark, #a37a3e);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.product-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 12px 2px 24px 2px;
}

.product-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome / Safari / Edge */
}

.product-carousel-track .product-card {
  flex: 0 0 calc((100% - (3 * 20px)) / 4);
  width: calc((100% - (3 * 20px)) / 4);
  max-width: calc((100% - (3 * 20px)) / 4);
  min-width: calc((100% - (3 * 20px)) / 4);
  scroll-snap-align: start;
  margin-bottom: 2px;
}

/* Floating Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary-green, #1b4332);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s ease;
  padding: 0;
}

.carousel-arrow svg {
  pointer-events: none;
  display: block;
}

.carousel-arrow:hover {
  background: var(--primary-green, #1b4332);
  color: #ffffff;
  border-color: var(--gold, #c5a059);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.28);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-arrow.prev-arrow {
  right: -22px;
}

.carousel-arrow.next-arrow {
  left: -22px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  .product-carousel-track {
    gap: 16px;
  }
  .product-carousel-track .product-card {
    flex: 0 0 calc((100% - (2 * 16px)) / 3);
    width: calc((100% - (2 * 16px)) / 3);
    max-width: calc((100% - (2 * 16px)) / 3);
    min-width: calc((100% - (2 * 16px)) / 3);
  }
  .carousel-arrow.prev-arrow {
    right: -10px;
  }
  .carousel-arrow.next-arrow {
    left: -10px;
  }
}

@media (max-width: 768px) {
  .section-carousel {
    padding: 38px 0;
  }
  .carousel-title {
    font-size: 24px;
  }
  .carousel-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .product-carousel-track {
    gap: 16px;
    padding: 8px 2px 18px 2px;
  }
  .product-carousel-track .product-card {
    flex: 0 0 235px;
    width: 235px;
    max-width: 235px;
  }
  .product-carousel-track .product-img-wrapper {
    height: 200px;
  }
  .product-carousel-track .product-title {
    font-size: 15px;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow.prev-arrow {
    right: -4px;
  }
  .carousel-arrow.next-arrow {
    left: -4px;
  }
}

/* ==========================================================================
   Featured Promotional Dual Banners Section
   ========================================================================== */
.promo-dual-banners-section {
  padding: 16px 0 32px 0;
  background: linear-gradient(180deg, #f7f4ed 0%, #ffffff 100%);
}

.promo-dual-banners-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.promo-banner-card {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(197, 160, 89, 0.3);
  background: #ffffff;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
}

.promo-banner-card.promo-banner-parsa {
  flex: 0.844;
}

.promo-banner-card.promo-banner-scar {
  flex: 1.333;
}

.promo-banner-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.promo-banner-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.promo-banner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(27, 67, 50, 0.18);
  border-color: var(--gold, #c5a059);
}

.promo-banner-card:hover .promo-banner-inner img {
  transform: scale(1.025);
}

.promo-banner-card:active {
  transform: translateY(-2px) scale(0.99);
}

@media (max-width: 768px) {
  .promo-dual-banners-section {
    padding: 10px 0 24px 0;
  }
  .promo-dual-banners-grid {
    gap: 12px;
  }
  .promo-banner-card {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .promo-dual-banners-section {
    padding: 8px 0 18px 0;
  }
  .promo-dual-banners-grid {
    gap: 8px;
  }
  .promo-banner-card {
    border-radius: 10px;
  }
}

