/* IMDI Health Care Master Design System & Stylesheet */
:root {
  --primary-green: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --bg-gradient: linear-gradient(180deg, #f0f7f0 0%, #ffffff 100%);
  --surface-white: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --font-main: 'Plus Jakarta Sans', 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #f8faf8;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Navigation Bar (Container Width Aligned 100% with Hero Section) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f0f4f0;
  padding: 14px 5%;
  box-shadow: 0 2px 15px rgba(0,0,0,0.02);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: translateY(-2px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  font-family: var(--font-main);
}

.brand-text p {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 2px;
}

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

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  font-family: var(--font-main);
}

.nav-links a:hover {
  color: var(--primary-green);
}

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

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 9px 38px 9px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  outline: none;
  width: 200px;
  transition: width 0.3s ease;
  font-family: var(--font-main);
}

.search-input:focus {
  width: 240px;
  background: white;
  border-color: var(--primary-green);
}

.search-icon {
  position: absolute;
  right: 14px;
  color: #9ca3af;
  font-size: 0.88rem;
}

.btn-cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: #374151;
  padding: 4px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--primary-green);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-order-now {
  background: var(--primary-green);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.btn-order-now:hover {
  background: var(--primary-dark);
}

/* Hero Section (UNTOUCHED & FINALIZED AS DIRECTED) */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f0f7f0 0%, #f9fbf9 60%, #ffffff 100%);
  padding: 50px 5% 40px;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 30px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #15803d;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  font-family: var(--font-main);
}

.hero-title .highlight {
  color: #2e7d32;
}

.hero-desc {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1f2937;
  font-size: 1rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: #2e7d32;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

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

.btn-shop-collection {
  background: #2e7d32;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
  font-family: var(--font-main);
}

.btn-shop-collection:hover {
  background: #1b5e20;
  transform: translateY(-2px);
}

.btn-view-all {
  background: white;
  border: 1.5px solid #2e7d32;
  color: #2e7d32;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.btn-view-all:hover {
  background: #f0f7f0;
}

.hero-reviews-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-gold {
  color: #f59e0b;
  font-size: 1rem;
}

.rating-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
}

.hero-visual-podium {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-showcase-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
}

.floating-product-tag {
  position: absolute;
  background: white;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  font-size: 0.82rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
}

.floating-product-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(46, 125, 50, 0.18);
  border-color: #2e7d32;
}

.floating-product-tag.tag-top-left {
  top: 38%;
  left: 0;
}

.floating-product-tag.tag-bottom-left {
  bottom: 12%;
  left: 6%;
}

.floating-product-tag.tag-top-right {
  top: 25%;
  right: 0;
}

.floating-product-tag.tag-bottom-right {
  bottom: 16%;
  right: 2%;
}

.tag-name {
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}

.tag-price {
  font-weight: 900;
  color: #2e7d32;
  font-size: 0.9rem;
}

.tag-stars {
  color: #f59e0b;
  font-size: 0.72rem;
}

/* Bottom Trust Bar */
.hero-trust-bar {
  max-width: 1280px;
  margin: 30px auto 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f4f0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-circle {
  width: 46px;
  height: 46px;
  background: #f0f7f0;
  color: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.trust-info p {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 2px;
}

/* Product Cards (Full Width Image Area & Absolute Badge Tag) */
.products-section {
  padding: 80px 5%;
  background: #ffffff;
}

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

.sub-title {
  text-transform: uppercase;
  color: #2e7d32;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
}

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #2e7d32;
}

/* Full Width Image Container without Padding */
.product-thumb {
  position: relative;
  background: #f9fbf9;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0;
}

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

/* Absolute Badge Overlay on Top-Left Corner */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: #2e7d32;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  letter-spacing: 0.5px;
}

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

.card-category {
  font-size: 0.78rem;
  color: #2e7d32;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.card-title a:hover {
  color: #2e7d32;
}

.card-desc {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.current-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #2e7d32;
}

.old-price {
  font-size: 0.95rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-card-buy {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-main);
}

.btn-card-buy:hover {
  background: #1b5e20;
}

.btn-card-details {
  background: #f0f7f0;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.btn-card-details:hover {
  background: #e8f5e9;
}

/* Bundles Section */
.bundles-section {
  padding: 90px 5%;
  background: #f8faf8;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.bundles-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.bundle-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.bundle-card.popular {
  border: 3px solid #2e7d32;
  transform: scale(1.04);
  box-shadow: 0 16px 35px rgba(46, 125, 50, 0.15);
}

.bundle-badge-header {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.bundle-header {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

.bundle-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
}

.bundle-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
}

.bundle-image-box {
  padding: 20px;
  text-align: center;
  background: #f9fbf9;
}

.bundle-image-box img {
  max-height: 180px;
  object-fit: contain;
}

.bundle-pricing {
  padding: 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2e7d32;
  line-height: 1;
}

.price-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
}

.savings-tag {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 14px 0;
  font-size: 0.9rem;
}

.bundle-btn {
  width: 90%;
  margin: 0 auto 24px;
  background: #2e7d32;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.25);
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.bundle-btn:hover {
  background: #1b5e20;
  transform: translateY(-2px);
}

.payment-trust-logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Doctors Section */
.doctors-section {
  padding: 80px 5%;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  color: #0f172a;
}

.doctors-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.doctor-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #16a34a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.doctor-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.doctor-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #16a34a;
}

.doctor-name {
  font-weight: 900;
  font-size: 1rem;
  color: #0f172a;
}

.doctor-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #16a34a;
}

.doctor-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
  color: #334155;
}

/* FAQ Section */
.faq-section {
  padding: 80px 5%;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f9fbf9;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
}

.faq-answer {
  padding: 0 20px 20px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modals & Checkout Drawer Styling (Brand Styled Buttons) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  position: relative;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0f7f0;
}

.modal-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1b5e20;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.modal-body {
  padding: 24px;
}

/* Button UI Fix: Fully Styled Brand Green Buttons */
.btn-primary-styled {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white !important;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: var(--font-main);
  width: 100%;
}

.btn-primary-styled:hover {
  background: linear-gradient(135deg, #1b5e20, #0f3811);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary-styled {
  background: white;
  border: 2px solid #2e7d32;
  color: #2e7d32 !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary-styled:hover {
  background: #f0f7f0;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-main);
}

.form-input:focus {
  outline: none;
  border-color: #2e7d32;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.payment-option {
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 700;
}

.payment-option.selected {
  border-color: #2e7d32;
  background: #e8f5e9;
  color: #1b5e20;
}

.crypto-box {
  background: #f4fbf4;
  border: 1px solid #a5d6a7;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
  text-align: center;
}

.qr-code-placeholder {
  width: 140px;
  height: 140px;
  margin: 12px auto;
  background: white;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.qr-code-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 5% 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Mobile Drawer Menu & Cross-Device Responsiveness */
html, body {
  overflow-x: hidden;
  width: 100%;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #111827;
  cursor: pointer;
  padding: 6px;
}

.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  backdrop-filter: blur(2px);
}

.mobile-drawer-overlay.active {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100vh;
  background: #ffffff;
  z-index: 2001;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

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

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f4f0;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.mobile-nav-links a:hover {
  background: #f0f7f0;
  color: #2e7d32;
}

/* Media Queries for Tablets & Mobile Devices */
@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .search-box input {
    width: 150px;
  }

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

  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-visual-podium {
    margin-top: 30px;
  }

  .payment-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 10px;
  }

  .search-box {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Modal Viewport Fit */
  .modal-content {
    width: 92% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }

  /* Checkout 2-column to 1-column stack */
  .checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Single Product Detail Page Hero Stack */
  .product-detail-hero-grid {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    gap: 24px !important;
  }

  /* Hide Header Order Now Button on Mobile Screens */
  .btn-order-now {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .btn-order-now {
    display: inline-flex !important;
  }
}

@media (max-width: 640px) {
  .checkout-header-wrapper {
    padding: 20px 4% 50px !important;
  }

  .checkout-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 16px !important;
    gap: 10px !important;
  }

  .checkout-title-text {
    font-size: 1.4rem !important;
    white-space: nowrap !important;
  }

  .checkout-subtitle-text {
    font-size: 0.78rem !important;
    margin-top: 2px !important;
  }

  .checkout-trust-badges {
    font-size: 0.72rem !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .currency-label-text {
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }

  .currency-symbol-span {
    display: none !important;
  }

  .currency-btn {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }
}


@media (max-width: 990px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
