/* ═══════════════════════════════════════════════
   EDCareMeds — Main Stylesheet
   (Header & Footer styles are in header.php / footer.php)
═══════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --blue:       #1565c0;
  --blue-light: #1976d2;
  --blue-pale:  #e8f0fe;
  --teal:       #14d1c4;
  --green:      #22c55e;
  --red:        #ef4444;
  --dark:       #0f172a;
  --body:       #374151;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --bg:         #f8faff;
  --white:      #ffffff;
  --radius:     6px;
  --shadow-sm:  0 2px 10px rgba(0,0,0,.06);
  --shadow-md:  0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
  --transition: .25s cubic-bezier(.22,1,.36,1);
}


/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family yahan BILKUL MAT LIKHO */
}

body {
  font-family: 'Segoe UI', system-ui, Arial, sans-serif;
  color: var(--body);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

select, option { cursor: pointer; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37,211,102,.4);
  animation: waPulse 2.2s infinite;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.call-float {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 54px; height: 54px;
  background: linear-gradient(135deg,var(--blue),var(--blue-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(21,101,192,.4);
  animation: callPulse 2.2s infinite;
  transition: transform .2s, box-shadow .2s;
}
.call-float:hover { transform: scale(1.1) translateY(-2px); color: #fff; }
@keyframes callPulse {
  0%   { box-shadow: 0 0 0 0 rgba(21,101,192,.7); }
  70%  { box-shadow: 0 0 0 16px rgba(21,101,192,0); }
  100% { box-shadow: 0 0 0 0 rgba(21,101,192,0); }
}

@media (max-width: 768px) {
  .whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 15px; right: 15px; }
  .call-float     { width: 46px; height: 46px; font-size: 20px; bottom: 76px; right: 15px; }
}

/* ══════════════════════════════════════════════
   QUANTITY POPUP
══════════════════════════════════════════════ */
.qty-popup-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.qty-popup {
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  text-align: center;
  max-width: 320px;
  width: 92%;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.qty-popup h3 { font-size: 17px; color: var(--dark); margin-bottom: 6px; }
.qty-popup .qty-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 14px; margin: 22px 0;
}
.qty-popup .qty-btn {
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  background: var(--bg); font-size: 20px;
  cursor: pointer; border-radius: 8px;
  transition: all .18s;
}
.qty-popup .qty-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.qty-popup .qty-input {
  width: 64px; height: 42px; text-align: center;
  font-size: 16px; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: 8px;
  outline: none;
}
.qty-popup .popup-buttons { display: flex; gap: 10px; margin-top: 22px; }
.qty-popup .confirm-btn {
  flex: 1; background: var(--blue); color: #fff;
  padding: 11px; border: none; border-radius: 8px;
  cursor: pointer; font-weight: 700; font-size: 14px;
  transition: background .18s;
}
.qty-popup .confirm-btn:hover { background: #1251a3; }
.qty-popup .cancel-btn {
  flex: 1; background: var(--bg); color: var(--body);
  padding: 11px; border: 1.5px solid var(--border);
  border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: 14px; transition: background .18s;
}
.qty-popup .cancel-btn:hover { background: #eee; }

@media (max-width: 480px) {
  .qty-popup { padding: 22px 18px; }
  .qty-popup .popup-buttons { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   SHARED SECTION TITLE
══════════════════════════════════════════════ */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title .tag {
  display: inline-block;
  background: var(--blue-pale); color: var(--blue);
  padding: 6px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.section-title h2 {
  font-size: clamp(28px,4vw,42px);
  color: var(--dark); font-weight: 700;
  margin: 16px 0 14px; position: relative; line-height: 1.25;
}
.section-title h2::after {
  content: '';
  display: block; width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--blue), #64b5f6);
  margin: 14px auto 0; border-radius: 3px;
}
.section-title p {
  max-width: 680px; margin: 0 auto;
  color: var(--muted); font-size: 16px; line-height: 1.75;
}

/* ══════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════ */
.hero-slider {
  width: 100%;
  overflow: hidden;
  display: grid;        /* ← Grid trick se slides stack honge */
}

.slide {
  grid-area: 1 / 1;    /* ← Sab slides ek hi cell me */
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: auto;         /* ← Image apni natural height legi, koi crop nahi */
  display: block;
}
/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg,#eaf8ff,#f0f5ff);
  padding: 60px 5%;
}
.hero-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  max-width: 1300px; margin: 0 auto;
}
.hero-content h1 {
  font-size: clamp(32px,4vw,52px);
  line-height: 1.2; margin-bottom: 30px;
  color: #12243a; font-weight: 700;
}
.hero-features {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px 36px; margin-bottom: 36px;
}
.feature { display: flex; gap: 12px; }
.feature i { font-size: 26px; color: var(--blue); flex-shrink: 0; }
.feature h4 { font-size: 14px; margin: 0; color: #12243a; font-weight: 600; }
.feature p  { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; background: #fff;
  color: var(--blue); border-radius: var(--radius);
  font-weight: 700; box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.hero-btn:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.hero-img img { max-width: 420px; }

@media (max-width: 768px) {
  .hero-img { display: none; }
  .hero-inner { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   FEATURES BAR
══════════════════════════════════════════════ */
.features-bar { padding: 44px 5%; }
.features-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px; max-width: 1300px; margin: 0 auto;
}
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-item i { font-size: 36px; color: var(--blue); flex-shrink: 0; }
.feature-item h4 { margin: 0; font-size: 18px; font-weight: 600; color: var(--dark); }
.feature-item p  { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

@media (max-width: 900px) { .features-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .features-inner { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════ */
.products {
  padding: 10px 20px;
  max-width: 1300px; margin: 0 auto;
}
.product-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; padding-bottom: 16px;
  border-bottom: 2px solid #eef4fa;
}
.product-head h2 {
  font-size: clamp(24px,3.5vw,36px);
  font-weight: 700; color: #0b2b4f; margin: 0;
  position: relative;
}
.product-head h2::after {
  content: ''; position: absolute; bottom: -18px; left: 0;
  width: 52px; height: 3px;
  background: linear-gradient(90deg,var(--blue),#64b5f6);
  border-radius: 3px;
}
.view-all {
  color: var(--blue); font-weight: 600; font-size: 14px;
  border: 2px solid var(--blue); padding: 8px 20px;
  border-radius: 8px; transition: all var(--transition);
}
.view-all:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21,101,192,.28);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.product-card {
  border-radius: 12px; background: #fff;
  padding: 16px 16px 20px;
  border: 1.5px solid #d0e6f8;
  display: flex; flex-direction: column;
  height: 100%; min-height: 400px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(21,101,192,.14);
  border-color: var(--blue);
}

/* Badge */
.product-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg,#ef5350,#e53935);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .4px; z-index: 2;
}
.product-card .badge.sale { background: linear-gradient(135deg,var(--blue),#1976d2); }
.product-card .badge.hot  { background: linear-gradient(135deg,#f9a825,#f57f17); }

/* Wishlist */
.wishlist-icon {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 17px; color: #ccc;
  transition: all .2s; z-index: 2;
  box-shadow: var(--shadow-sm);
}
.wishlist-icon:hover { color: var(--red); background: #fff; transform: scale(1.1); }

/* Image */
.product-image {
  overflow: hidden; border-radius: 10px;
  margin-bottom: 12px; background: var(--bg);
}
.product-image a { display: block; height: 200px; position: relative; }
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--transition);
}
.product-card:hover img { transform: scale(1.06); }

/* Quick View Overlay */
.product-image .overlay {
  position: absolute; inset: 0; border-radius: 10px;
  background: rgba(11,43,79,.18);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: center; justify-content: center;
}
.product-card:hover .overlay { opacity: 1; }
.overlay .quick-view {
  background: rgba(255,255,255,.94); color: #0b2b4f;
  padding: 7px 18px; border-radius: 30px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  transform: translateY(10px) scale(.92);
  transition: all .3s var(--transition);
}
.product-card:hover .overlay .quick-view { transform: none; }

/* Title */
.product-card h4 {
  margin: 4px 0 8px; font-size: 16px;
  font-weight: 600; line-height: 1.4;
  flex-grow: 1; color: #1a2e44;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; min-height: 44px;
}
.product-card h4 a { color: inherit; transition: color .2s; }
.product-card h4 a:hover { color: var(--blue); }

/* Stars */
.stars {
  color: #ffc107; margin: 4px 0 6px;
  font-size: 13px; letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 5px;
}
.stars .count { color: var(--muted); font-size: 12px; letter-spacing: 0; }

/* Price */
.price-row {
  display: flex; align-items: center;
  gap: 8px; margin: 4px 0 10px; flex-wrap: wrap;
}
.price { color: #0b2b4f; font-weight: 700; font-size: 19px; }
.price .original {
  color: #b0c0d0; font-weight: 400;
  font-size: 14px; text-decoration: line-through; margin-left: 4px;
}
.price .discount {
  background: #ffebee; color: #e53935;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
}

/* Buttons */
.btn-row { display: flex; gap: 10px; margin-top: 12px; }
.cart-btn, .buy-btn {
  flex: 1; padding: 11px 8px; border-radius: var(--radius);
  text-align: center; cursor: pointer;
  font-weight: 700; font-size: 13px;
  transition: all var(--transition); border: none;
  letter-spacing: .2px;
}
.cart-btn {
  background: linear-gradient(135deg,var(--teal),#0fb4a8);
  color: #fff; box-shadow: 0 4px 14px rgba(20,209,196,.28);
}
.cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20,209,196,.38);
}
.buy-btn {
  background: linear-gradient(135deg,#003b6f,#005aa6);
  color: #fff; box-shadow: 0 4px 14px rgba(0,59,111,.25);
}
.buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,59,111,.35);
  background: linear-gradient(135deg,#005aa6,#0073cc);
}

/* Product grid responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .products { padding: 10px 12px; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .product-card {
    min-height: unset;
    padding: 10px 10px 12px;
    border-radius: 10px;
  }
  .product-image a { height: 130px; }
  .product-card h4 {
    font-size: 13px;
    min-height: unset;
    margin: 4px 0 4px;
    -webkit-line-clamp: 2;
  }
  /* Molecule name / subtitle in teal */
  .product-card .molecule,
  .product-card .molecule-name,
  .product-card p.teal,
  .product-card .product-molecule {
    font-size: 11px !important;
    line-height: 1.3;
    margin-bottom: 4px !important;
  }
  /* "Starting From" label */
  .product-card .from-label,
  .product-card .starting-from,
  .product-card small {
    font-size: 10px !important;
    margin-bottom: 2px !important;
  }
  .price { font-size: 15px; }
  .price .original { font-size: 12px; }
  .stars { font-size: 11px; margin: 2px 0 4px; }
  .btn-row { gap: 6px; margin-top: 8px; }
  .cart-btn, .buy-btn {
    padding: 8px 6px;
    font-size: 12px;
  }
  .product-head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .products { padding: 8px 10px; }
  .product-grid { gap: 8px; }
  .product-card { padding: 9px 9px 11px; }
  .product-image a { height: 110px; }
  .product-card h4 { font-size: 12px; }
  .price { font-size: 14px; }
  .btn-row { flex-direction: column; gap: 5px; }
  .cart-btn, .buy-btn {
    width: 100%; flex: none;
    font-size: 12px; padding: 9px;
  }
  .wishlist-icon { width: 28px; height: 28px; font-size: 14px; }
}
/* ══════════════════════════════════════════════
   REVIEW SLIDER
══════════════════════════════════════════════ */
.review-section {
  padding: 60px 0;
  background: linear-gradient(180deg,var(--bg),#eef5ff);
  overflow: hidden;
}
.review-slider { overflow: hidden; }
.review-track {
  display: flex; gap: 10px;
  width: max-content;
  animation: reviewSlide 35s linear infinite;
}
.review-track:hover { animation-play-state: paused; }
@keyframes reviewSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  width: 300px; background: #fff;
  border-radius: 14px; padding: 28px 24px;
  text-align: center; border: 1px solid #e4eef8;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(21,101,192,.14);
}
.quote {
  width: 40px; height: 40px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--blue),#42a5f5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
  box-shadow: 0 5px 14px rgba(21,101,192,.3);
}
.review-card img {
  width: 78px; height: 78px; border-radius: 50%;
  object-fit: cover; border: 4px solid #fff;
  outline: 3px solid var(--blue);
  box-shadow: 0 6px 18px rgba(21,101,192,.16);
}
.review-card h3 { margin-top: 16px; font-size: 20px; color: #222; font-weight: 700; }
.review-card span { display: block; color: var(--blue); font-size: 13px; font-weight: 600; margin: 4px 0 14px; }
.review-card p { color: var(--muted); font-size: 14px; line-height: 1.7; font-style: italic; }

@media (max-width: 768px) {
  .review-section { padding: 40px 0; }
  .review-card { width: 260px; padding: 22px 18px; }
  .review-card img { width: 66px; height: 66px; }
}
@media (max-width: 480px) {
  .review-card { width: 230px; padding: 18px 16px; }
  .review-card h3 { font-size: 17px; }
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-edcure { padding: 20px 6%; background: #fff; }
.about-wrap { display: flex; align-items: center; gap: 30px; max-width: 1300px; margin: 0 auto; }
.about-images { position: relative; width: 40%; }
.about-main  { width: 100%; border-radius: 10px; }
.about-small {
  position: absolute; right: 24px; bottom: 40px;
  width: 50%; border-radius: 14px;
  box-shadow: var(--shadow-md); background: #fff;
}
.about-info { width: 55%; }
.about-info h2 { font-size: clamp(24px,3vw,32px); margin-bottom: 18px; color: #163b63; }
.about-info p  { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 14px; }
.about-btn {
  display: inline-block; margin-top: 14px;
  padding: 11px 26px; background: var(--blue);
  color: #fff; border-radius: 8px; font-size: 14px;
  font-weight: 600; transition: background var(--transition);
}
.about-btn:hover { background: #1251a3; }

@media (max-width: 900px) {
  .about-wrap { flex-direction: column; gap: 32px; }
  .about-images, .about-info { width: 100%; }
  .about-small { right: 12px; bottom: 28px; width: 40%; }
}

/* ══════════════════════════════════════════════
   COMMITMENT / WHY CHOOSE US
══════════════════════════════════════════════ */
.commitment-section {
  padding: 50px 0;
  background: var(--bg);
}
.commitment-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.commitment-heading { text-align: center; margin-bottom: 36px; }
.commitment-heading h2 { font-size: clamp(26px,3.5vw,38px); color: var(--dark); margin-bottom: 10px; }
.commitment-heading p  { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 15px; line-height: 1.7; }

.commitment-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 14px;
}
.commitment-box {
  padding: 28px 20px; text-align: center;
  border: 2px solid #d0dff8;
  border-radius: 12px; background: #fff;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.commitment-box:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(21,101,192,.14);
}
.icon-circle {
  width: 66px; height: 66px; margin: 0 auto 16px;
  background: var(--blue-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--blue);
  transition: all var(--transition);
}
.commitment-box:hover .icon-circle { background: var(--blue); color: #fff; }
.commitment-box h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.commitment-box p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .commitment-boxes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .commitment-boxes { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   OFFER / WHY US SECTION
══════════════════════════════════════════════ */
.offer-section { padding: 50px 0; background: #f8fbff; }
.offer-container {
  max-width: 1300px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.offer-tag {
  display: inline-block; background: var(--blue-pale);
  color: var(--blue); padding: 7px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.offer-left h2, .offer-right h2 {
  font-size: clamp(26px,3.5vw,38px); color: #222; margin-bottom: 26px; line-height: 1.3;
}
.offer-box {
  display: flex; gap: 18px; background: #fff;
  padding: 20px; border-radius: 12px; margin-bottom: 16px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--border);
}
.offer-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.offer-icon {
  min-width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.offer-content h3 { margin-bottom: 6px; color: var(--dark); font-size: 17px; }
.offer-content p, .offer-right p { color: var(--muted); line-height: 1.75; font-size: 14.5px; }
.offer-highlight {
  margin-top: 32px; display: flex; justify-content: space-between; gap: 16px;
}
.offer-highlight div {
  flex: 1; text-align: center; background: #fff;
  padding: 20px; border-radius: 12px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.offer-highlight h3 { color: var(--blue); font-size: 30px; margin-bottom: 6px; }
.offer-highlight span { color: var(--muted); font-size: 14px; }

@media (max-width: 991px) {
  .offer-container { grid-template-columns: 1fr; gap: 36px; }
  .offer-highlight { flex-direction: column; }
  .offer-box { flex-direction: column; text-align: center; align-items: center; }
}

/* ══════════════════════════════════════════════
   ORDER STEPS
══════════════════════════════════════════════ */
.order-section { padding: 60px 5%; background: #f7fbff; }
.order-title { text-align: center; margin-bottom: 44px; }
.order-title h2 { font-size: clamp(26px,3.5vw,36px); color: #12243a; margin-bottom: 10px; }
.order-title p  { color: var(--muted); font-size: 15px; }
.order-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px; max-width: 1300px; margin: 0 auto;
}
.order-card {
  background: #fff; padding: 28px 20px;
  border-radius: 12px; text-align: center;
  border: 1.5px solid #dbeafe;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.order-card:hover {
  transform: translateY(-6px); border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(21,101,192,.16);
}
.order-icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  border-radius: 50%; border: 2px solid #dbeafe;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.order-icon i { font-size: 24px; color: var(--blue); transition: color var(--transition); }
.order-card:hover .order-icon { background: var(--blue); border-color: var(--blue); }
.order-card:hover .order-icon i { color: #fff; }
.order-card h4 { font-size: 15px; margin-bottom: 7px; color: #12243a; font-weight: 700; }
.order-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) { .order-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .order-steps { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   HEALTH BANNER
══════════════════════════════════════════════ */
.health-banner {
  position: relative; height: 60px; width: 100%;
  border-radius: 6px; overflow: hidden;
}
.health-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,#2bb0e6,#1f3bd4);
  opacity: .9;
}
.health-content {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  align-items: center; justify-content: center; text-align: center;
}
.health-content h1 { color: #fff; font-size: clamp(22px,3vw,36px); font-weight: 600; }

/* ══════════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════════ */
.blog-hero {
  width: 100%; height: 150px;
  display: flex; align-items: center; padding: 40px 60px;
  background: linear-gradient(135deg,#1e3ccf,#1bb3e9);
  position: relative; overflow: hidden;
}
.blog-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("images/25.jpg"); opacity: .06;
}
.blog-hero-content {
  position: relative; max-width: 800px;
  color: #fff; margin: 0 auto; text-align: center;
}
.blog-hero-content h1 { font-size: clamp(22px,3vw,34px); font-weight: 700; }

.blog-grid { padding: 10px 5%; background: #f9fafc; }
.blog-grid .container {
  max-width: 1300px; margin: auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: -30px;
}
.blog-heading { text-align: center; margin-bottom: 48px; position: relative; }
.blog-heading h2 {
  font-size: clamp(24px,3.5vw,34px); font-weight: 700;
  color: var(--dark); position: relative; display: inline-block; margin-bottom: 12px;
}
.blog-heading h2::after {
  content: ''; position: absolute;
  left: 50%; bottom: -10px; transform: translateX(-50%);
  width: 52px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg,var(--green),#16a34a);
}
.blog-heading p { max-width: 640px; margin: 26px auto 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.blog-card {
  background: #fff; border-radius: 10px;
  padding: 14px; border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px); border-color: var(--green);
  box-shadow: 0 16px 40px rgba(34,197,94,.15);
}
.blog-image { border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.blog-image img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-card h3 { font-size: 15px; margin: 10px 0 7px; color: var(--dark); line-height: 1.4; font-weight: 600; }
.blog-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card a {
  display: inline-block; font-size: 13px; color: var(--green);
  font-weight: 600; padding: 5px 14px;
  border: 1.5px solid var(--green); border-radius: 20px;
  transition: all .25s;
}
.blog-card a:hover { background: var(--green); color: #fff; }

@media (max-width: 1100px) { .blog-grid .container { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .blog-grid .container { grid-template-columns: 1fr; } }

/* Related Blogs */
.blog-related-section { padding: 10px 5%; background: #fff; }
.blog-related-container { max-width: 1300px; margin: auto; }
.blog-related-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 28px; gap: 16px;
}
.blog-related-title { font-size: clamp(22px,3vw,28px); font-weight: 600; color: var(--dark); margin: 0; }
.view-all-blogs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--blue); color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all var(--transition);
}
.view-all-blogs-btn:hover { background: #1251a3; transform: translateY(-2px); }
.blog-related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.blog-related-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.blog-related-card:hover {
  transform: translateY(-5px); border-color: var(--green);
  box-shadow: 0 12px 30px rgba(34,197,94,.15);
}
.blog-related-image img { width: 100%; height: 180px; object-fit: cover; }
.blog-related-content { padding: 18px; }
.blog-related-content h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-related-content p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-related-link {
  display: inline-block; padding: 5px 12px; font-size: 13px;
  color: var(--green); font-weight: 600;
  border: 1.5px solid var(--green); border-radius: 6px; transition: all .22s;
}
.blog-related-link:hover { background: var(--green); color: #fff; }
.blog-title-link { color: var(--dark); transition: color .25s; }
.blog-title-link:hover { color: var(--green); }

@media (max-width: 1100px) { .blog-related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px)  {
  .blog-related-header { flex-direction: column; align-items: flex-start; }
  .view-all-blogs-btn { width: 100%; justify-content: center; }
  .blog-related-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section {
  max-width: 1300px; margin: 10px auto; padding: 0 24px;
}
.faq-hero {
  text-align: center; border-radius: 10px; overflow: hidden;
  margin-bottom: 48px;
  background: linear-gradient(135deg,rgba(10,37,99,.88),rgba(6,82,221,.82),rgba(0,153,255,.78)),
              url("images/35.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  transition: transform .4s, box-shadow .4s;
}
.faq-hero:hover { transform: scale(1.01); box-shadow: 0 28px 72px rgba(10,37,99,.32); }
.faq-hero h2 {
  position: relative; z-index: 2; color: #fff;
  font-size: clamp(26px,4vw,42px); font-weight: 700;
  text-shadow: 0 4px 20px rgba(0,0,0,.18); margin: 0; line-height: 1.3;
}
.faq-hero h2::after {
  content: ''; display: block; width: 72px; height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg,#60baff,#fff);
  border-radius: 3px; opacity: .7;
}
.faq-section h3 {
  text-align: center; font-size: clamp(20px,3vw,30px);
  font-weight: 700; color: #0b2b4f; margin-bottom: 36px;
  position: relative; display: inline-block;
  left: 50%; transform: translateX(-50%);
}
.faq-section h3::after {
  content: ''; position: absolute; left: 50%; bottom: -10px;
  transform: translateX(-50%); width: 52px; height: 3px;
  background: linear-gradient(90deg,var(--blue),#64b5f6); border-radius: 3px;
}
.faq-list {
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0,40,80,.08);
  overflow: hidden; border: 1px solid rgba(21,101,192,.08);
}
.faq-item { border-bottom: 1px solid #eef4fa; transition: background .2s; }
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: #f8fcff; }
.faq-question {
  display: flex; justify-content: space-between;
  align-items: center; padding: 20px 24px;
  cursor: pointer; font-size: clamp(15px,1.4vw,20px);
  font-weight: 600; color: #1a2e44;
  transition: color .2s; gap: 14px; user-select: none;
}
.faq-question:hover { color: var(--blue); }
.faq-question span {
  width: 34px; height: 34px; min-width: 34px;
  border: 2px solid var(--blue); border-radius: 50%;
  color: var(--blue); display: flex; align-items: center;
  justify-content: center; font-size: 20px; font-weight: 300;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.faq-question span::before { content: '+'; }
.faq-item.active .faq-question span::before { content: '−'; }
.faq-item.active .faq-question span {
  background: linear-gradient(135deg,var(--blue),#1976d2);
  color: #fff; border-color: var(--blue); rotate: 0deg;
  box-shadow: 0 4px 14px rgba(21,101,192,.3);
}
.faq-answer {
  display: none; padding: 6px 24px 22px;
  background: linear-gradient(135deg,#f0f8ff,#e6f2fe);
  font-size: clamp(14px,1.2vw,17px); color: #2c3e50; line-height: 1.75;
  border-top: 1px solid rgba(21,101,192,.1);
  position: relative;
}
.faq-answer::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg,var(--blue),#64b5f6); opacity: .4;
}
.faq-item.active .faq-answer {
  display: block; animation: fadeDrop .4s cubic-bezier(.22,1,.36,1);
}
@keyframes fadeDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .faq-section { padding: 0 16px; }
  .faq-hero { border-radius: 14px; margin-bottom: 32px; }
  .faq-question { padding: 16px 18px; font-size: 15px; }
  .faq-answer { padding: 4px 18px 18px; font-size: 14px; }
}

/* ══════════════════════════════════════════════
   CONTACT BANNER
══════════════════════════════════════════════ */
.contact-banner {
  padding: 10px 20px; text-align: center; color: #fff;
  background: linear-gradient(135deg,rgba(13,110,253,.75),rgba(107,134,255,.75)),
              url('images/20.jpg') center/cover no-repeat;
}
.contact-banner h1 { font-size: clamp(26px,4vw,40px); margin-bottom: 8px; }
.contact-banner p  { opacity: .9; }

/* ══════════════════════════════════════════════
   DEAL SECTION
══════════════════════════════════════════════ */
.deal-section { padding: 36px 5%; }
.deal-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; max-width: 1300px; margin: 0 auto; }
.deal-card {
  position: relative; border-radius: 14px;
  padding: 24px; display: flex;
  justify-content: space-between; align-items: center;
  box-shadow: var(--shadow-sm);
}
.deal-card .badge {
  background: var(--blue); color: #fff;
  font-size: 12px; padding: 4px 10px; border-radius: 6px;
  position: static; margin-bottom: 10px; display: inline-block;
}
.price del { color: #999; font-size: 14px; }
.price strong { display: block; font-size: 22px; margin: 4px 0; }
.price small  { font-size: 12px; color: var(--muted); }
.big   { background: #eef8fb; }
.big img { max-width: 500px; }
.right-deals { display: flex; flex-direction: column; gap: 18px; }
.small { min-height: 160px; }
.small img { max-width: 210px; }
.cream { background: #fff5e6; }
.green { background: #ecfaec; }

@media (max-width: 900px) {
  .deal-grid { grid-template-columns: 1fr; }
  .deal-card { flex-direction: column; text-align: center; gap: 16px; }
}

/* ══════════════════════════════════════════════
   CATEGORY INFO
══════════════════════════════════════════════ */
.category-info { padding: 40px 5%; }
.category-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 28px; max-width: 1300px; margin: 0 auto; }
.category-box { padding: 24px; border-radius: 12px; border: 1px solid var(--border); }
.category-box h3 { margin-bottom: 18px; color: var(--dark); font-size: 18px; }
.category-box ul { list-style: none; }
.category-box li {
  padding: 11px 14px; border-radius: 8px;
  margin-bottom: 8px; cursor: pointer; transition: all .2s;
  border: 1px solid transparent;
}
.category-box li:hover { background: var(--blue-pale); border-color: #c4d8f8; }
.category-box li.active { background: var(--blue); color: #fff; }
.category-box li.active a { color: #fff; }
.category-box li a { display: block; color: inherit; font-size: 14px; font-weight: 500; }
.info-box1 {
  background: linear-gradient(135deg,#e8f4ff,#d0e8ff);
  border-radius: 14px; padding: 28px;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid #b8d8f8;
}
.info-text ul { padding-left: 18px; }
.info-text li { margin-bottom: 10px; font-size: 15px; }
.info-img img { max-width: 260px; }
.read-more-btn {
  margin: 36px auto; display: block;
  padding: 12px 30px; background: var(--blue); color: #fff;
  border: none; border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: 600;
}
.read-more-btn:hover { background: #1251a3; }

@media (max-width: 900px) {
  .category-wrap { grid-template-columns: 1fr; }
  .info-box1 { flex-direction: column; text-align: center; gap: 20px; }
}

/* ══════════════════════════════════════════════
   SAFETY / CATEGORY CONTENT PAGES
══════════════════════════════════════════════ */
.safety-info, .cialis-info, .levitra-info {
  max-width: 1150px; margin: 15px auto 60px;
  padding: 0 24px; color: #1f3a5f;
  line-height: 1.8;
}
.safety-info h2, .cialis-info h2, .levitra-info h2 { font-size: clamp(22px,2.5vw,28px); margin-bottom: 14px; }
.safety-info h3, .levitra-info h3 { font-size: clamp(18px,2vw,22px); margin: 32px 0 13px; }
.safety-info p, .cialis-info p, .levitra-info p { margin-bottom: 12px; font-size: 15px; }
.safety-info ul, .cialis-info ul, .levitra-info ul { padding-left: 22px; margin-bottom: 22px; }
.safety-info li, .cialis-info li, .levitra-info li { margin-bottom: 10px; font-size: 15px; }
.safety-info strong, .cialis-info strong, .levitra-info strong { color: #0b2c55; }

@media (max-width: 768px) {
  .safety-info, .cialis-info, .levitra-info { padding: 0 16px; }
}

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════ */
.product-detail { margin: 10px auto 50px; max-width: 1300px; padding: 0 20px; }
.product-wrap { display: flex; gap: 40px; margin-bottom: 40px; }
.pd-left  { width: 45%; flex-shrink: 0; }
.pd-right { width: 55%; }

.pd-main-img {
  background: #f9f9f9; border-radius: 10px;
  padding: 20px; border: 1px solid #eaeaea; margin-bottom: 18px; text-align: center;
}
.pd-main-img img { max-width: 100%; max-height: 400px; object-fit: contain; }
.pd-thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 8px 0; }
.pd-thumbs img {
  width: 68px; height: 68px; object-fit: cover;
  border: 1.5px solid var(--border); border-radius: 6px;
  cursor: pointer; transition: border-color .2s;
}
.pd-thumbs img:hover, .pd-thumbs img.active { border-color: var(--blue); }

.pd-price { font-size: 30px; color: var(--blue); font-weight: 700; margin: 18px 0; }
.molecule-name { font-size: 16px; font-weight: 600; color: lightseagreen; margin: 6px 0 10px; line-height: 1.5; }
.molecule-name strong { color: #0b4f79; }

.pd-row { display: flex; gap: 20px; align-items: center; margin: 28px 0; flex-wrap: wrap; }
.pd-qty {
  border: 1.5px solid var(--border); border-radius: 8px;
  display: flex; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm);
}
.pd-qty button {
  border: none; padding: 11px 16px; background: var(--bg);
  color: var(--dark); font-size: 18px; cursor: pointer;
  min-width: 44px; transition: background .2s;
}
.pd-qty button:hover { background: var(--blue); color: #fff; }
.pd-qty input { width: 50px; border: none; text-align: center; font-size: 15px; font-weight: 600; outline: none; }
.pd-cart {
  background: var(--blue); color: #fff;
  padding: 13px 36px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; transition: background .2s;
}
.pd-cart:hover { background: #1251a3; }
.pd-extra { color: var(--muted); font-size: 14px; display: flex; gap: 24px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }

/* Tabs */
.pd-tabs { margin-top: 44px; border-top: 1px solid #eee; padding-top: 28px; }
.tab-buttons { display: flex; gap: 8px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.pd-tabs button {
  padding: 11px 26px; border: 1px solid var(--border);
  background: #fff; color: var(--muted);
  border-radius: 6px 6px 0 0; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: all .2s; position: relative; bottom: -1px;
}
.pd-tabs button:hover { color: var(--blue); background: var(--bg); }
.pd-tabs button.active { background: #fff; color: var(--blue); border-bottom-color: #fff; font-weight: 700; }
.pd-content { display: none; padding: 24px; background: #fff; border: 1px solid var(--border); border-top: none; border-radius: 0 0 8px 8px; line-height: 1.75; color: var(--muted); }
.pd-content.active { display: block; animation: fadeDrop .3s ease; }

.product-specs { margin-top: 28px; padding: 18px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.product-specs h3 { margin-bottom: 14px; color: var(--dark); font-size: 17px; }
.specs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.spec-item { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.spec-label { color: var(--muted); font-weight: 500; }
.spec-value { color: var(--dark); font-weight: 600; }

.stock-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; background: #e8f5e9;
  border-radius: 6px; color: #2e7d32; font-size: 13px; margin: 8px 0;
}
.stock-status.out-of-stock { background: #ffebee; color: #c62828; }

.delivery-info { background: var(--bg); padding: 14px; border-radius: 8px; margin: 18px 0; font-size: 13.5px; }
.delivery-info h4 { margin-bottom: 10px; color: var(--dark); }
.delivery-info ul { list-style: none; padding: 0; }
.delivery-info li { padding: 5px 0; display: flex; align-items: center; gap: 10px; }

.pd-notice { background: #fff8e1; border-left: 4px solid #ffc107; padding: 14px; margin: 18px 0; border-radius: 6px; font-size: 14px; color: #5d4037; }
.pd-notice strong { display: block; margin-bottom: 5px; color: #e65100; }
.prescription-required { background: #e3f2fd; border: 1px solid #bbdefb; padding: 10px 14px; border-radius: 6px; margin: 14px 0; font-size: 13.5px; color: #1565c0; display: flex; align-items: center; gap: 10px; }

@media (max-width: 992px) {
  .product-wrap { flex-direction: column; gap: 28px; }
  .pd-left, .pd-right { width: 100%; }
  .pd-main-img { max-width: 480px; margin: 0 auto 18px; }
  .specs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pd-row { flex-direction: column; align-items: flex-start; }
  .pd-cart { width: 100%; text-align: center; }
  .tab-buttons { flex-direction: column; }
  .pd-tabs button { width: 100%; border-radius: 6px; margin-bottom: 4px; }
  .pd-extra { display: none; }
}

/* ══════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════ */
.cart-section {
  padding: 40px 4%;
  background: linear-gradient(135deg,var(--bg),#fff);
  min-height: 70vh;
}
.cart-container {
  max-width: 1300px; margin: auto;
  display: flex; gap: 36px; flex-wrap: wrap; align-items: flex-start;
}

/* Cart Left */
.cart-left {
  flex: 2.2; min-width: 300px; background: #fff;
  border-radius: 16px; padding: 28px;
  box-shadow: 0 6px 20px rgba(21,101,192,.08);
  border: 1px solid rgba(21,101,192,.1);
}
.cart-left h2 {
  font-size: 26px; color: #1d2d50; margin-bottom: 6px;
  font-weight: 700; position: relative; padding-bottom: 14px;
}
.cart-left h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 52px; height: 3px;
  background: linear-gradient(90deg,var(--blue),var(--green)); border-radius: 2px;
}
.cart-subtitle { color: var(--blue); font-weight: 600; margin-bottom: 24px; font-size: 13px; letter-spacing: .3px; }

.cart-item {
  display: flex; align-items: center; padding: 22px 0;
  border-bottom: 1.5px solid rgba(238,238,238,.8); gap: 22px; flex-wrap: wrap;
  transition: all .25s; position: relative;
}
.cart-item:hover { background: rgba(248,249,255,.5); border-radius: 10px; padding: 22px 14px; margin: 0 -14px; }
.cart-item:last-child { border-bottom: none; }

.cart-img img {
  width: 130px; height: 130px; object-fit: cover;
  border-radius: 10px; border: 2px solid #fff;
  box-shadow: var(--shadow-sm); transition: transform .25s;
}
.cart-img img:hover { transform: scale(1.03); }
.cart-details { flex: 1; min-width: 200px; }
.cart-details h4 { font-size: 16px; margin-bottom: 8px; color: #2a3f5f; line-height: 1.45; font-weight: 600; }
.cart-details span { font-size: 13px; color: var(--muted); display: block; margin-bottom: 12px; }

.qty-box {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--blue); border-radius: 8px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
}
.qty-minus, .qty-plus {
  width: 34px; height: 34px; background: var(--blue-pale);
  border: none; cursor: pointer; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; color: var(--blue); font-weight: 700;
}
.qty-minus:hover, .qty-plus:hover { background: var(--blue); color: #fff; }
.qty-input {
  width: 46px; height: 34px; border: none;
  text-align: center; font-size: 14px; font-weight: 700; color: #1d2d50;
  border-left: 1px solid #d0dff8; border-right: 1px solid #d0dff8; outline: none;
}

.remove-link {
  padding: 7px 14px; color: #d9534f; font-size: 12px;
  font-weight: 600; margin-top: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid #ffebee; border-radius: 7px;
  background: #fff5f5; transition: all .25s; cursor: pointer;
}
.remove-link:hover { color: #fff; background: #d9534f; border-color: #d9534f; transform: translateY(-1px); }

.cart-price {
  font-size: 19px; font-weight: 700; color: #1d2d50;
  min-width: 100px; text-align: right;
  padding: 10px 14px; background: var(--bg);
  border-radius: 8px; border: 1.5px solid rgba(21,101,192,.1);
}
.update-btn {
  padding: 11px 26px; background: linear-gradient(135deg,#4caf50,#45a049);
  color: #fff; border: none; border-radius: 8px; cursor: pointer;
  font-size: 14px; font-weight: 700; transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(76,175,80,.2);
}
.update-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(76,175,80,.3); }

/* Cart Summary */
.cart-right { flex: 1; min-width: 290px; }
.cart-summary {
  background: linear-gradient(135deg,#fff,var(--bg));
  padding: 28px; border-radius: 14px;
  border: 1.5px solid rgba(21,101,192,.12);
  position: sticky; top: 28px;
  box-shadow: 0 8px 24px rgba(21,101,192,.1);
}
.cart-summary h3 {
  font-size: 22px; color: #1d2d50; margin-bottom: 22px;
  padding-bottom: 14px; border-bottom: 2px solid var(--blue); font-weight: 700;
}
.summary-row {
  display: flex; justify-content: space-between;
  margin-bottom: 14px; font-size: 15px;
  padding-bottom: 8px; border-bottom: 1px dashed rgba(221,221,221,.6);
}
.summary-row span    { color: var(--muted); font-weight: 500; }
.summary-row strong  { color: #1d2d50; font-weight: 700; }
.cart-summary input[type="text"] {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e8eaf6;
  border-radius: 8px; margin: 16px 0; font-size: 14px;
  background: #fff; transition: all .25s;
}
.cart-summary input[type="text"]:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,.1); }
.checkout-btn {
  display: block; width: 100%; padding: 15px;
  background: linear-gradient(135deg,var(--blue),var(--blue-light));
  color: #fff; text-align: center; border-radius: 10px;
  font-weight: 700; font-size: 16px;
  transition: all var(--transition); border: none; cursor: pointer;
  box-shadow: 0 5px 18px rgba(21,101,192,.28);
}
.checkout-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(21,101,192,.36); }

/* Cart Responsive */
@media (max-width: 992px) { .cart-left, .cart-right { flex: 100%; } .cart-summary { position: static; } }
@media (max-width: 768px) {
  .cart-section { padding: 28px 3%; }
  .cart-item { flex-direction: column; align-items: center; text-align: center; }
  .cart-item:hover { padding: 22px 12px; margin: 0 -8px; }
  .cart-img img { width: 150px; height: 150px; }
  .cart-price { text-align: center; width: 100%; }
  .qty-box { margin: 14px auto; }
  .remove-link { margin: 12px auto 0; }
}

/* ══════════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════════ */
.checkout-section { padding: 5px 5%; background: #fff; }
.checkout-container { max-width: 1200px; margin: auto; display: flex; gap: 36px; }
.checkout-left { flex: 2; }
.back-link {
  display: inline-block; padding: 8px 16px; font-size: 13.5px;
  color: var(--dark); background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; transition: all .22s;
}
.back-link:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.checkout-left h2 { margin: 12px 0 22px; color: #1d2d50; font-size: 22px; }
.checkout-box { border: 1px solid var(--border); border-radius: 8px; padding: 18px; margin-bottom: 18px; }
.checkout-box h4 { font-size: 13.5px; color: var(--dark); margin-bottom: 14px; font-weight: 700; }
.checkout-box input, .checkout-box select {
  width: 100%; padding: 10px 12px; margin-bottom: 12px;
  border: 1px solid #ccc; border-radius: 6px; font-size: 14px;
  transition: border-color .2s; outline: none;
}
.checkout-box input:focus, .checkout-box select:focus { border-color: var(--blue); }
.form-row { display: flex; gap: 14px; }
.payment-option {
  display: block; border: 1px solid var(--border);
  padding: 10px; border-radius: 6px; margin-bottom: 10px; font-size: 14px;
  cursor: pointer; transition: border-color .2s;
}
.payment-option.active { border-color: var(--blue); }
.place-order-btn {
  width: 100%; background: #1d2d50; color: #fff;
  border: none; padding: 14px; border-radius: 8px;
  font-weight: 700; cursor: pointer; font-size: 15px;
  transition: background .2s;
}
.place-order-btn:hover { background: var(--blue); }

/* Checkout right */
.checkout-right {
  flex: 1; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
  box-shadow: 0 8px 26px rgba(21,101,192,.08);
}
.checkout-right h4 {
  font-size: 15px; font-weight: 700; color: #1d2d50;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #e6ecff;
}
.summary-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.summary-item img { width: 130px; border-radius: 7px; border: 1px solid var(--border); }
.summary-item p  { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--dark); }
.summary-item span { font-size: 12px; color: var(--muted); }
.coupon { display: flex; gap: 10px; margin: 16px 0; }
.coupon input { flex: 1; padding: 8px 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 13px; }
.coupon button {
  background: var(--dark); color: #fff; border: none;
  padding: 8px 16px; border-radius: 6px; font-size: 13px; cursor: pointer;
  transition: background .2s;
}
.coupon button:hover { background: var(--blue); }
.price-row { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 10px; color: var(--dark); }
.price-row.total { font-weight: 700; font-size: 22px; border-top: 1px solid #e6ecff; padding-top: 12px; margin-top: 10px; }
.discount { color: #17a24a; font-weight: 600; }

@media (max-width: 768px) {
  .checkout-container { flex-direction: column; }
  .form-row { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   HERO / EXP SECTION
══════════════════════════════════════════════ */
.health-hero {
  width: 94%; max-width: 1440px; height: 370px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  background: #f8fbfd;
}
.tagline { font-size: 13px; color: var(--muted); margin-bottom: 10px; display: inline-block; }
.hero-content h1 { font-size: clamp(28px,3.5vw,42px); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 18px; }
.hero-content p  { font-size: 15px; color: #475569; line-height: 1.65; margin-bottom: 26px; }
.cta-btn {
  background: var(--blue); color: #fff; border: none;
  padding: 13px 26px; font-size: 15px; border-radius: 8px;
  cursor: pointer; transition: background .2s; font-weight: 600;
}
.cta-btn:hover { background: #1251a3; }
.hero-visual img { width: 420px; max-width: 100%; }
.subtitle { max-width: 600px; margin: 10px auto 36px; color: #64748b; font-size: 15px; }

.exp-hero { background: #f6fbff; padding: 26px 6%; }
.exp-wrap { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.exp-left { width: 50%; }
.exp-left h1 { font-size: clamp(24px,3vw,34px); line-height: 1.3; color: #163b63; margin-bottom: 14px; }
.exp-left p  { font-size: 14px; color: #5b6c7a; line-height: 1.8; max-width: 480px; margin-bottom: 22px; }
.exp-btn {
  background: var(--blue); color: #fff; padding: 10px 22px;
  border-radius: 7px; text-decoration: none; font-size: 14px; font-weight: 600;
  display: inline-block; transition: background .2s;
}
.exp-btn:hover { background: #1251a3; }
.exp-right { width: 45%; text-align: right; }
.exp-right img { max-width: 100%; }

@media (max-width: 768px) {
  .health-hero { height: auto; flex-direction: column; padding: 40px 5%; width: 100%; text-align: center; }
  .hero-visual img { width: 100%; max-width: 300px; margin-top: 24px; }
  .exp-wrap { flex-direction: column; }
  .exp-left, .exp-right { width: 100%; }
  .exp-right { text-align: center; }
}

/* ══════════════════════════════════════════════
   DOCTOR CONSULTATION
══════════════════════════════════════════════ */
.doctor-consultation-content-area { max-width: 1300px; margin: auto; padding: 20px; }
.doctor-consultation-content-area h2 { font-size: clamp(22px,3vw,30px); margin: 32px 0 14px; color: var(--blue); }
.doctor-consultation-content-area p  { font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }

/* ══════════════════════════════════════════════
   WHATSAPP ORDER BANNER
══════════════════════════════════════════════ */
.whatsapp-order-section { max-width: 1300px; margin: 28px auto; padding: 0 16px; }
.whatsapp-order-banner { width: 100%; height: 190px; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-md); }
.whatsapp-order-banner a { display: block; width: 100%; height: 100%; }
.whatsapp-order-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.whatsapp-order-banner:hover img { transform: scale(1.03); }

@media (max-width: 992px) { .whatsapp-order-banner { height: 160px; } }
@media (max-width: 768px) { .whatsapp-order-banner { height: 110px; border-radius: 8px; } }
@media (max-width: 480px) { .whatsapp-order-banner { height: 80px; } }

/* ══════════════════════════════════════════════
   MISC SHARED
══════════════════════════════════════════════ */
.category-badge {
  background: #4caf50; color: #fff;
  padding: 3px 10px; border-radius: 12px;
  font-size: 12px; display: inline-block; margin: 5px 0;
}
.product-filter { margin-top: 10px; }
.product-filter select { padding: 8px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; }
.no-products { grid-column: 1/-1; text-align: center; padding: 40px; font-size: 17px; color: var(--muted); }

/* ── GLOBAL MOBILE FIX ── */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  * { max-width: 100%; }
}