/* ==========================================================================
   AMDADY (إمدادي) E-Commerce Design System & Main Stylesheet
   Aesthetic: Elite Athletic Minimalist (Nike & Gymshark Inspired)
   ========================================================================== */

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

:root {
  /* Brand Color Palette */
  --bg-primary: #0C0C0E;
  --bg-secondary: #141417;
  --bg-tertiary: #1C1C21;
  --bg-card: #18181C;
  --bg-card-hover: #222228;
  --bg-elevated: #24242B;

  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --text-inverse: #0C0C0E;

  --accent-flame: #FF4500;
  --accent-flame-hover: #E03D00;
  --accent-flame-subtle: rgba(255, 69, 0, 0.12);
  --accent-ice: #00D4FF;
  --accent-ice-subtle: rgba(0, 212, 255, 0.12);
  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  --accent-green-subtle: rgba(16, 185, 129, 0.12);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(255, 69, 0, 0.4);

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(255, 69, 0, 0.25);
  --shadow-ice-glow: 0 0 30px rgba(0, 212, 255, 0.25);

  /* Fonts */
  --font-arabic: 'Readex Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-english: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-arabic);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="ltr"] body {
  font-family: var(--font-english);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

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

/* ==========================================================================
   Micro Announcement Top Bar
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #18181c, #FF4500, #18181c);
  background-size: 200% 100%;
  animation: announcementGlow 8s ease infinite;
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes announcementGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  color: #fff;
}

.brand-logo .logo-mark {
  background: linear-gradient(135deg, var(--accent-flame), #FFA07A);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.brand-logo .logo-arabic {
  font-size: 0.85rem;
  color: var(--accent-flame);
  font-weight: 700;
  margin-inline-start: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-toggle-btn:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.cart-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: #fff;
  transition: var(--transition);
}

.cart-toggle-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-flame);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.6);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.pulse {
  transform: scale(1.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
}

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

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-flame-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: #FFA07A;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--accent-flame), #E03D00);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 69, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

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

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.star-rating-icons {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-rating-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-visual-wrapper {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-secondary);
}

.hero-main-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-card:hover img {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(18, 18, 22, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

html[dir="ltr"] .hero-floating-badge {
  right: auto;
  left: 20px;
}

.floating-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-flame-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-flame);
  font-size: 1.3rem;
}

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.floating-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Value Proposition / Trust Bar
   ========================================================================== */
.value-props-section {
  padding: 30px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prop-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.prop-card:hover {
  background: var(--bg-tertiary);
}

.prop-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.prop-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.prop-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Product Catalog & Interactive Customizer
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-flame-subtle);
  color: var(--accent-flame);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.product-customizer-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.product-spotlight-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-badge-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-flame);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
}

html[dir="ltr"] .product-badge-overlay {
  right: auto;
  left: 16px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--accent-flame);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Details */
.product-details-content {
  display: flex;
  flex-direction: column;
}

.product-meta-category {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-flame);
  margin-bottom: 8px;
}

.product-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}

.price-current {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}

.price-original {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount-tag {
  background: var(--accent-flame-subtle);
  color: #FFA07A;
  border: 1px solid var(--border-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.installment-banner {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.installment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.installment-icons img {
  height: 22px;
  width: auto;
}

/* Variant Selector */
.variant-selector-group {
  margin-bottom: 26px;
}

.variant-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.variant-name-display {
  color: var(--accent-flame);
  font-weight: 700;
}

.color-swatches {
  display: flex;
  gap: 12px;
}

.swatch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.swatch-btn .circle-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.swatch-btn.black .circle-color { background: #111111; }
.swatch-btn.white .circle-color { background: #F4F4F5; }
.swatch-btn.pink .circle-color { background: #E7A9A9; }

.swatch-btn.active {
  border-color: var(--accent-flame);
  background: var(--bg-card-hover);
  color: #fff;
}

/* Free Bonus Callout */
.bonus-callout-box {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(245, 158, 11, 0.08));
  border: 1px dashed var(--accent-flame);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #FFA07A;
  margin-bottom: 26px;
}

/* Quantity Bundle Selector (CRO Tiered Discounts) */
.bundle-selector-group {
  margin-bottom: 30px;
}

.bundle-group-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.bundle-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.bundle-option-card:hover {
  border-color: var(--border-medium);
}

.bundle-option-card.active {
  border-color: var(--accent-flame);
  background: rgba(255, 69, 0, 0.05);
}

.bundle-radio {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-medium);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-option-card.active .custom-radio {
  border-color: var(--accent-flame);
}

.bundle-option-card.active .custom-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-flame);
}

.bundle-titles h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.bundle-titles p {
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 600;
}

.bundle-pricing {
  text-align: end;
}

.bundle-price-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.bundle-badge-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-flame);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

html[dir="ltr"] .bundle-badge-tag {
  right: auto;
  left: 20px;
}

/* Actions Row */
.product-actions-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-add-to-cart {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent-flame), #E03D00);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 69, 0, 0.55);
}

.btn-buy-instant {
  width: 100%;
  padding: 14px;
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-buy-instant:hover {
  background: #E4E4E7;
}

/* Secondary Product Card (Thermal Flask) */
.secondary-product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.secondary-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.secondary-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.secondary-features-list li span.check {
  color: var(--accent-green);
  font-weight: 900;
}

/* ==========================================================================
   Product Anatomy & 360 Feature Hotspots
   ========================================================================== */
.anatomy-section {
  padding: 90px 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.anatomy-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.anatomy-card:hover {
  border-color: var(--accent-flame);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.anatomy-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-flame-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-flame);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.anatomy-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.anatomy-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Lifestyle & Use-Case Showcase
   ========================================================================== */
.lifestyle-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

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

.lifestyle-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 380px;
  background: var(--bg-secondary);
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.lifestyle-overlay h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.lifestyle-overlay p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Comparison Table Section
   ========================================================================== */
.comparison-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: start;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.comparison-table th {
  font-weight: 800;
  font-size: 1.05rem;
}

.comparison-table th.col-amdady,
.comparison-table td.col-amdady {
  background: rgba(255, 69, 0, 0.05);
  border-inline: 1px solid rgba(255, 69, 0, 0.2);
  color: #fff;
  font-weight: 700;
}

.comparison-table th.col-amdady {
  color: var(--accent-flame);
}

.comparison-table td.col-other {
  color: var(--text-muted);
}

/* ==========================================================================
   Reviews & Social Proof Section
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.reviews-score-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 20px 40px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-inline: auto;
}

.reviews-score-hero .score-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

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

.review-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-size: 1rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

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

.verified-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
  background: var(--accent-green-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Automated Order Tracking UI Section
   ========================================================================== */
.order-tracking-section {
  padding: 90px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.tracking-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.tracking-input-box {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.tracking-input {
  flex-grow: 1;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.tracking-input:focus {
  border-color: var(--accent-flame);
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.2);
}

.btn-track {
  padding: 16px 30px;
  background: var(--accent-flame);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.btn-track:hover {
  background: var(--accent-flame-hover);
}

.tracking-demo-hints {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-demo-fill {
  color: var(--accent-flame);
  text-decoration: underline;
  cursor: pointer;
}

/* Timeline Pipeline */
.tracking-result-box {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  display: none;
}

.tracking-result-box.active {
  display: block;
}

.tracking-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: var(--bg-secondary);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.tracking-pipeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-inline-start: 36px;
}

.tracking-pipeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  inset-inline-start: 14px;
  width: 2px;
  background: var(--border-medium);
}

.pipeline-stage {
  position: relative;
}

.stage-dot {
  position: absolute;
  top: 4px;
  inset-inline-start: -36px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  z-index: 2;
}

.pipeline-stage.completed .stage-dot {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}

.pipeline-stage.current .stage-dot {
  background: var(--accent-flame);
  border-color: var(--accent-flame);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
  animation: pulseStage 2s infinite;
}

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

.stage-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.stage-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: start;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-flame);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  background: #08080A;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
}

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

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 440px;
}

.footer-nav-col h5,
.footer-legal-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: #fff;
  padding-inline-start: 4px;
}

.footer-brokerage-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-badges-row img {
  height: 26px;
  width: auto;
  border-radius: 4px;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-spotlight-card,
  .secondary-product-card {
    grid-template-columns: 1fr;
  }

  .anatomy-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .value-props-grid {
    grid-template-columns: 1fr;
  }

  .tracking-input-box {
    flex-direction: column;
  }

  .btn-track {
    width: 100%;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}
