@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

:root {
  --color-primary-dark: #093c13;
  --color-primary-mid: #0f541d;
  --color-primary-green: #178328;
  --color-primary-light: #25a438;

  --color-accent-gold: #e2b057;
  --color-accent-gold-light: #f7d788;
  --color-accent-gold-soft: #fbf0d9;
  
  --color-accent-orange: #f28b24;
  --color-accent-orange-dark: #d66f0e;

  --color-bg-light: #faf8f3;
  --color-bg-white: #ffffff;
  --color-bg-cream: #f4eee2;
  --color-bg-dark-green: #154C09;

  --color-text-main: #1d261e;
  --color-text-muted: #576559;
  --color-text-light: #f5f7f5;
  --color-text-gold: #e8b95d;

  --font-family-arabic: 'Cairo', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-glow-green: 0 0 20px rgba(37, 164, 56, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Title Component */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary-mid);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-badge::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 32px;
  background-color: var(--color-accent-orange);
  border-radius: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-primary-mid);
  color: var(--color-bg-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-green);
}

.btn-secondary {
  background-color: var(--color-bg-white);
  color: var(--color-primary-mid);
  border: 2px solid var(--color-primary-mid);
}

.btn-secondary:hover {
  background-color: var(--color-primary-mid);
  color: var(--color-bg-white);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(237, 198, 144, 0.27);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.4rem 0;
  transition: all 0.3s ease;
}

/* WordPress Admin Bar Offset Compatibility */
body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

body.admin-bar .mobile-nav-overlay {
  top: 32px;
  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
}

body.admin-bar .mobile-nav-close {
  top: 52px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .mobile-nav-overlay {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }

  body.admin-bar .mobile-nav-close {
    top: 62px;
  }
}

/* Subpages & Inner Pages: Solid Green Header (Design Parity #008000) */
body:not(.home) .header,
.subpage-header,
.export-header {
  background: #008000 !important;
  background-color: #008000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 80, 0, 0.25);
}

/* Homepage scrolled state: deep green */
body.home .header.scrolled {
  background: rgba(0, 128, 0, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 24px rgba(0, 60, 0, 0.25);
}

.header-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4.5rem; /* 73px matching Figma Frame 51 */
}

.nav-links a {
  font-family: var(--font-family-arabic);
  font-size: 1.25rem; /* 20px matching Figma */
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFBE6B;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-merchant-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 0.5rem 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-merchant-icon {
  width: 26px;
  height: 26px;
  color: #FFF7E9;
  stroke-width: 2;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-merchant-text {
  font-family: var(--font-family-arabic);
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #FFFFFF;
  transition: color 0.25s ease;
}

.nav-merchant-btn:hover .nav-merchant-text,
.nav-merchant-btn:hover .nav-merchant-icon {
  color: #FFBE6B;
}

.nav-merchant-btn:hover .nav-merchant-icon {
  transform: scale(1.1);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 0;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2.8px;
  background-color: #FFBE6B;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation Fullscreen Overlay (Figma Nav_Menu_Mobile) */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #FFF7E9;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 128, 0, 0.2) transparent;
}

.mobile-nav-overlay::-webkit-scrollbar {
  width: 5px;
}

.mobile-nav-overlay::-webkit-scrollbar-thumb {
  background: rgba(0, 128, 0, 0.2);
  border-radius: 4px;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-inner {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  padding: 3.5rem 1.5rem 2.5rem;
  box-sizing: border-box;
}

.mobile-nav-close {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 87, 0, 0.15);
  border-radius: 50%;
  cursor: pointer;
  color: #005700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.2s ease;
  z-index: 2010;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-nav-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ffffff;
}

.mobile-nav-brand {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.mobile-nav-logo {
  width: clamp(120px, 20vh, 175px);
  height: clamp(120px, 20vh, 175px);
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vh, 1.4rem);
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-family-arabic);
  font-size: clamp(1.35rem, 3.2vh, 1.85rem);
  font-weight: 700;
  color: #008000;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #d97706;
  transform: scale(1.06);
}

.mobile-nav-link.mobile-merchant-link {
  color: #008000;
  font-weight: 800;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  max-height: 1000px;
  background-color: #1a140e;
  background-image: url("../images/hero_bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  margin-top: -91px;
  padding-top: calc(1rem + 91px);
  padding-bottom: 2rem;
  overflow: hidden;
  box-sizing: border-box;
}

body.admin-bar .hero-section {
  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 1080px;
  max-width: 62vw;
  background: linear-gradient(90deg, rgba(16, 12, 8, 0.94) 0%, rgba(26, 20, 14, 0.84) 65%, rgba(26, 20, 14, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 769px) {
  .hero-content {
    margin-right: auto !important;
    margin-left: 0 !important;
  }
}

.hero-mobile-badge-logo {
  display: none !important;
}

.hero-title {
  font-size: clamp(2.35rem, 3.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.5px;
}

.hero-subtitle-badge {
  font-size: clamp(1.6rem, 2.1vw, 2.35rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: clamp(1.12rem, 1.25vw, 1.38rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-highlights .bullet-separator {
  color: #E6A045;
  font-size: 1rem;
  display: inline-block;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.btn-hero-primary {
  background-color: #008000;
  color: #ffffff;
  padding: 0.8rem 2.8rem;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 128, 0, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  border: none;
}

.btn-hero-primary:hover {
  background-color: #006b00;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 128, 0, 0.45);
}

.btn-hero-secondary {
  background-color: #FAF8F2;
  color: #008000;
  padding: 0.8rem 2.8rem;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  border: none;
}

.btn-hero-secondary:hover {
  background-color: #ffffff;
  color: #006b00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

/* ==========================================================================
   2. Who Are We Section
   ========================================================================== */
.who-section {
  padding: 6rem 0;
  background-color: #FFFDF8;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.who-text-content {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.who-cards-wrapper {
  order: 2;
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 380px;
  margin: 0 auto;
}

.who-card {
  position: absolute;
  width: 280px;
  height: 210px;
  border-radius: 16px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  background: #FFFFFF;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, z-index 0.2s;
}

.who-card-1 {
  bottom: 15px;
  left: 0;
  z-index: 3;
}

.who-card-2 {
  top: 85px;
  left: 135px;
  z-index: 2;
}

.who-card-3 {
  top: 0;
  left: 265px;
  z-index: 1;
}

.who-card:hover {
  transform: translateY(-8px) scale(1.03);
  z-index: 10;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.who-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.who-header-row {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.who-accent-bar {
  width: 7px;
  height: 34px;
  background-color: #E08722;
  border-radius: 0 !important;
  display: inline-block;
}

.who-title {
  font-family: var(--font-family-arabic);
  font-size: 2.2rem;
  font-weight: 800;
  color: #005700;
  margin: 0;
  line-height: 1;
}

.who-chevron {
  margin-right: 0.25rem;
  color: #005700;
}

.who-description {
  font-size: 1.2rem;
  color: #4A5568;
  line-height: 1.95;
  margin-bottom: 2rem;
  max-width: 620px;
}

.btn-who-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 2.5rem;
  border: 1.5px solid #005700;
  border-radius: 9999px;
  color: #005700;
  background: transparent;
  font-family: var(--font-family-arabic);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-who-outline:hover {
  background: #005700;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 87, 0, 0.22);
}

/* ==========================================================================
   3. By The Numbers Section
   ========================================================================== */
.numbers-section {
  background-color: #E3B764;
  padding: 4.5rem 0;
  color: #093C13;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.number-value {
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: #093C13;
  letter-spacing: -1px;
}

.number-label {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1D261E;
}

/* ==========================================================================
   4. Vision (Ro2yatna) Section
   ========================================================================== */
.vision-section {
  background-color: #005700;
  border-top: 5px solid #ffbe6b;
  border-bottom: 5px solid #ffbe6b;
  padding: 5rem 0 7rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.vision-header {
  text-align: center;
  max-width: 1460px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 2;
}

.vision-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #ffbe6b;
  margin-bottom: 1.25rem;
  text-shadow: 0px 2px 30px rgba(255, 190, 107, 0.35);
}

.vision-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.8;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.vision-layout-row {
  display: flex;
  direction: ltr; /* Keeps exact visual alignment: Quality (left) -> Commitment -> Logo -> Trust -> Growth (right) */
  align-items: flex-start;
  justify-content: center;
  gap: 2.25rem;
  max-width: 1460px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

/* Winged Arch Offsets */
.vision-card-small {
  margin-top: 155px;
}

.vision-card-medium {
  margin-top: 65px;
}

.vision-logo-center {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  z-index: 3;
  padding: 0 0.5rem;
}

.vision-logo-img {
  width: 330px;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
  transition: transform var(--transition-normal);
}

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

.vision-logo-origin-point {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  pointer-events: none;
  opacity: 0;
}

.vision-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 3;
}

.vision-card-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-card-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(103, 216, 88, 0.35);
}

.vision-card-small .vision-card-box {
  width: 190px;
  height: 190px;
}

.vision-card-medium .vision-card-box {
  width: 245px;
  height: 245px;
}

.vision-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.vision-card-label {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffbe6b;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  direction: rtl;
}

.vision-card-small .vision-card-label {
  font-size: 1.35rem;
}

.vision-card-item:hover .vision-card-label {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 190, 107, 0.8);
}

.vision-card-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #67D858;
  box-shadow: 0 0 16px 4px rgba(103, 216, 88, 0.75), 0 0 6px 1px #ffffff;
  margin-top: 4px;
  position: relative;
  z-index: 4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card-item:hover .vision-card-dot {
  transform: scale(1.35);
  box-shadow: 0 0 22px 6px rgba(255, 235, 13, 0.9), 0 0 8px 2px #ffffff;
}

@media (max-width: 1200px) {
  .vision-layout-row {
    gap: 1.5rem;
  }
  .vision-card-small .vision-card-box {
    width: 155px;
    height: 155px;
  }
  .vision-card-medium .vision-card-box {
    width: 200px;
    height: 200px;
  }
  .vision-logo-img {
    width: 270px;
  }
  .vision-card-small {
    margin-top: 120px;
  }
  .vision-card-medium {
    margin-top: 50px;
  }
}

@media (max-width: 900px) {
  .vision-layout-row {
    gap: 0.85rem;
  }
  .vision-card-small .vision-card-box {
    width: 125px;
    height: 125px;
  }
  .vision-card-medium .vision-card-box {
    width: 155px;
    height: 155px;
  }
  .vision-logo-img {
    width: 210px;
  }
  .vision-card-label {
    font-size: 1.15rem;
  }
  .vision-card-small {
    margin-top: 85px;
  }
  .vision-card-medium {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 1.5rem 0 1.75rem !important;
  }
  .vision-header {
    margin-bottom: 0.65rem !important;
  }
  .vision-title {
    font-size: clamp(1.4rem, 4.8vw, 1.75rem) !important;
    margin-bottom: 0.35rem !important;
  }
  .vision-subtitle {
    font-size: clamp(0.72rem, 2.2vw, 0.82rem) !important;
    line-height: 1.45 !important;
    padding: 0 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Single row, winged arch - Figma Frame 007 Parity */
  .vision-layout-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    direction: ltr !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: clamp(2px, 1.3vw, 6px) !important;
    padding: 0 4px !important;
    max-width: 100% !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 2 !important;
  }

  /* Exact Frame 040 visual order from left to right (LTR) in a true V-shape:
     1: Growth (outer left) - top of V
     2: Quality (inner left) - mid-level
     3: Center Emblem - bottom vertex of V
     4: Commitment (inner right) - mid-level
     5: Trust (outer right) - top of V */
  .vision-layout-row .vision-card-small,
  .vision-layout-row .vision-card-medium {
    margin-top: 0 !important;
  }
  .vision-card-growth {
    order: 1 !important;
    margin-top: 0px !important;
  }
  .vision-card-quality {
    order: 2 !important;
    margin-top: 26px !important;
  }
  .vision-logo-center {
    order: 3 !important;
    width: auto !important;
    margin-top: 50px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }
  .vision-card-commitment {
    order: 4 !important;
    margin-top: 26px !important;
  }
  .vision-card-trust {
    order: 5 !important;
    margin-top: 0px !important;
  }

  .vision-logo-img {
    width: clamp(80px, 22vw, 102px) !important;
    height: auto !important;
    max-height: 125px !important;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45)) !important;
  }

  .vision-logo-origin-point {
    top: 8px !important;
    bottom: auto !important;
  }

  .vision-card-item {
    gap: 0.35rem !important;
    flex-shrink: 1 !important;
    align-items: center !important;
  }

  /* Inner cards (Quality & Commitment) box size */
  .vision-card-quality .vision-card-box,
  .vision-card-commitment .vision-card-box {
    width: clamp(50px, 13.5vw, 62px) !important;
    height: clamp(50px, 13.5vw, 62px) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
  }

  /* Outer cards (Growth & Trust) box size */
  .vision-card-growth .vision-card-box,
  .vision-card-trust .vision-card-box {
    width: clamp(44px, 12vw, 54px) !important;
    height: clamp(44px, 12vw, 54px) !important;
    border-radius: 9px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
  }

  .vision-card-label {
    font-size: clamp(0.52rem, 1.7vw, 0.66rem) !important;
    font-weight: 800 !important;
    color: #ffbe6b !important;
    white-space: nowrap !important;
    margin-top: 2px !important;
    line-height: 1.2 !important;
  }

  /* Dot placed above the card box matching Frame 007 */
  .vision-card-dot {
    order: -1 !important;
    width: 7px !important;
    height: 7px !important;
    margin-top: 0 !important;
    margin-bottom: 2px !important;
    box-shadow: 0 0 10px 2px rgba(103, 216, 88, 0.8), 0 0 3px 1px #ffffff !important;
  }

  /* Keep wires container active on mobile */
  .vision-wires-container {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    overflow: visible !important;
  }
}

.vision-wires-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.vision-wires-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Kinetic Energy Beam Animation */
@keyframes wireBeamMotion {
  0% {
    stroke-dashoffset: 800;
  }
  100% {
    stroke-dashoffset: -800;
  }
}

@keyframes nodeHaloGlow {
  0%, 100% {
    r: 5;
    opacity: 0.85;
    filter: drop-shadow(0 0 6px #67D858);
  }
  50% {
    r: 7.5;
    opacity: 1;
    filter: drop-shadow(0 0 16px #FFEB0D);
  }
}

@keyframes nodeRingWave {
  0% {
    r: 6;
    opacity: 0.85;
    stroke-width: 2.5px;
  }
  100% {
    r: 22;
    opacity: 0;
    stroke-width: 0.5px;
  }
}

.wire-energy-beam {
  stroke-dasharray: 80, 260;
  animation: wireBeamMotion 3.6s linear infinite;
}

.wire-node-halo {
  animation: nodeHaloGlow 2.4s ease-in-out infinite alternate;
}

.wire-node-wave {
  animation: nodeRingWave 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  transform-origin: center;
}



/* ==========================================================================
   5. Products Section (Montagat)
   ========================================================================== */
.products-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
}

.products-title-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3.5rem;
  width: max-content;
  max-width: 100%;
  padding: 1.5rem 2.5rem;
}

.products-title-bg-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 175px;
  max-width: 90vw;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  object-fit: contain;
}

.products-main-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 3.25rem;
  font-weight: 800;
  color: #005700;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 0 25px rgba(255, 255, 255, 0.9);
}

.products-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e2ddd3;
  padding-bottom: 1.5rem;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
  padding: 0.5rem 1rem;
  position: relative;
}

.tab-item.active,
.tab-item:hover {
  opacity: 1;
}

.tab-icon-wrapper {
  position: relative;
  width: 120px;
  height: 110px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.tab-icon-bg {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 58px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.tab-icon-jar {
  position: relative;
  z-index: 2;
  width: 85px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tab-icon-jar img,
.tab-icon-jar svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Floating Motion: Jar lifts up on hover, background stays grounded */
.tab-item:hover .tab-icon-jar {
  transform: translateY(-10px);
}

.tab-item:hover .tab-icon-bg,
.tab-item.active .tab-icon-bg {
  opacity: 1;
  transform: translateX(-50%);
}

.tab-label {
  font-size: 1.15rem;
  font-weight: 800;
  color: #da8a2a;
  transition: color var(--transition-fast);
  text-align: center;
}

.tab-item.active .tab-label,
.tab-item:hover .tab-label {
  color: #f28b24;
}

@media (max-width: 768px) {
  /* Mobile Products Section Parity (Frames 008-025 & Frame 040) */
  .products-section {
    padding: 3rem 0 2rem !important;
  }
  .products-section .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .products-title-wrapper {
    margin: 0 auto 2.25rem !important;
    padding: 1.25rem 1rem 0 !important;
  }
  .products-title-bg-art {
    width: 145px !important;
    height: auto !important;
    opacity: 0.85 !important;
  }
  .products-main-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #005700 !important;
    letter-spacing: -0.2px !important;
  }

  /* All 4 category tabs fit seamlessly in a single row without horizontal scroll */
  .products-nav-tabs {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: flex-end !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0.5rem 1.25rem 0.5rem !important;
    margin: 0 auto 2.25rem auto !important;
    overflow: hidden !important;
    border-bottom: none !important;
    box-sizing: border-box !important;
  }
  .products-nav-tabs::-webkit-scrollbar {
    display: none !important;
  }
  .tab-item {
    flex: 1 1 25% !important;
    max-width: 25% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.2rem !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
  }
  .tab-icon-wrapper {
    width: clamp(38px, 10.5vw, 48px) !important;
    height: clamp(38px, 10.5vw, 48px) !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }
  .tab-icon-bg {
    width: 85% !important;
    height: 44% !important;
    bottom: 0 !important;
  }
  .tab-icon-jar {
    width: 76% !important;
    height: 80% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .tab-icon-jar svg,
  .tab-icon-jar img,
  .tab-icon-jar i {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }
  .tab-label {
    font-size: clamp(0.52rem, 1.95vw, 0.66rem) !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    color: #e59344 !important;
    text-align: center !important;
    line-height: 1.15 !important;
    letter-spacing: -0.3px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .tab-item.active .tab-label {
    color: #d8821f !important;
    font-weight: 800 !important;
  }

  /* Active Category Pill & Headings */
  .tahina-badge-header,
  .halawa-badge-header,
  .other-badge-header {
    display: flex !important;
    justify-content: flex-start !important;
    margin-bottom: 1.5rem !important;
    padding: 0 1.25rem !important;
  }
  .category-badge-pill {
    position: relative !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.4rem 1.4rem 0.4rem 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.65rem !important;
    z-index: 1 !important;
  }
  .category-badge-pill::before,
  .tahina-badge-pill::before,
  .halawa-badge-pill::before,
  .other-badge-pill::before {
    content: '' !important;
    position: absolute !important;
    inset: -6px -12px !important;
    z-index: -1 !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: block !important;
  }
  .cat-pill-tahina::before,
  .tahina-badge-pill::before {
    background-image: url("../images/cat_tahina_bg.svg") !important;
  }
  .cat-pill-halawa::before,
  .halawa-badge-pill::before {
    background-image: url("../images/cat_halawa_bg.svg") !important;
  }
  .cat-pill-sesame::before {
    background-image: url("../images/cat_sesame_bg.svg") !important;
  }
  .cat-pill-other::before,
  .other-badge-pill::before {
    background-image: url("../images/cat_other_bg.svg") !important;
  }
  .category-badge-pill:not(.cat-pill-tahina):not(.cat-pill-halawa):not(.cat-pill-sesame):not(.cat-pill-other)::before {
    background-image: url("../images/cat_tahina_bg.svg") !important;
  }
  .category-badge-icon,
  .tahina-badge-icon,
  .halawa-badge-icon,
  .other-badge-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    transform: rotate(-10deg) !important;
  }
  .category-badge-icon img,
  .category-badge-icon svg,
  .category-badge-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }
  .tahina-badge-title,
  .halawa-badge-title,
  .other-badge-title,
  .category-badge-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #333333 !important;
    line-height: 1 !important;
  }
  .tahina-title-block {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    padding: 0 0.5rem !important;
  }
  .tahina-main-heading {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #008000 !important;
    margin-bottom: 0.4rem !important;
  }
  .tahina-main-subheading {
    font-size: 0.88rem !important;
    color: #646464 !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
    max-width: 340px !important;
    font-weight: 500 !important;
    text-align: center !important;
  }

  /* Mobile Product Cards (Frame 008-025 Parity) */
  .tahina-cards-row,
  .halawa-cards-carousel,
  .other-products-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    width: 100% !important;
    padding: 0 0.25rem !important;
    overflow: hidden !important;
  }
  .halawa-slider-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
  }
  .slider-arrow {
    display: none !important;
  }
  .tahina-card-item,
  .halawa-card-item,
  .other-card-item {
    width: 100% !important;
    max-width: 355px !important;
    min-width: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07) !important;
    margin: 0 auto !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
  }
  .tahina-card-image-box,
  .halawa-card-image-box,
  .other-card-image-box {
    height: 290px !important;
    width: 100% !important;
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
    background: #fdfdfd !important;
  }
  .product-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .tahina-card-bar,
  .halawa-card-bar,
  .other-card-bar {
    direction: rtl !important;
    background: #FAF7EC !important;
    padding: 0.85rem 1rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    border-bottom-left-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
  }
  .tahina-card-text,
  .halawa-card-text,
  .other-card-text {
    text-align: right !important;
    flex: 1 1 auto !important;
  }
  .tahina-card-title,
  .halawa-card-title,
  .other-card-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111111 !important;
    margin: 0 0 0.15rem 0 !important;
    white-space: nowrap !important;
  }
  .tahina-card-sub,
  .halawa-card-sub,
  .other-card-sub {
    font-size: 0.78rem !important;
    color: #666666 !important;
    margin: 0 !important;
  }
  .btn-tahina-order {
    background: #F17543 !important;
    color: #ffffff !important;
    padding: 0.55rem 0.95rem !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    border: none !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(241, 117, 67, 0.3) !important;
  }

  /* Suitable For ("مناسبة لـ :") — Hidden completely on mobile */
  .tahina-suitable-section,
  .suitable-for-wrapper {
    display: none !important;
  }
}

/* Category Block */
.category-block {
  margin-bottom: 5rem;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: var(--color-bg-cream);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-md);
}

.category-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary-mid);
}

.category-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Product Cards Grid */
.products-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #e9e3d7;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  height: 240px;
  background: linear-gradient(135deg, #faf7f0 0%, #f0e6d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.product-placeholder-graphic {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: var(--shadow-md);
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-order-card {
  width: 100%;
  background: var(--color-accent-orange);
  color: white;
  font-weight: 800;
  padding: 0.9rem;
  border-radius: var(--radius-md);
}

.btn-order-card:hover {
  background: var(--color-accent-orange-dark);
}

/* Suitable For Tags */
.suitable-for-wrapper {
  margin-top: 3rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid #e9e3d7;
  text-align: center;
}

.suitable-for-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-mid);
  margin-bottom: 1.5rem;
}

.suitable-tags-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.suitable-tag {
  background: var(--color-accent-orange);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   6. Available Sizes Section
   ========================================================================== */
.sizes-section {
  background-color: #FADF9C;
  background-image: url("../images/spice_shop_sizes_bg.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 4rem 0 6rem;
  text-align: center;
  position: relative;
}

.sizes-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0e0e0e;
  margin-bottom: 0.5rem;
}

.sizes-subtitle {
  font-size: 1.85rem;
  font-weight: 700;
  color: #299429;
  margin-bottom: 3.5rem;
}

.sizes-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.size-chip {
  width: 180px;
  height: 78px;
  border: 2px solid #1d1d1d;
  border-radius: 13.2px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 700;
  color: #0e0e0e;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.size-chip:hover {
  background: #1d1d1d;
  color: #f8d881;
}

/* ==========================================================================
   7. Services & Features Section
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--color-bg-cream);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  border: 1px solid #e6decb;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-gold);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.service-accordion-arrow {
  display: none !important;
}

.service-card-content {
  display: block !important;
}

.service-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary-mid);
  margin-bottom: 1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.service-title::before {
  content: '';
  display: block;
  width: 12px;
  height: 32px;
  background-color: #ed9f4d;
  border-radius: 0;
  flex-shrink: 0;
}

.service-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--color-text-main);
  line-height: 1.7;
}

.service-list li {
  position: relative;
  padding-right: 1.5rem;
}

.service-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23178328' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ==========================================================================
   8. Footer / Contact Section
   ========================================================================== */
.footer {
  direction: rtl;
  background-color: #154c09;
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  border-top: 4px solid #fcbf6c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

/* Column 1: Brand (Rightmost in RTL) */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-sub-services-mobile {
  display: none;
}

.footer-brand-badge {
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  margin-bottom: 1.25rem;
}

.footer-brand-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.footer-brand-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
}

/* Column 2: Quick Links (Middle in RTL) */
.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-col-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fcbf6c;
  margin: 0 0 0.85rem 0;
}

.footer-gold-line {
  width: 100%;
  max-width: 280px;
  height: 2px;
  background-color: #fcbf6c;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-nav-links a:hover {
  color: #fcbf6c;
  transform: translateX(-4px);
}

.footer-sub-services p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.45rem 0;
  line-height: 1.4;
}

/* Column 3: Contact & Social (Leftmost in RTL) */
.footer-contact-col {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fcbf6c;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.footer-contact-icon svg {
  width: 24px;
  height: 24px;
}

.footer-contact-text {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.footer-contact-text:hover {
  color: #fcbf6c;
}

.footer-inquiry-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1.25rem 0 1rem 0;
}

.footer-follow-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1.5rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-hash {
  color: #fcbf6c;
  font-size: 1.6rem;
  font-weight: 900;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.footer-social-link {
  color: #fcbf6c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.footer-social-link svg {
  width: 32px;
  height: 32px;
}

.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.15);
}

/* Modal Window for Wholesale Request */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-container {
  background: white;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 550px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #dcd6c9;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary-mid);
  outline: none;
}

#form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

#form-message.form-error {
  background: #fdf2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

#form-message.form-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Modal Thank You View */
.modal-thankyou {
  text-align: center;
  padding: 1rem 0.5rem 0.5rem;
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.thankyou-icon-wrap {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
  background: rgba(0, 87, 0, 0.08);
  border: 2px solid rgba(0, 87, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-mid);
}

.thankyou-check-icon {
  width: 42px;
  height: 42px;
}

.thankyou-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.thankyou-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 440px;
  margin-inline: auto;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.thankyou-btn-wa {
  background-color: #25D366;
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.thankyou-btn-wa:hover {
  background-color: #20bd5a;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}

.thankyou-btn-close {
  width: 100%;
  cursor: pointer;
}

/* 2-Column Form Row */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Modal Order Summary Card */
.modal-summary-card {
  background: var(--color-bg-alt, #f9fafb);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 1.25rem 0 1.5rem;
  text-align: right;
}

[data-theme="dark"] .modal-summary-card {
  background: #172117;
  border-color: #2b3d2b;
}

.summary-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.65rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border, #e5e7eb);
}

[data-theme="dark"] .summary-card-header {
  border-bottom-color: #2b3d2b;
}

.summary-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-dark, #063a06);
}

[data-theme="dark"] .summary-card-title {
  color: #86efac;
}

.summary-card-id {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: monospace, sans-serif;
  color: #166534;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 4px;
}

[data-theme="dark"] .summary-card-id {
  color: #bbf7d0;
  background: #14532d;
}

.summary-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.85rem;
}

@media (max-width: 480px) {
  .summary-card-grid {
    grid-template-columns: 1fr;
  }
}

.summary-card-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.summary-card-item-full {
  grid-column: 1 / -1;
  border-top: 1px dashed var(--color-border, #e5e7eb);
  padding-top: 0.6rem;
  margin-top: 0.2rem;
}

[data-theme="dark"] .summary-card-item-full {
  border-top-color: #2b3d2b;
}

.summary-card-label {
  font-size: 0.78rem;
  color: var(--color-text-muted, #6b7280);
  font-weight: 500;
}

.summary-card-val {
  font-size: 0.9rem;
  color: var(--color-text, #1f2937);
  font-weight: 600;
  word-break: break-word;
}

[data-theme="dark"] .summary-card-val {
  color: #f3f4f6;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-section { min-height: auto; padding: 6rem 0; }
  .hero-overlay { width: 100%; max-width: 100%; left: 0; background: linear-gradient(180deg, rgba(35, 32, 29, 0.92) 0%, rgba(55, 50, 45, 0.85) 100%); }
  .hero-title { font-size: 2.35rem; }
  .hero-subtitle-badge { font-size: 1.55rem; }
  .hero-description { font-size: 1.15rem; line-height: 1.8; }
  .hero-highlights { font-size: 1.15rem; }
  .who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .who-cards-wrapper { order: 1; height: 320px; max-width: 460px; margin: 0 auto; }
  .who-text-content { order: 2; }
  .who-card { width: 230px; height: 172px; }
  .who-card-1 { bottom: 10px; left: 0; }
  .who-card-2 { top: 70px; left: 115px; }
  .who-card-3 { top: 0; left: 230px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .footer-gold-line { margin-left: auto; margin-right: auto; }
  .footer-contact-item { justify-content: center; }
  .footer-follow-heading { justify-content: center; }
  .footer-social-row { justify-content: center; }
  .vision-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-card:nth-child(n) { height: auto; }
  .tahina-cards-row { flex-direction: column; }
}

@media (max-width: 992px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    margin-top: -68px;
    padding-top: calc(2rem + 68px);
    padding-bottom: 3rem;
  }

  body.admin-bar .hero-section {
    min-height: calc(100vh - 46px);
    min-height: calc(100dvh - 46px);
  }

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

  .nav-links {
    display: none !important;
  }

  .nav-logo-img {
    height: 56px;
    width: 56px;
  }

  .nav-merchant-text {
    display: none;
  }

  .nav-merchant-btn {
    padding: 0.35rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Header Navigation — Figma frame_001 */
  body.home .header,
  body:not([class*="subpage"]) .header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 70px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    z-index: 1000;
  }

  body.home.admin-bar .header {
    top: 46px !important;
  }

  body.home .header .nav-logo,
  body:not([class*="subpage"]) .header .nav-logo {
    display: none !important;
  }

  body.home .header .nav-merchant-btn,
  body:not([class*="subpage"]) .header .nav-merchant-btn {
    display: none !important;
  }

  body.home .header .nav-links,
  body:not([class*="subpage"]) .header .nav-links {
    display: none !important;
  }

  body.home .header-container,
  body:not([class*="subpage"]) .header-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 1.25rem !important;
    display: flex !important;
    align-items: center !important;
  }

  .mobile-nav-toggle {
    position: absolute !important;
    top: 15px !important;
    right: 18px !important;
    width: 44px !important;
    height: 44px !important;
    border: 2px solid #55a842 !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.25) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 1010 !important;
  }

  .mobile-nav-toggle span {
    width: 22px !important;
    height: 2px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
  }

  /* Mobile Hero Section — Figma frame_001 */
  .hero-section {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 1rem !important;
    padding-bottom: 2.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.admin-bar .hero-section {
    min-height: calc(100vh - 46px) !important;
    min-height: calc(100dvh - 46px) !important;
    height: auto !important;
    padding-top: 1rem !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0.85rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }

  .hero-mobile-badge-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 0.4rem auto !important;
    flex-shrink: 0 !important;
  }

  .hero-badge-img {
    width: clamp(240px, 68vw, 300px) !important;
    max-width: 80% !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.6)) !important;
  }

  .hero-title {
    font-size: clamp(1.3rem, 4.8vw, 1.7rem) !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    margin: 0 0 0.2rem 0 !important;
    color: #ffffff !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5) !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-subtitle-badge {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: clamp(1rem, 3.6vw, 1.2rem) !important;
    font-weight: 700 !important;
    margin: 0 0 0.5rem 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    text-align: center !important;
  }

  .hero-description {
    font-size: clamp(0.78rem, 2.3vw, 0.88rem) !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    margin: 0 auto 0.65rem auto !important;
    padding: 0 0.25rem !important;
    max-width: 96% !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
    text-align: center !important;
  }

  .hero-highlights {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-size: clamp(0.74rem, 2.4vw, 0.88rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    margin: 0.25rem auto 1rem auto !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
  }

  .hero-highlights .bullet-separator {
    color: #e5a93b !important;
    font-size: 0.7rem !important;
    display: inline-block !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-bottom: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .btn-hero-primary {
    background-color: #008000 !important;
    color: #ffffff !important;
    padding: 0.75rem 1.4rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 14px rgba(0, 128, 0, 0.4) !important;
    text-decoration: none !important;
    text-align: center !important;
    min-width: 125px !important;
  }

  .btn-hero-secondary {
    background-color: #FCF8EC !important;
    color: #005700 !important;
    padding: 0.75rem 1.4rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
    text-align: center !important;
    min-width: 125px !important;
  }

  /* Mobile Who We Are Cards */
  .who-section {
    padding: 3.5rem 0 2rem 0 !important;
  }
  .who-cards-wrapper { height: 240px; max-width: 340px; margin: 0 auto 2rem auto; }
  .who-card { width: 175px; height: 130px; border-width: 3px; border-radius: 12px; }
  .who-card-1 { bottom: 8px; left: 0; }
  .who-card-2 { top: 55px; left: 85px; }
  .who-card-3 { top: 0; left: 165px; }
  .who-title { font-size: 1.85rem; }
  .who-description { font-size: 1.05rem; line-height: 1.8; margin-bottom: 0 !important; }
  .btn-who-outline,
  a.btn-who-outline,
  .who-section .btn-who-outline,
  .who-text-content .btn-who-outline {
    display: none !important;
  }

  .who-accent-bar {
    border-radius: 0 !important;
  }

  /* Mobile Numbers Section — Figma Frame 040 Parity (Full-width gold band) */
  .numbers-section {
    background-color: #dfa745 !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 1.6rem 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .numbers-section .container,
  .numbers-section.container,
  .numbers-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0.25rem !important;
    box-shadow: none !important;
  }
  .numbers-section .number-card,
  .numbers-section .number-card:not(:last-child),
  .numbers-section .number-card:nth-child(n) {
    text-align: center !important;
    padding: 0 0.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
  }
  .number-value {
    font-size: clamp(1.75rem, 6.2vw, 2.2rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
  }
  .number-label {
    font-size: clamp(0.72rem, 2.3vw, 0.85rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.35 !important;
    opacity: 0.95 !important;
    text-align: center !important;
  }

  /* Mobile Available Sizes Chips — Frame 060 Parity */
  .sizes-section {
    padding: 1.75rem 0.75rem 2rem !important;
    background-color: #FADF9C !important;
    background-image: url("../images/spice_shop_sizes_bg.svg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    text-align: center !important;
  }
  .sizes-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #0e0e0e !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.2 !important;
  }
  .sizes-subtitle {
    font-size: clamp(0.85rem, 3vw, 0.98rem) !important;
    font-weight: 700 !important;
    color: #299429 !important;
    margin-bottom: 1.15rem !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
  .sizes-chips-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: clamp(4px, 1.4vw, 7px) !important;
    width: 100% !important;
    max-width: 412px !important;
    margin: 0 auto !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
    direction: rtl !important;
  }
  .size-chip {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    padding: 0 2px !important;
    background: rgba(255, 255, 255, 0.35) !important;
    border: 1.2px solid #111111 !important;
    border-radius: 5px !important;
    font-size: clamp(0.68rem, 2.35vw, 0.8rem) !important;
    font-weight: 700 !important;
    color: #000000 !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
  }

  /* Mobile Services Accordion — Frames 060, 065, 068 Parity */
  .services-section {
    padding: 3rem 0 3.5rem !important;
    background: #ffffff !important;
  }
  .services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    box-sizing: border-box !important;
  }
  .service-card {
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    width: 100% !important;
  }
  .service-card-header {
    display: flex !important;
    direction: rtl !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.65rem !important;
    width: 100% !important;
    user-select: none !important;
  }
  .service-card-header .service-title {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    color: #008000 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }
  .service-card-header .service-title::before {
    content: '' !important;
    display: inline-block !important;
    width: 12px !important;
    height: 34px !important;
    background-color: #ef9e4d !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
  }
  .service-card-header .service-title::after {
    display: none !important;
  }
  .service-accordion-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: rotate(180deg) !important;
    line-height: 1 !important;
  }
  .service-card.open .service-accordion-arrow {
    transform: rotate(90deg) !important;
  }
  .service-card-content {
    display: none !important;
    margin-top: 1rem !important;
    padding-top: 0.5rem !important;
    padding-right: 1.45rem !important;
    border-top: none !important;
    animation: fadeInAccordion 0.3s ease !important;
    direction: rtl !important;
    text-align: right !important;
  }
  .service-card.open .service-card-content {
    display: block !important;
  }
  .service-card-content .service-subtitle {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #333333 !important;
    margin-bottom: 0.85rem !important;
  }
  .service-card-content p {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #444444 !important;
    margin-bottom: 0.85rem !important;
    line-height: 1.65 !important;
  }
  .service-card-content .service-list {
    padding-right: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .service-card-content .service-list li {
    position: relative !important;
    padding-right: 1.35rem !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #333333 !important;
    margin-bottom: 0.65rem !important;
    line-height: 1.5 !important;
  }
  .service-card-content .service-list li::before {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 8px !important;
    width: 5px !important;
    height: 5px !important;
    background: #555555 !important;
    border-radius: 1px !important;
  }

  /* Mobile Footer — Frames 060, 070 Parity */
  .footer {
    padding: 2.5rem 0 2rem !important;
    background-color: #005700 !important;
    border-top: 4px solid #E3B764 !important;
  }
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 1.25rem !important;
    direction: rtl !important;
    text-align: right !important;
    align-items: start !important;
  }
  /* Hide quick links on mobile matching Frame 060 */
  .footer-nav-col {
    display: none !important;
  }
  .footer-contact-col {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: right !important;
    gap: 0.35rem !important;
  }
  .footer-contact-col .footer-col-heading {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #ffbe6b !important;
    margin: 0 0 0.2rem 0 !important;
  }
  .footer-gold-line {
    width: 110px !important;
    height: 2px !important;
    background: #ffbe6b !important;
    margin: 0 0 0.65rem 0 !important;
  }
  .footer-contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.35rem !important;
  }
  .footer-contact-item .footer-contact-text,
  .footer-contact-item a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.78rem !important;
  }
  .footer-contact-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }
  .footer-contact-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .footer-inquiry-heading {
    color: #ffffff !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    margin: 0.35rem 0 0.15rem 0 !important;
  }
  .footer-brand-col {
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 0.5rem !important;
  }
  .footer-brand-badge {
    width: 95px !important;
    height: auto !important;
    margin-bottom: 0.5rem !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) !important;
  }
  .footer-brand-name {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.3 !important;
  }
  .footer-brand-tagline {
    font-size: 0.76rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.2rem !important;
  }
  .footer-sub-services-mobile {
    display: block !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.74rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* Social row spans across the bottom */
  .footer-bottom-mobile-social {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 1.25rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(255, 190, 107, 0.25) !important;
    width: 100% !important;
  }
  .footer-follow-heading {
    color: #ffbe6b !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.25rem !important;
  }
  .footer-social-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.85rem !important;
  }
  .footer-social-link {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1.5px solid #ffbe6b !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffbe6b !important;
    transition: transform var(--transition-fast) !important;
  }
  .footer-social-link svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
  }
}

/* ==========================================================================
   Tahina Section (Figma Node 1:672)
   ========================================================================== */
.tahina-figma-section {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Category Badge Pills & Organic Backgrounds (Figma Parity) */
.tahina-badge-header,
.halawa-badge-header,
.other-badge-header,
.cat-badge-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}

.tahina-badge-pill,
.halawa-badge-pill,
.other-badge-pill,
.category-badge-pill {
  position: relative;
  background: transparent;
  padding: 0.55rem 2.4rem 0.55rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 1;
  cursor: pointer;
  user-select: none;
}

/* Organic pill background pseudo-element */
.tahina-badge-pill::before,
.halawa-badge-pill::before,
.other-badge-pill::before,
.category-badge-pill::before {
  content: '';
  position: absolute;
  inset: -6px -14px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Individual organic pill shape per category */
.cat-pill-tahina::before {
  background-image: url("../images/cat_tahina_bg.svg") !important;
}

.cat-pill-halawa::before {
  background-image: url("../images/cat_halawa_bg.svg") !important;
}

.cat-pill-sesame::before {
  background-image: url("../images/cat_sesame_bg.svg") !important;
}

.cat-pill-other::before {
  background-image: url("../images/cat_other_bg.svg") !important;
}

/* Legacy class fallback when cat-pill-* is not present */
.tahina-badge-pill:not([class*="cat-pill-"])::before {
  background-image: url("../images/cat_tahina_bg.svg");
}

.halawa-badge-pill:not([class*="cat-pill-"])::before {
  background-image: url("../images/cat_halawa_bg.svg");
}

.other-badge-pill:not([class*="cat-pill-"])::before {
  background-image: url("../images/cat_other_bg.svg");
}

/* Fallback if category has no specific SVG */
.category-badge-pill:not(.cat-pill-tahina):not(.cat-pill-halawa):not(.cat-pill-sesame):not(.cat-pill-other)::before {
  background-image: url("../images/pill_bg.svg");
}

.tahina-badge-title,
.halawa-badge-title,
.other-badge-title,
.category-badge-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #58584f;
  line-height: 1.2;
}

.tahina-badge-icon,
.halawa-badge-icon,
.other-badge-icon,
.category-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  transform: rotate(-10deg);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tahina-badge-icon img,
.halawa-badge-icon img,
.other-badge-icon img,
.category-badge-icon img,
.category-badge-img {
  width: 100%;
  height: 100%;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
}

.tahina-badge-icon svg,
.halawa-badge-icon svg,
.other-badge-icon svg,
.category-badge-icon svg {
  width: 100%;
  height: 100%;
}

.tahina-badge-icon i,
.halawa-badge-icon i,
.other-badge-icon i,
.category-badge-icon i {
  font-size: 1.85rem;
  color: #84532B;
}

/* Badge hover animation: delightful wiggle & float */
.tahina-badge-pill:hover .tahina-badge-icon,
.halawa-badge-pill:hover .halawa-badge-icon,
.other-badge-pill:hover .other-badge-icon,
.category-badge-pill:hover .category-badge-icon {
  animation: badgeJarWiggle 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes badgeJarWiggle {
  0% {
    transform: rotate(-10deg) scale(1) translateY(0);
  }
  25% {
    transform: rotate(-18deg) scale(1.15) translateY(-5px);
  }
  50% {
    transform: rotate(6deg) scale(1.18) translateY(-6px);
  }
  75% {
    transform: rotate(-14deg) scale(1.12) translateY(-3px);
  }
  100% {
    transform: rotate(-10deg) scale(1.12) translateY(-3px);
  }
}

.tahina-title-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.tahina-main-heading {
  font-size: 2.75rem;
  font-weight: 900;
  color: #008000;
  margin-bottom: 0.75rem;
}

.tahina-main-subheading {
  font-size: 1.15rem;
  color: #646464;
  line-height: 1.7;
}

.tahina-cards-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.tahina-card-item {
  flex: 1;
  max-width: 480px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tahina-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.tahina-card-image-box {
  height: 380px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fdfdfd;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tahina-card-item:hover .product-card-img,
.halawa-card-item:hover .product-card-img,
.other-card-item:hover .product-card-img {
  transform: scale(1.05);
}

.tahina-card-bar,
.halawa-card-bar,
.other-card-bar {
  direction: rtl;
  background: #f8f8e7;
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: none;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.btn-tahina-order {
  background: #ff814b;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  display: inline-flex !important;
  direction: rtl !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  min-width: fit-content;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 129, 75, 0.28);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-tahina-order svg {
  width: 18px;
  height: 18px;
  color: #111111;
  flex-shrink: 0;
}

.btn-tahina-order:hover {
  background: #f06a30;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 129, 75, 0.38);
}

.tahina-card-text,
.halawa-card-text,
.other-card-text {
  text-align: right;
  flex: 1;
  min-width: 0;
}

.tahina-card-title,
.halawa-card-title,
.other-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #000000;
  margin: 0 0 0.2rem 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tahina-card-sub,
.halawa-card-sub,
.other-card-sub {
  font-size: 0.88rem;
  font-weight: 500;
  color: #646464;
  margin: 0;
  line-height: 1.4;
}

.tahina-center-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tahina-suitable-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.tahina-suitable-heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: #008000;
  text-align: center;
}

.tahina-suitable-buttons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.tahina-suitable-btn {
  direction: rtl !important;
  background: #ff814b;
  color: #fff7e9;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 0.85rem 1.75rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(255, 129, 75, 0.25);
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.tahina-suitable-btn:hover {
  transform: translateY(-4px);
  background: #e66933;
}

.suitable-btn-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Halawa Group Section (Figma Node 1:697)
   ========================================================================== */
.halawa-figma-section {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}



.halawa-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}

.slider-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.slider-arrow:hover {
  transform: scale(1.2);
}

.halawa-cards-carousel {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  width: 100%;
  scrollbar-width: none;
}

.halawa-cards-carousel::-webkit-scrollbar {
  display: none;
}

.halawa-card-item {
  min-width: 420px;
  max-width: 460px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.halawa-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.halawa-card-image-box {
  height: 380px;
  width: 100%;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.halawa-card-bar {
  direction: rtl;
  background: #f8f8e7;
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: none;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.halawa-card-text {
  text-align: right;
  flex: 1;
  min-width: 0;
}

.halawa-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.halawa-card-sub {
  font-size: 0.9rem;
  color: #646464;
}

/* ==========================================================================
   Other Products Layout (Figma Node 1:712)
   ========================================================================== */
.other-products-figma-section {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}



.other-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.other-card-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.other-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.other-card-image-box {
  height: 380px;
  width: 100%;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.other-card-bar {
  direction: rtl;
  background: #f8f8e7;
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: none;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.other-card-text {
  text-align: right;
  flex: 1;
  min-width: 0;
}

.other-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other-card-sub {
  font-size: 0.9rem;
  color: #646464;
}

@media (max-width: 1024px) {
  .other-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .other-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. Export & Wholesale Registration Single Page (Figma Node 1:944)
   ========================================================================== */
.export-page-body {
  background-color: #FCFCF5;
  color: var(--color-text-dark);
}



.export-main,
.export-page-main {
  background-color: #FCFCF5;
  padding: 4.5rem 0 6rem;
  min-height: calc(100vh - 200px);
}

/* ==========================================================================
   Export Page — Figma-accurate Layout (Two-column: Frame49)
   Left col 659px (title card + 3×2 feature cards + buttons)
   Right col 656px (registration form card)
   ========================================================================== */

.export-page-wrap {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 2rem;
}

.export-two-col {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}

/* Right Column: Form in RTL */
.export-right-col {
  order: 1;
  flex: 0 0 620px;
  max-width: 620px;
}

/* Left Column: 6 Feature Cards in RTL */
.export-left-col {
  order: 2;
  flex: 0 0 659px;
  max-width: 659px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Title Card is omitted in final Figma/Video frame */
.exp-title-card {
  display: none !important;
}

.exp-title-sub {
  font-size: 1.05rem;
  font-weight: 700;
  color: #555555;
}

/* Feature Cards Grid: 3 rows × 2 cols (Frame45) */
.exp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.exp-feat-card {
  background: #FFFFFF;
  border: 3px solid #FFBE6B;
  border-radius: 18px;
  box-shadow: 0px 0px 19.774px rgba(0, 0, 0, 0.15);
  min-height: 271px;
  padding: 1.75rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exp-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 24px rgba(0, 100, 0, 0.18);
}

.exp-feat-icon {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-feat-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.exp-feat-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: green;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.exp-feat-text p {
  font-size: 0.85rem;
  font-weight: 500;
  color: #646464;
  line-height: 1.55;
  margin: 0;
}

/* Action Buttons Row (Frame68) */
.exp-action-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.exp-btn-whatsapp {
  flex: 1;
  height: 60.774px;
  background-color: green;
  color: #FFF7E9;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.exp-btn-whatsapp:hover {
  background-color: #005700;
  transform: translateY(-2px);
}

.exp-btn-catalog {
  flex: 1;
  height: 60.774px;
  background-color: transparent;
  border: 1.814px solid green;
  border-radius: 16px;
  color: #646464;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.exp-btn-catalog:hover {
  background-color: rgba(0, 128, 0, 0.05);
  color: green;
  transform: translateY(-2px);
}

/* ---- Right Column ---- */
.export-right-col {
  flex: 0 0 656px;
  max-width: 656px;
}

/* Form Card (Frame30) */
.exp-form-card {
  background: #FFFFFF;
  border-radius: 25px;
  box-shadow: 0px 0px 10.9px rgba(0, 0, 0, 0.15);
  padding: 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Form Card Header (Frame26) */
.exp-form-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.exp-form-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: green;
  text-shadow: 0px 1.004px 99.544px rgba(117, 226, 117, 0.22);
  text-align: center;
}

/* Form Sections */
.exp-form-section {
  margin-bottom: 1.5rem;
}

.exp-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: green;
  text-align: center;
  text-shadow: 0px 0.904px 89.59px rgba(117, 226, 117, 0.22);
  margin-bottom: 1rem;
}

/* Form Fields */
.exp-fields {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.exp-field {
  width: 100%;
  min-height: 52px;
  border: 0.765px solid rgba(29, 29, 29, 0.7);
  border-radius: 20px;
  box-shadow: 0.765px 0px 1.224px rgba(0, 0, 0, 0.25);
  padding: 0 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.exp-field:focus-within {
  border-color: #FFBE6B;
  box-shadow: 0 0 0 3px rgba(255, 190, 107, 0.18);
}

.exp-field-select {
  justify-content: space-between;
}

.exp-field-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.exp-field input,
.exp-field select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.93rem;
  font-family: inherit;
  color: #555555;
  width: 100%;
  cursor: pointer;
}

.exp-field select {
  appearance: none;
  -webkit-appearance: none;
}

.exp-field input::placeholder {
  color: #999;
}

.req-star {
  color: red;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Submit Section (Frame86) */
.exp-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.exp-btn-submit {
  width: 497px;
  max-width: 100%;
  background-color: green;
  color: #FFF7E9;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: inherit;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.exp-btn-submit:hover {
  background-color: #005700;
  transform: translateY(-2px);
}

.exp-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #646464;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

/* Responsive */
@media (max-width: 1300px) {
  .export-left-col { flex: 1; max-width: 100%; }
  .export-right-col { flex: 1; max-width: 100%; }
}

@media (max-width: 1080px) {
  .export-two-col {
    flex-direction: column;
    align-items: stretch;
  }
  .export-left-col,
  .export-right-col {
    max-width: 100%;
    width: 100%;
  }
  .exp-btn-submit { width: 100%; }
}

@media (max-width: 600px) {
  .exp-features-grid { grid-template-columns: 1fr; }
  .exp-action-btns { flex-direction: column; }
  .exp-form-card { padding: 1.75rem 1.25rem; }
}

.export-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.export-grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

/* Left Column: Export Benefits & Info (659px) */
.export-info-col {
  flex: 1;
  max-width: 660px;
  display: flex;
  flex-direction: column;
}

.export-title-card {
  background: #FFFFFF;
  border: 3px solid #FFBE6B;
  border-radius: 18px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding: 1.25rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.export-main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #005700;
  margin-bottom: 0.2rem;
}

.export-sub-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: #555555;
}

.export-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.export-feature-card {
  background: #FFFFFF;
  border: 3px solid #FFBE6B;
  border-radius: 18px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  padding: 1.75rem 1.25rem;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.export-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 24px rgba(0, 87, 0, 0.2);
}

.feature-icon-box {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #005700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.feature-desc p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #646464;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.export-actions-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.btn-export-whatsapp {
  flex: 1;
  height: 60px;
  background-color: #005700;
  color: #FFF7E9;
  border: none;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-export-whatsapp:hover {
  background-color: #004200;
  transform: translateY(-2px);
}

.btn-export-catalog {
  flex: 1;
  height: 60px;
  background-color: transparent;
  border: 2px solid #005700;
  color: #646464;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-export-catalog:hover {
  background-color: rgba(0, 87, 0, 0.05);
  color: #005700;
  transform: translateY(-2px);
}

/* Right Column: Form Card (656px) */
.export-form-col {
  flex: 1;
  max-width: 660px;
}

.export-form-card {
  background: #FFFFFF;
  border-radius: 25px;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.15);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.form-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-card-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #005700;
}

.form-section-block {
  margin-bottom: 2rem;
  width: 100%;
}

.form-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #005700;
  text-align: center;
  margin-bottom: 1.25rem;
}

.fields-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.export-field-box {
  width: 100%;
  height: 52px;
  border: 0.8px solid rgba(29, 29, 29, 0.7);
  border-radius: 20px;
  box-shadow: 0.765px 0px 1.224px rgba(0, 0, 0, 0.25);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  position: relative;
}

.export-field-box input,
.export-field-box select {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 0.95rem;
  font-family: inherit;
  color: #555555;
  cursor: pointer;
}

.export-field-box select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 1.5rem;
}

.required-star {
  color: #FF0000;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}

.dropdown-field {
  justify-content: space-between;
}

.field-left-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.dropdown-chevron {
  pointer-events: none;
  flex-shrink: 0;
}

.btn-export-submit {
  width: 100%;
  height: 55px;
  background-color: #005700;
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-export-submit:hover {
  background-color: #004200;
  transform: translateY(-2px);
}

.export-privacy-note {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #666666;
  font-size: 0.88rem;
  text-align: center;
}

.export-footer {
  background-color: #154C09;
}

/* Responsive design for Export page (legacy) */
@media (max-width: 1180px) {
  .export-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .export-info-col,
  .export-form-col {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .export-features-grid {
    grid-template-columns: 1fr;
  }
  
  .export-actions-row {
    flex-direction: column;
  }
  
  .export-form-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   Export Page V2 - New Figma Design (Full-width stacked layout)
   ========================================================================== */

.export-main-v2 {
  background-color: #FCFCF5;
  padding: 3rem 0 6rem;
  min-height: calc(100vh - 91px);
}

.export-container-v2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Top Title Card */
.export-title-card-v2 {
  background: #FFFFFF;
  border: 3px solid #FFBE6B;
  border-radius: 18px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  padding: 1.75rem 2.5rem;
  text-align: center;
}

.export-main-heading-v2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #008000;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.export-sub-heading-v2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555555;
}

/* Feature Cards Row (3-per-row) */
.export-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.export-feature-card-v2 {
  background: #FFFFFF;
  border: 3px solid #FFBE6B;
  border-radius: 18px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  min-height: 271px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  gap: 0.75rem;
}

.export-feature-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 28px rgba(0, 128, 0, 0.18);
}

.feature-icon-box-v2 {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.feature-title-v2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #008000;
  line-height: 1.4;
}

.feature-desc-v2 p {
  font-size: 0.88rem;
  font-weight: 500;
  color: #646464;
  line-height: 1.6;
  margin: 0.15rem 0;
}

/* Registration Form Card (full width) */
.export-form-card-v2 {
  background: #FFFFFF;
  border: 3px solid #FFBE6B;
  border-radius: 18px;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.12);
  padding: 2.5rem 3rem;
}

.form-card-header-v2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 190, 107, 0.35);
}

.form-card-title-v2 {
  font-size: 2rem;
  font-weight: 800;
  color: #008000;
  margin-bottom: 0.3rem;
}

.form-card-subtitle-v2 {
  font-size: 1rem;
  font-weight: 600;
  color: #555555;
}

/* Two-column form layout */
.form-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.form-section-v2 {
  display: flex;
  flex-direction: column;
}

.form-section-title-v2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #008000;
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid rgba(255, 190, 107, 0.4);
}

.fields-stack-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

/* Form Fields */
.export-field-v2 {
  width: 100%;
  min-height: 52px;
  border: 0.8px solid rgba(29, 29, 29, 0.55);
  border-radius: 20px;
  box-shadow: 0.765px 0px 1.224px rgba(0, 0, 0, 0.15);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.export-field-v2:focus-within {
  border-color: #FFBE6B;
  box-shadow: 0 0 0 3px rgba(255, 190, 107, 0.2);
}

.export-field-v2.textarea-field {
  min-height: 90px;
  padding: 0.7rem 1.25rem;
  align-items: flex-start;
  border-radius: 16px;
}

.export-field-v2 input,
.export-field-v2 select,
.export-field-v2 textarea {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 0.95rem;
  font-family: inherit;
  color: #555555;
  cursor: pointer;
  resize: none;
  line-height: 1.5;
}

.export-field-v2 select {
  appearance: none;
  -webkit-appearance: none;
}

.export-field-v2 input::placeholder,
.export-field-v2 textarea::placeholder {
  color: #999;
}

/* Action Buttons Row */
.form-actions-v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.btn-submit-v2 {
  height: 56px;
  background-color: #008000;
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-submit-v2:hover {
  background-color: #006600;
  transform: translateY(-2px);
}

.btn-whatsapp-v2 {
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp-v2:hover {
  background-color: #1db954;
  transform: translateY(-2px);
}

.btn-catalog-v2 {
  height: 56px;
  background-color: transparent;
  border: 2px solid #008000;
  color: #555555;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-catalog-v2:hover {
  background-color: rgba(0, 128, 0, 0.06);
  color: #008000;
  transform: translateY(-2px);
}

/* Responsive - Export V2 */
@media (max-width: 1100px) {
  .export-features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-two-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-actions-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .btn-submit-v2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .export-features-row {
    grid-template-columns: 1fr;
  }

  .export-form-card-v2 {
    padding: 1.75rem 1.25rem;
  }

  .form-actions-v2 {
    grid-template-columns: 1fr;
  }

  .export-main-heading-v2 {
    font-size: 1.8rem;
  }

  .form-card-title-v2 {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   10. Products Single Page (Figma Node 1:804 - Montagat_Section)
   ========================================================================== */
.products-page-body {
  background-color: #FFFFFF;
  color: var(--color-text-dark);
}

.products-page-main {
  padding: 3rem 0 6rem;
  background-color: #FFFFFF;
}

.products-hero-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.products-title-glow-box {
  display: inline-block;
  padding: 1rem 3.5rem;
  border-radius: 24px;
  background: rgba(248, 197, 125, 0.22);
  box-shadow: 0px 8px 89.3px rgba(248, 197, 125, 0.35);
  margin-bottom: 3.5rem;
}

.products-main-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #005700;
  text-shadow: 0px 1px 99px rgba(117, 226, 117, 0.22);
}

.category-tabs-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cat-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.cat-tab-icon-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #FFF7E9;
  border: 3px solid #FFBE6B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-fast);
}

.cat-tab-graphic {
  font-size: 3.25rem;
}

.cat-tab-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFBE6B;
  text-align: center;
}

.cat-tab-item:hover,
.cat-tab-item.active {
  box-shadow: 0 8px 20px rgba(0, 87, 0, 0.2);
}

.cat-tab-item:hover .cat-tab-icon-box,
.cat-tab-item.active .cat-tab-icon-box {
  border-color: #005700;
  box-shadow: 0 10px 28px rgba(0, 87, 0, 0.25);
  background-color: #F8F8E7;
}

.cat-tab-item:hover .cat-tab-name,
.cat-tab-item.active .cat-tab-name {
  color: #005700;
}

.section-gold-divider {
  width: 100%;
  max-width: 1472px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E2B057 50%, transparent 100%);
  margin: 3.5rem auto;
}

.tahina-heading-block {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tahina-main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #005700;
  margin-bottom: 0.75rem;
}

.tahina-main-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: #646464;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

.cat-badge-header.align-right {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

/* Responsive category tabs */
@media (max-width: 768px) {
  .category-tabs-layout {
    gap: 1.5rem;
  }
  
  .cat-tab-icon-box {
    width: 90px;
    height: 90px;
  }
  
  .cat-tab-graphic {
    font-size: 2.25rem;
  }
  
  .cat-tab-name {
    font-size: 1rem;
  }
  
  .products-title-wrapper {
    padding: 1rem 0.5rem;
    margin-bottom: 2.5rem;
  }

  .products-title-bg-art {
    width: 200px;
    height: 140px;
  }

  .products-main-title {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   11. About Us Single Page (Figma Node 1:1086 - Man_na7n+E7sa2yat_Section)
   ========================================================================== */
.about-page-body {
  background-color: #FBFBF2;
  color: var(--color-text-dark);
}

.about-hero-section {
  padding: 6rem 0 8rem;
  background-color: #FBFBF2;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

/* Stacked Showcase Cards Column */
.about-cards-col {
  flex: 1;
  max-width: 700px;
  height: 480px;
  position: relative;
}

.about-cards-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-stack-card {
  position: absolute;
  width: 360px;
  height: 290px;
  border: 3.3px solid #FFFFFF;
  border-radius: 12px;
  box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.18);
  background: radial-gradient(circle at center, #FFFFFF 0%, #FFF7E9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.about-stack-card:hover {
  box-shadow: 4px 8px 24px rgba(0, 87, 0, 0.2);
  border-color: #005700;
  z-index: 10 !important;
}

.card-top {
  top: 5%;
  right: 5%;
  z-index: 3;
}

.card-middle {
  top: 25%;
  right: 28%;
  z-index: 2;
}

.card-bottom {
  top: 45%;
  right: 52%;
  z-index: 1;
}

.stack-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-graphic-icon {
  font-size: 5rem;
}

/* Right Content Column */
.about-content-col {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.about-title-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge-indicator-orange {
  width: 18px;
  height: 47px;
  background-color: #EF9E4D;
  border-radius: 3px;
  display: inline-block;
}

.about-heading-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: #005700;
  margin: 0;
}

.about-narrative-text p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #646464;
  line-height: 2.3;
  margin-bottom: 1.5rem;
}

.btn-about-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 186px;
  min-height: 54px;
  padding: 0.85rem 2.5rem;
  white-space: nowrap;
  background-color: #FFF7E9;
  border: 1.5px solid #005700;
  color: #006C00;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 9999px;
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.btn-about-more:hover {
  background-color: #005700;
  color: #FFF7E9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 87, 0, 0.2);
}

.about-footer {
  background-color: #154C09;
  border-top: 5px solid #FFBE6B;
  border-bottom: 5px solid #FFBE6B;
}

/* Responsive layout for About Page */
@media (max-width: 1100px) {
  .about-grid {
    flex-direction: column-reverse;
  }
  
  .about-cards-col {
    width: 100%;
    max-width: 500px;
    height: 400px;
  }
  
  .about-stack-card {
    width: 280px;
    height: 220px;
  }
  
  .card-top { right: 5%; }
  .card-middle { right: 25%; }
  .card-bottom { right: 45%; }
}

/* ==========================================================================
   11. Single Product Details Page (صفحة تفاصيل المنتج الفردي)
   ========================================================================== */

.single-product-main {
  background: #F8F9FA;
  min-height: 80vh;
  padding-bottom: 5rem;
}

/* Breadcrumbs */
.product-breadcrumbs-wrap {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 1rem 0;
  margin-bottom: 2.5rem;
}

.product-breadcrumbs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748B;
}

.product-breadcrumbs a {
  color: #005700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumbs a:hover {
  color: #c59b27;
}

.breadcrumb-sep {
  color: #CBD5E1;
}

.breadcrumb-current {
  color: #1E293B;
  font-weight: 700;
}

.btn-back-to-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #005700;
  background: rgba(0, 87, 0, 0.06);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-back-to-catalog:hover {
  background: #005700;
  color: #FFFFFF;
}

/* Single Product Grid */
.single-product-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Column 1: Visual Card */
.product-visual-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 87, 0, 0.09);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-visual-card:hover {
  box-shadow: 0 18px 45px rgba(0, 87, 0, 0.08);
}

.product-main-image-wrap {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-detail-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-visual-card:hover .product-detail-img {
  transform: scale(1.04);
}

.product-trust-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px dashed #E2E8F0;
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.trust-icon {
  color: #005700;
}

.trust-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.3;
}

/* Column 2: Details Card */
.product-info-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 87, 0, 0.09);
  border-radius: 28px;
  padding: 2.5rem 3rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

/* Product Meta Row Category Badge (Matching Homepage Style) */
.product-meta-row .category-badge-pill,
.product-meta-row .product-cat-badge,
.product-meta-row .product-cat-pill {
  position: relative;
  background: transparent;
  padding: 0.35rem 1.6rem 0.35rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
  cursor: default;
  user-select: none;
  border-radius: 0;
  border: none;
}

.product-meta-row .category-badge-pill::before,
.product-meta-row .product-cat-badge::before,
.product-meta-row .product-cat-pill::before {
  content: '';
  position: absolute;
  inset: -5px -12px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.product-meta-row .category-badge-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #58584f;
  line-height: 1.2;
}

[data-theme="dark"] .product-meta-row .category-badge-title {
  color: #e5e7eb;
}

.product-meta-row .category-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transform: rotate(-10deg);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-meta-row .category-badge-icon img,
.product-meta-row .category-badge-img {
  width: 100%;
  height: 100%;
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.product-meta-row .category-badge-icon i {
  font-size: 1.3rem;
  color: #84532b;
}

.product-meta-row .category-badge-pill:hover .category-badge-icon,
.product-meta-row .product-cat-badge:hover .category-badge-icon {
  animation: badgeJarWiggle 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.single-product-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #005700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.single-product-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #c59b27;
  margin-bottom: 1.5rem;
}

.single-product-description {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F1F5F9;
}

/* Weights Section - Inspired by Homepage Warm Surfaces */
.product-weights-section {
  background: #FAF8F3;
  border: 1px solid rgba(0, 87, 0, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.weights-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.weights-header-icon {
  color: #005700;
  display: flex;
  align-items: center;
}

.weights-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #005700;
}

.weights-hint {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
}

.product-weights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-weight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  transition: all 0.25s ease;
}

.product-weight-chip:hover {
  border-color: #005700;
  background: #F6FDF6;
  transform: translateY(-2px);
}

.product-weight-chip.active {
  background: #005700;
  border-color: #005700;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 87, 0, 0.28);
}

.weight-chip-icon {
  display: flex;
  align-items: center;
}

.weight-chip-check {
  display: none;
}

.product-weight-chip.active .weight-chip-check {
  display: flex;
  align-items: center;
}

/* Action Buttons Wrap - Matching Homepage .btn-tahina-order Spirit */
.product-cta-action-wrap {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.btn-single-order {
  flex: 1;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #005700;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.75rem;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 87, 0, 0.28);
  transition: all 0.25s ease;
}

.btn-single-order svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-single-order:hover {
  background: #093c13;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 87, 0, 0.35);
}

.btn-single-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 14px;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  transition: all 0.25s ease;
}

.btn-single-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* Wholesale Callout */
.product-wholesale-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #F8FAFC;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  border: 1px solid #E2E8F0;
  border-right-width: 4px;
  border-right-color: #005700;
  margin-bottom: 1.5rem;
}

.callout-icon {
  color: #005700;
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
}

.callout-text a {
  color: #005700;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.25rem;
}

.callout-text a:hover {
  color: #c59b27;
  text-decoration: underline;
}

/* Single Product Suitable For Section (مناسبة لـ : من الصفحة الرئيسية) */
.single-suitable-section {
  padding-top: 1.5rem;
  border-top: 1px dashed #E2E8F0;
}

.single-suitable-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #005700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.suitable-heading-bar {
  width: 4px;
  height: 18px;
  background: #005700;
  border-radius: 2px;
}

.single-suitable-buttons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.single-suitable-buttons-row .tahina-suitable-btn {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 10px;
  gap: 0.45rem;
  box-shadow: 0 2px 8px rgba(255, 129, 75, 0.2);
}

.single-suitable-buttons-row .suitable-btn-icon {
  width: 20px;
  height: 20px;
}

/* Specifications Section */
.single-product-specs-section {
  padding-top: 3.5rem;
}

.specs-card-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 87, 0, 0.09);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.specs-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.specs-gold-bar {
  width: 5px;
  height: 28px;
  background: #005700;
  border-radius: 3px;
}

.specs-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #005700;
  margin: 0;
}

.specs-table-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #F1F5F9;
}

.spec-row:nth-child(even) {
  background: #FAFCFE;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  font-weight: 800;
  color: #1E293B;
  font-size: 0.98rem;
}

.spec-val {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Related Products Section */
.single-related-products-section {
  padding-top: 4rem;
}

.related-header-block {
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-title {
  font-size: 2rem;
  font-weight: 900;
  color: #005700;
  margin-bottom: 0.5rem;
}

.related-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: #64748B;
}

/* Single Product Responsive */
@media (max-width: 1024px) {
  .single-product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-visual-card {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .product-info-card {
    padding: 1.75rem 1.25rem;
  }

  .single-product-title {
    font-size: 1.75rem;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .product-cta-action-wrap {
    flex-direction: column;
  }

  .btn-single-order,
  .btn-single-whatsapp {
    width: 100%;
  }
}

/* Single Product Dark Mode */
[data-theme="dark"] .product-visual-card,
[data-theme="dark"] .product-info-card,
[data-theme="dark"] .specs-card-wrapper {
  background: #18191b;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .product-weights-section {
  background: #141517;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .product-weight-chip {
  background: #1f2023;
  border-color: #33363b;
  color: #f3f4f6;
}

[data-theme="dark"] .product-weight-chip:hover {
  background: #25282c;
  border-color: #22c55e;
}

[data-theme="dark"] .product-weight-chip.active {
  background: #005700;
  border-color: #22c55e;
  color: #ffffff;
}

[data-theme="dark"] .product-wholesale-callout {
  background: #151719;
  border-color: #26292e;
  border-right-color: #22c55e;
}

[data-theme="dark"] .single-product-title {
  color: #f3f4f6;
}

[data-theme="dark"] .single-product-subtitle {
  color: #fbbf24;
}

[data-theme="dark"] .single-product-description {
  color: #94a3b8;
  border-bottom-color: #26292e;
}

[data-theme="dark"] .spec-row {
  border-bottom-color: #26292e;
}

[data-theme="dark"] .spec-row:nth-child(even) {
  background: #141517;
}

[data-theme="dark"] .spec-key {
  color: #e2e8f0;
}

[data-theme="dark"] .spec-val {
  color: #94a3b8;
}

[data-theme="dark"] .specs-title {
  color: #22c55e;
}

[data-theme="dark"] .specs-gold-bar {
  background: #22c55e;
}

[data-theme="dark"] .single-suitable-heading,
[data-theme="dark"] .weights-title {
  color: #22c55e;
}

[data-theme="dark"] .suitable-heading-bar {
  background: #22c55e;
}

[data-theme="dark"] .trust-text {
  color: #94a3b8;
}

[data-theme="dark"] .trust-icon {
  color: #22c55e;
}

[data-theme="dark"] .single-suitable-section {
  border-top-color: #26292e;
}

/* ==========================================================================
   Contact Us Page Styles (صفحة اتصل بنا)
   ========================================================================== */
.contact-page-main {
  background-color: var(--color-bg, #fbf9f4);
  color: var(--color-text, #1f2937);
  padding-bottom: 4rem;
  min-height: 80vh;
}

[data-theme="dark"] .contact-page-main {
  background-color: #0f140f;
  color: #e2e8f0;
}

/* 1. Hero Banner */
.contact-hero-banner {
  padding: 3.5rem 0 2rem;
  text-align: right;
  border-bottom: 1px solid rgba(0, 87, 0, 0.08);
  background: linear-gradient(180deg, rgba(0, 87, 0, 0.04) 0%, transparent 100%);
}

[data-theme="dark"] .contact-hero-banner {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
}

.contact-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-accent-bar {
  display: inline-block;
  width: 6px;
  height: 32px;
  background: #ffbe6b;
  border-radius: 4px;
}

.contact-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #005700;
  margin: 0;
  line-height: 1.2;
}

[data-theme="dark"] .contact-page-title {
  color: #22c55e;
}

.contact-title-chevron {
  opacity: 0.7;
}

.contact-hero-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 780px;
  line-height: 1.7;
  margin: 0;
}

[data-theme="dark"] .contact-hero-subtitle {
  color: #94a3b8;
}

/* 2. Layout Grid */
.contact-content-section {
  padding: 3rem 0;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 3. Cards Styling */
.contact-info-card,
.contact-form-card,
.contact-map-card {
  background: #ffffff;
  border: 1px solid rgba(0, 87, 0, 0.12);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition-normal, 0.3s ease);
}

[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .contact-map-card {
  background: #141b14;
  border-color: #243424;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-card-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #005700;
  margin: 0 0 0.5rem 0;
}

[data-theme="dark"] .contact-card-heading {
  color: #22c55e;
}

.contact-card-sub {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1.75rem 0;
}

[data-theme="dark"] .contact-card-sub {
  color: #94a3b8;
}

/* 4. Channels List */
.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(0, 87, 0, 0.025);
  border: 1px solid rgba(0, 87, 0, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .contact-channel-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.contact-channel-item:hover {
  background: rgba(0, 87, 0, 0.05);
  transform: translateX(-3px);
}

[data-theme="dark"] .contact-channel-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.channel-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #005700;
  color: #ffffff;
}

[data-theme="dark"] .channel-icon-wrap {
  background: #1b431b;
  color: #86efac;
}

.channel-icon-wa {
  background: #25D366;
  color: #ffffff;
}

[data-theme="dark"] .channel-icon-wa {
  background: #1e7e34;
  color: #ffffff;
}

.channel-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.channel-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

[data-theme="dark"] .channel-label {
  color: #94a3b8;
}

.channel-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #005700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.channel-link:hover {
  color: #ff9800;
  text-decoration: underline;
}

[data-theme="dark"] .channel-link {
  color: #4ade80;
}

.channel-link-wa {
  color: #128c7e;
}

[data-theme="dark"] .channel-link-wa {
  color: #4ade80;
}

.channel-text {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 600;
  line-height: 1.5;
}

[data-theme="dark"] .channel-text {
  color: #cbd5e1;
}

/* Quick CTA Box */
.contact-quick-cta-box {
  background: #fdfbf7;
  border: 1px dashed #ffbe6b;
  border-radius: 12px;
  padding: 1.35rem;
  text-align: center;
}

[data-theme="dark"] .contact-quick-cta-box {
  background: #182218;
  border-color: #d97706;
}

.quick-cta-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #005700;
  margin: 0 0 0.4rem 0;
}

[data-theme="dark"] .quick-cta-title {
  color: #86efac;
}

.quick-cta-desc {
  font-size: 0.88rem;
  color: #4b5563;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

[data-theme="dark"] .quick-cta-desc {
  color: #94a3b8;
}

.btn-contact-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-contact-wa:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* 5. Contact Form Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

[data-theme="dark"] .contact-label {
  color: #cbd5e1;
}

.required-star {
  color: #dc2626;
  margin-right: 2px;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
  color: #1f2937;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .contact-input,
[data-theme="dark"] .contact-select,
[data-theme="dark"] .contact-textarea {
  background: #1a231a;
  border-color: #2e3e2e;
  color: #e2e8f0;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #005700;
  box-shadow: 0 0 0 3px rgba(0, 87, 0, 0.12);
}

[data-theme="dark"] .contact-input:focus,
[data-theme="dark"] .contact-select:focus,
[data-theme="dark"] .contact-textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.contact-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #005700;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.btn-contact-submit:hover {
  background-color: #004600;
  transform: translateY(-2px);
  color: #ffffff !important;
}

[data-theme="dark"] .btn-contact-submit {
  background-color: #22c55e;
  color: #0f140f !important;
}

[data-theme="dark"] .btn-contact-submit:hover {
  background-color: #16a34a;
}

.contact-status-box {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.contact-status-box.status-success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.contact-status-box.status-error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* 6. Map Section */
.contact-map-section {
  padding-bottom: 2rem;
}

.contact-map-card {
  padding: 1.75rem;
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.map-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #005700;
  margin: 0 0 0.3rem 0;
}

[data-theme="dark"] .map-card-title {
  color: #22c55e;
}

.map-card-subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
}

[data-theme="dark"] .map-card-subtitle {
  color: #94a3b8;
}

.btn-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 87, 0, 0.08);
  color: #005700;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-map-directions:hover {
  background: #005700;
  color: #ffffff;
}

[data-theme="dark"] .btn-map-directions {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

[data-theme="dark"] .btn-map-directions:hover {
  background: #22c55e;
  color: #0f140f;
}

.contact-map-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 0, 0.1);
}

[data-theme="dark"] .contact-map-embed-wrap {
  border-color: #2e3e2e;
}


