/* ===================================================
   MEDIGO — PHARMACY HOMEPAGE STYLESHEET
   =================================================== */

/* CSS VARIABLES */
:root {
  --green: #1bb96b;
  --green-dark: #15a05b;
  --green-light: #e8f9f0;
  --green-glow: rgba(27,185,107,0.18);
  --blue-bg: #f0f7ff;
  --light-blue: #eaf3fb;
  --text-dark: #0d1f2d;
  --text-mid: #3d5a6e;
  --text-light: #7a95a8;
  --white: #ffffff;
  --border: #e4ecf2;
  --shadow-sm: 0 2px 12px rgba(27,100,150,0.07);
  --shadow-md: 0 6px 30px rgba(27,100,150,0.12);
  --shadow-lg: 0 16px 60px rgba(27,100,150,0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

.container { max-width: 1380px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light-blue { background: var(--light-blue); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,185,107,0.3);
}

.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-green-sm {
  background: var(--green);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.btn-green-sm:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-wa {
  background: #25d366;
  color: var(--white);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.btn-wa:hover { background: #20bc5a; transform: translateY(-1px); }

/* ===== SECTION LABELS / HEADINGS ===== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label.green { color: var(--green); }
.section-label.white { color: rgba(255,255,255,0.8); }

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 44px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.logo-text { font-size: 20px; font-weight: 800; color: var(--text-dark); }
.logo-accent { color: var(--green); }
.logo-white .logo-text { color: var(--white); }
.logo-white .logo-icon { background: rgba(255,255,255,0.2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-phone {
  font-size: 13px; font-weight: 600;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
}
.nav-phone:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu .btn-green { justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #edf9f1 0%, #d4f0e4 40%, #e8f4ff 100%);
  padding: 100px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,185,107,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
}

.hero-breadcrumb {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-highlight {
  color: var(--green);
  position: relative;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.8);
  width: fit-content;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 16px; font-weight: 800; color: var(--text-dark); }
.stat-label { font-size: 11px; color: var(--text-light); }
.stat-divider { width: 1px; height: 30px; background: var(--border); }

/* Hero illustration */
.hero-image { position: relative; display: flex; justify-content: center; align-items: flex-end; padding-bottom: 0; }

.hero-delivery-card {
  position: absolute;
  top: -10px; left: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}
.delivery-card-inner { display: flex; align-items: center; gap: 12px; }
.delivery-icon {
  width: 38px; height: 38px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 18px;
}
.delivery-text { display: flex; flex-direction: column; }
.delivery-text strong { font-size: 18px; font-weight: 800; color: var(--text-dark); }
.delivery-text span { font-size: 11px; color: var(--text-light); }

.hero-illustration {
  width: 100%;
   max-width: 550px;
  height: 440px;
  background: linear-gradient(135deg, #c8f0dc 0%, #b8e0f5 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scooter visual */
.delivery-scooter { position: relative; z-index: 5; }
.scooter-visual { display: flex; flex-direction: column; align-items: center; animation: scooterBounce 2s ease-in-out infinite; }

.rider-body { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 0; }

.rider-head {
  width: 32px; height: 32px;
  background: #f5c0a0;
  border-radius: 50%;
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
}
.rider-head::before {
  content: '';
  position: absolute;
  top: -8px; left: -4px; right: -4px;
  height: 20px;
  background: #1bb96b;
  border-radius: 50% 50% 0 0;
}

.rider-torso {
  width: 36px; height: 40px;
  background: #1bb96b;
  border-radius: 8px 8px 4px 4px;
}

.package-box {
  position: absolute;
  top: -10px; right: -38px;
  width: 36px; height: 36px;
  background: #ff9a3c;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.scooter-body {
  width: 130px; height: 60px;
  background: var(--white);
  border-radius: 12px 30px 4px 4px;
  position: relative;
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.scooter-body::before {
  content: '';
  position: absolute;
  top: 10px; left: 20px; right: 20px;
  height: 16px;
  background: #e8f5fd;
  border-radius: 8px;
}
.scooter-front {
  position: absolute;
  right: -14px; top: 8px;
  width: 20px; height: 40px;
  background: #d0d8e0;
  border-radius: 4px 12px 4px 4px;
}

.wheel {
  position: absolute;
  width: 38px; height: 38px;
  background: var(--text-dark);
  border-radius: 50%;
  bottom: -20px;
  border: 4px solid #555;
}
.wheel::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: #888;
  border-radius: 50%;
}
.wheel-back { left: 12px; }
.wheel-front { right: 10px; }

.motion-lines {
  position: absolute;
  left: -60px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 6px;
}
.motion-lines span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: motionLine 1s linear infinite;
}
.motion-lines span:nth-child(1) { width: 40px; animation-delay: 0s; }
.motion-lines span:nth-child(2) { width: 28px; animation-delay: 0.2s; }
.motion-lines span:nth-child(3) { width: 20px; animation-delay: 0.4s; }

.verified-badge {
  position: absolute;
  bottom: 120px;
  right: 215px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  animation: float 3.5s ease-in-out infinite 0.5s;
}
.verified-badge i { color: var(--green); font-size: 20px; }
.verified-badge strong { display: block; font-size: 13px; }
.verified-badge span { color: var(--text-light); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  flex: 1;
  min-width: 200px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 42px; height: 42px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}
.trust-item div strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item div span { font-size: 12px; color: var(--text-light); }

/* ===== CATEGORIES ===== */
.categories { text-align: center; }
.categories .section-subtitle { margin: 0 auto 44px; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.cat-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); }

.cat-pink    { background: #fde8ea; }
.cat-blue    { background: #e0eeff; }
.cat-peach   { background: #fde8d4; }
.cat-yellow  { background: #fff3d0; }
.cat-lavender{ background: #ece8ff; }
.cat-green-light { background: #d4f0de; }
.cat-orange-light { background: #ffe8cc; }
.cat-sky     { background: #daf0ff; }

.cat-img {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  position: relative;
}

/* Category visuals */
.cat-pills-visual { position: relative; width: 80px; height: 60px; }
.pill {
  position: absolute;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9aaf, #ff6b8a);
}
.p1 { width: 36px; height: 14px; top: 8px; left: 10px; transform: rotate(-20deg); }
.p2 { width: 28px; height: 12px; top: 30px; left: 32px; transform: rotate(15deg); background: linear-gradient(135deg, #ff6b8a, #c0392b); }
.p3 { width: 20px; height: 10px; top: 18px; left: 42px; transform: rotate(-5deg); background: linear-gradient(135deg, #ffb3c1, #ff9aaf); }
.pill-strip {
  position: absolute;
  bottom: 0; left: 8px; right: 8px;
  height: 18px;
  background: rgba(255,150,170,0.4);
  border-radius: 6px;
}

.glucometer {
  width: 50px; height: 35px;
  background: linear-gradient(135deg, #4a90d9, #2c5f8a);
  border-radius: 10px;
}
.strip { width: 20px; height: 8px; background: #f5c518; border-radius: 2px; margin-top: 8px; margin-left: 15px; }

.bottle {
  width: 20px; height: 40px;
  background: linear-gradient(135deg, #ff9a8b, #ff6b8a);
  border-radius: 4px 4px 6px 6px;
  margin-right: 12px;
}
.lotion {
  width: 24px; height: 36px;
  background: linear-gradient(135deg, #ffd8e4, #ffb3c6);
  border-radius: 4px 4px 8px 8px;
}
.cat-baby-visual { display: flex; align-items: flex-end; }

.vitamin-bottle {
  width: 28px; height: 44px;
  background: linear-gradient(135deg, #f5c518, #e0a800);
  border-radius: 6px 6px 8px 8px;
}
.capsule {
  width: 14px; height: 28px;
  background: linear-gradient(135deg, #ff9a3c, #e07a1a);
  border-radius: 50px;
  margin-left: 14px;
}
.cat-vitamins-visual { display: flex; align-items: flex-end; }

.soap-bar {
  width: 60px; height: 30px;
  background: linear-gradient(135deg, #c8a5ff, #9b6de0);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(155,109,224,0.3);
}

.herb-bowl {
  width: 55px; height: 40px;
  background: linear-gradient(135deg, #6bcf7f, #2d9c45);
  border-radius: 50%;
  position: relative;
}
.herb-bowl::before {
  content: '🌿';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
}

.bandage {
  width: 50px; height: 20px;
  background: linear-gradient(135deg, #ffcba4, #e8a070);
  border-radius: 50px;
  position: relative;
}
.bandage::before, .bandage::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.6);
}
.bandage::before { width: 16px; height: 8px; }
.bandage::after { width: 4px; height: 20px; }

.rx-doc {
  width: 44px; height: 54px;
  background: var(--white);
  border-radius: 6px;
  border: 2px solid #4a90d9;
  position: relative;
}
.rx-doc::before {
  content: 'Rx';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 900;
  color: #4a90d9;
}

.cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.cat-card span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== ORDER TRACKING ===== */
.tracking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tracking-steps { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 24px 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px;
  width: 2px; bottom: 0;
  background: var(--border);
}
.step-done::after { background: var(--green) !important; }
.step-active::after { background: linear-gradient(to bottom, var(--green), var(--border)) !important; }

.step-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: var(--border);
  color: var(--text-light);
  position: relative;
  z-index: 1;
}
.step-done .step-icon { background: var(--green); color: var(--white); }
.step-active .step-icon { background: var(--green); color: var(--white); }

.step-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.step-info strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.step-info span { font-size: 12px; color: var(--text-light); }

/* Map */
.tracking-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
}
.map-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.map-status {
  margin-left: auto;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.map-visual {
  position: relative;
  height: 200px;
  background: #f4f8fc;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#e4ecf2 1px, transparent 1px),
                    linear-gradient(90deg, #e4ecf2 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-roads {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--green);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: float 3s ease-in-out infinite;
}
.pin-sm { font-size: 8px; color: #4a90d9; }
.map-rider {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #ff6b35;
  animation: riderMove 4s ease-in-out infinite;
}

.map-footer {
  display: flex;
  justify-content: space-around;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}
.map-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
}
.map-stat i { color: var(--green); font-size: 14px; margin-bottom: 2px; }
.map-stat strong { font-size: 16px; font-weight: 800; }
.map-stat span { color: var(--text-light); font-size: 11px; }

/* ===== WHOLESALE ===== */
.wholesale {
  background: linear-gradient(135deg, #0d3d2b 0%, #1a5c40 50%, #0d4a60 100%);
  border-radius: 0;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.wholesale::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(27,185,107,0.1);
  pointer-events: none;
}

.wholesale-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.wholesale-left { display: flex; gap: 28px; align-items: flex-start; }

.wholesale-img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1e6b48, #14503b);
  display: flex; align-items: center; justify-content: center;
}

/* Shelf visual */
.shelf-visual {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.shelf {
  width: 130px; height: 16px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  position: relative;
}
.shelf::before {
  content: '';
  position: absolute;
  top: -22px; left: 5px;
  display: flex;
  gap: 6px;
}
.s1::after { content: '💊💊💊'; font-size: 12px; position: absolute; top: -20px; left: 0; }
.s2::after { content: '🧴💉🧪'; font-size: 12px; position: absolute; top: -20px; left: 0; }
.s3::after { content: '📦📦📦'; font-size: 12px; position: absolute; top: -20px; left: 0; }

.wholesale-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.wholesale-text p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.wholesale-features { display: flex; flex-direction: column; gap: 10px; }
.wholesale-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.wholesale-features li i { color: var(--green); font-size: 14px; }

/* Wholesale form */
.wholesale-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.wholesale-form h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.wholesale-form > p { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }

.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bcc8d4; }

/* ===== PRODUCTS ===== */
.products-slider-wrapper { position: relative; overflow: hidden; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,185,107,0.3);
}
.product-card.featured {
  border-color: var(--green);
  box-shadow: 0 4px 24px var(--green-glow);
}

.prod-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}
.badge-rx { background: #fff0f3; color: #e0374f; }
.badge-otc { background: #e8f9f0; color: var(--green); }

.prod-rating {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 11px;
  color: #f5a623;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.prod-rating span { color: var(--text-light); }

.prod-img {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  margin: 24px 0 12px;
}

/* Product pill visuals */
.prod-pill-visual {
  width: 70px; height: 70px;
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.prod-pill-visual.pink { background: radial-gradient(circle at 35% 35%, #ffb3c1, #e05070); }
.prod-pill-visual.yellow { background: radial-gradient(circle at 35% 35%, #ffe08a, #f5c518); }
.prod-pill-visual.blue { background: radial-gradient(circle at 35% 35%, #a0c8ff, #4a90d9); }
.prod-pill-visual.gray { background: radial-gradient(circle at 35% 35%, #e0e8f0, #9ab0c0); }
.prod-pill-visual.orange { background: radial-gradient(circle at 35% 35%, #ffcc80, #ff9a3c); }

.prod-pill-visual::after {
  content: '';
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  position: absolute;
  top: 14px; left: 16px;
}

.prod-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.prod-pack { font-size: 11px; color: var(--text-light); margin-bottom: 10px; }

.prod-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }

.price-mrp { font-size: 12px; color: var(--text-light); text-decoration: line-through; }

.prod-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ===== WHY US ===== */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  margin-top: 16px;
}

.why-img-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a3a2a, #0d2d3d);
  display: flex; align-items: flex-end;
}
.rider-cover-visual {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #f5e6c8, #d4b896);
}
.road-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, #666, #888);
}
.rider-silhouette { position: relative; z-index: 2; }

.why-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-item:hover {
  border-color: rgba(27,185,107,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}

.why-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testi-card.featured-testi {
  border-color: var(--green);
  box-shadow: 0 6px 30px var(--green-glow);
  position: relative;
}
.testi-card.featured-testi::before {
  content: '⭐ Featured';
  position: absolute;
  top: -12px; left: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.testi-stars { color: #f5c518; font-size: 16px; margin-bottom: 12px; }

.testi-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #ff9a8b, #e05070); }
.av2 { background: linear-gradient(135deg, #4a90d9, #2c5f8a); }
.av3 { background: linear-gradient(135deg, #1bb96b, #0d8048); }

.testi-author strong { display: block; font-size: 13px; font-weight: 700; }
.testi-author span { font-size: 11px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { max-width: 720px; margin: 0 auto; }
.faq .container { max-width: 720px; }
.faq .section-title { text-align: center; }
.faq .section-label { display: block; text-align: center; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q i { font-size: 12px; color: var(--text-light); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open { color: var(--green); }
.faq-q.open i { transform: rotate(180deg); color: var(--green); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 18px; }
.faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0073e6 0%, #0054b0 50%, #003d80 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #0d1f2d;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-col ul li a i { font-size: 12px; }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,185,107,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(27,185,107,0); }
}

@keyframes scooterBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes motionLine {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-20px); }
}

@keyframes riderMove {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  50% { transform: translate(-50%, -50%) translateX(12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* AOS-like animation classes */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Laptop / Medium Desktop */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero-container { 
    grid-template-columns: 1fr; 
    gap: 30px;
  }
  .hero-image { order: -1; min-height: 220px; justify-content: center; }
  .hero-illustration { max-width: 100%; height: 220px; }
  .hero-title { font-size: 32px; }

  .trust-container { gap: 0; }
  .trust-item { min-width: 48%; border-right: none; padding: 12px 16px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }

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

  .tracking-container { grid-template-columns: 1fr; gap: 40px; }

  .wholesale-container { grid-template-columns: 1fr; gap: 32px; }
  .wholesale-left { flex-direction: column; }
  .wholesale-img { width: 100%; height: 180px; }

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

  .why-container { grid-template-columns: 1fr; }
  .why-img-card { aspect-ratio: 16/7; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }


}

/* Mobile */
@media (max-width: 600px) {

  .section { padding: 56px 0; }

  .hero { padding: 48px 0 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { 
    flex-direction: row; 
    gap: 12px; 
    align-items: flex-start;
    margin-bottom: 10px;
   }
   .stat-num {
    font-size: 12px;
    text-align: center;
}

.stat-label {
    font-size: 9px;
    text-align: center;
}
  .stat-divider { width: 0; height: 1px; }
  .hero-delivery-card { left: 50%; transform: translateX(-50%); }

  .trust-item { min-width: 100%; border-right: none !important; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { min-height: 130px; }

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

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

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

  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }

  .map-footer { gap: 10px; }

  .wholesale-form { padding: 24px; }
    .verified-badge {
        bottom: 64%;
        right: auto;
        left: 15px;
        padding: 10px 14px;
        border-radius: 16px;
        font-size: 11px;
        gap: 8px;
        max-width: 140px;
        z-index: 5;
    }

    .verified-badge img,
    .verified-badge svg,
    .verified-badge i{

        width:18px;
        height:18px;

    }
    
    .hero-container{
        padding-top: 50px;

    }
}


/* Small mobile */
@media (max-width: 400px) {
  .hero-title { font-size: 26px; }
  .container { padding: 0 16px; }
	
	.hero-image {
        padding-top: 60px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--green); color: var(--white); }

/* woocommerce style */

/* =========================
   PRODUCTS GRID
========================= */

.products-grid,
.woocommerce ul.products{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;

}

/* =========================
   PRODUCT CARD
========================= */

.product-card{

    background:#fff;
    border-radius:24px;
    padding:14px;
    position:relative;
    overflow:hidden;
    border:1px solid #dff5ea;
    transition:.3s ease;
    height:100%;

}

.product-card:hover{

    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

/* =========================
   BADGE
========================= */

.prod-badge{

    position:absolute;
    top:12px;
    left:12px;
    z-index:2;
    font-size:11px;
    font-weight:600;
    padding:4px 10px;
    border-radius:30px;

}

.badge-rx{

    background:#ffe8ee;
    color:#ff4d73;

}

.badge-otc{

    background:#e4fff1;
    color:#16a34a;

}

/* =========================
   RATING
========================= */

.prod-rating{

    position:absolute;
    right:12px;
    top:12px;
    font-size:13px;
    font-weight:600;
    color:#f59e0b;
    z-index:2;

}

.prod-rating span{

    color:#94a3b8;
    font-size:12px;

}

/* =========================
   IMAGE
========================= */

.prod-img{

    width:100%;
    height:170px;
    background:#f8fafc;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    position:relative;
    margin-bottom:16px;

}

.prod-img img{

    width:100%;
    height:100%;
    object-fit:contain;
    position:relative;
    z-index:2;

}

/* =========================
   PRODUCT INFO
========================= */

.prod-info h4{

    font-size:18px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:6px;

}

.prod-info h4 a{

    text-decoration:none;
    color:#0f172a;

}

.prod-pack{

    font-size:14px;
    color:#64748b;
    margin-bottom:12px;
    line-height:1.5;

}

/* =========================
   PRICE
========================= */

.prod-price{

    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    flex-wrap:wrap;

}

.price-current{

    font-size:20px;
    font-weight:800;
    color:#0f172a;

}

.price-mrp{

    font-size:16px;
    color:#94a3b8;
    text-decoration:line-through;

}

/* =========================
   BUTTONS
========================= */

.prod-btns{

    display:flex;
    gap:10px;

}

.prod-btns .btn{

    flex:1;
    height:42px;
    border:none;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;

}

.btn-green-sm{

    background:#22c55e;
    color:#fff;

}

.btn-wa{

    background:#25D366;
    color:#fff;

}

/* =========================
   WOOCOMMERCE FIX
========================= */

.woocommerce ul.products li.product{

    width:100% !important;
    margin:0 !important;
    float:none !important;

}

.woocommerce ul.products::before,
.woocommerce ul.products::after{

    display:none !important;

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .products-grid,
    .woocommerce ul.products{

        grid-template-columns:repeat(3,1fr);

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .products-grid,
    .woocommerce ul.products{

        grid-template-columns:repeat(2,1fr);
        gap:14px;

    }

    .product-card{

        padding:10px;
        border-radius:18px;

    }

    .prod-img{

        height:120px;
        border-radius:14px;
        margin-bottom:10px;

    }

    .prod-info h4{

        font-size:14px;
        margin-bottom:4px;

    }

    .prod-pack{

        font-size:11px;
        margin-bottom:8px;

    }

    .price-current{

        font-size:18px;

    }

    .price-mrp{

        font-size:12px;

    }

    .prod-btns{

        gap:6px;

    }

    .prod-btns .btn{

        height:34px;
        font-size:11px;
        padding:0 8px;
        border-radius:30px;

    }

    .prod-rating{

        font-size:11px;

    }

    .prod-badge{

        font-size:9px;
        padding:3px 8px;

    }

}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:480px){

    .prod-info h4{

        font-size:13px;

    }

    .price-current{

        font-size:16px;

    }

    .prod-btns .btn{

        font-size:10px;

    }

}
/* woocommerce style */

/* =========================
   SHOP PAGE
========================= */

.shop-page{

    padding:80px 0;
    background:#f8fcff;

}

.shop-topbar{

    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:30px;
    gap:20px;

}

.shop-title{

    font-size:42px;
    margin-bottom:10px;
    color:#0f172a;

}

.shop-subtitle{

    color:#64748b;
    max-width:600px;

}

/* TRUST BAR */

.shop-trustbar{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-bottom:40px;

}

.trust-item{

    background:#fff;
    border-radius:18px;
    padding:18px;
    font-weight:600;
    text-align:center;
    border:1px solid #dcfce7;

}

/* =========================
   SINGLE PRODUCT
========================= */

.single-product-page{

    padding:80px 0;
    background:#f8fcff;

}

.single-product-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;

}

.single-product-gallery{

    background:#fff;
    border-radius:30px;
    padding:40px;
    position:sticky;
    top:120px;

}

.single-product-gallery img{

    width:100%;
    object-fit:contain;

}

.single-product-content{

    background:#fff;
    border-radius:30px;
    padding:40px;

}

.single-badge{

    display:inline-flex;
    background:#dcfce7;
    color:#16a34a;
    padding:8px 16px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;

}

.single-product-title{

    font-size:44px;
    line-height:1.2;
    margin-bottom:16px;

}

.single-rating{

    margin-bottom:20px;
    color:#f59e0b;
    font-weight:600;

}

.single-price{

    font-size:42px;
    font-weight:800;
    margin-bottom:24px;

}

.single-short-desc{

    color:#475569;
    line-height:1.8;
    margin-bottom:30px;

}

.single-trust{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;

}

.single-trust div{

    background:#f1f5f9;
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;

}

/* BUTTONS */

.single-extra-buttons{

    display:flex;
    gap:16px;
    margin-top:20px;

}

.btn-wa-single,
.btn-bulk-order{

    flex:1;
    height:54px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;

}

.btn-wa-single{

    background:#22c55e;
    color:#fff;

}

.btn-bulk-order{

    background:#0f172a;
    color:#fff;

}

/* TABS */

.single-product-tabs{

    background:#fff;
    border-radius:30px;
    padding:40px;
    margin-top:40px;

}

/* RELATED */

.related-products-wrap{

    margin-top:60px;

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .shop-topbar{

        flex-direction:column;
        align-items:start;

    }

    .shop-title{

        font-size:32px;

    }

    .shop-trustbar{

        grid-template-columns:1fr 1fr;

    }

    .single-product-wrapper{

        grid-template-columns:1fr;
        gap:24px;

    }

    .single-product-gallery,
    .single-product-content,
    .single-product-tabs{

        padding:20px;
        border-radius:20px;

    }

    .single-product-title{

        font-size:28px;

    }

    .single-price{

        font-size:32px;

    }

    .single-extra-buttons{

        flex-direction:column;

    }

}