
:root {
  --navy: #0a1f44;
  --navy-mid: #112d5c;
  --navy-light: #1a3d70;
  --teal: #00897b;
  --teal-light: #4db6ac;
  --teal-pale: #e0f2f1;
  --white: #ffffff;
  --offwhite: #f7f9fc;
  --grey-light: #eef1f6;
  --grey-mid: #d1d8e6;
  --grey-text: #6b7a99;
  --body-text: #2c3a52;
  --accent: #0288d1;
  --accent-warm: #e65100;
  --success: #2e7d32;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,31,68,0.08);
  --shadow-md: 0 6px 24px rgba(10,31,68,0.12);
  --shadow-lg: 0 16px 48px rgba(10,31,68,0.18);
  --radius: 10px;
  --radius-lg: 18px;
}

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--offwhite); }
.section-dark { background: var(--navy); color: var(--white); }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.badge { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
.badge-teal { background: var(--teal-pale); color: var(--teal); }
.badge-navy { background: rgba(10,31,68,0.08); color: var(--navy); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar a { color: rgba(255,255,255,0.85); font-size: 13px; }
.topbar a:hover { color: var(--teal-light); }
.topbar-left, .topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ===== NAV ===== */
.nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--teal) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; color: white; letter-spacing: -1px;
}
.logo-text { line-height: 1.1; }
.logo-text strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); }
.logo-text span { font-size: 11px; color: var(--grey-text); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--body-text);
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--grey-light); color: var(--navy); }
.nav-link.active { color: var(--teal); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.18s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: #00796b; color: white; box-shadow: 0 4px 14px rgba(0,137,123,0.35); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); color: white; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--grey-mid); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.btn-ghost { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); color: white; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.nav-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: transparent; border: 1px solid var(--grey-mid); color: var(--body-text); font-size: 16px; transition: all 0.15s; position: relative; }
.nav-icon:hover { background: var(--grey-light); color: var(--navy); }
.cart-badge { position: absolute; top: -5px; right: -5px; background: var(--teal); color: white; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #1a5276 100%);
  color: white;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300897b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--teal-light); border-radius: 2px; }
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--teal-light); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-trust-item span { font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-visual { position: relative; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.hero-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.hero-card-icon { font-size: 28px; margin-bottom: 10px; }
.hero-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: white; margin-bottom: 4px; }
.hero-card p { font-size: 12px; color: rgba(255,255,255,0.55); }
.hero-card.featured { grid-column: span 2; background: rgba(0,137,123,0.25); border-color: rgba(77,182,172,0.4); }

/* ===== ANNOUNCEMENT STRIP ===== */
.announcement {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}
.announcement a { color: white; font-weight: 700; text-decoration: underline; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--grey-text); font-size: 17px; max-width: 580px; margin: 0 auto; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--body-text);
}
.cat-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); color: var(--body-text); }
.cat-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 14px;
}
.cat-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.cat-card p { font-size: 12px; color: var(--grey-text); }
.cat-icon-blue { background: #e3f2fd; }
.cat-icon-teal { background: var(--teal-pale); }
.cat-icon-purple { background: #f3e5f5; }
.cat-icon-amber { background: #fff8e1; }
.cat-icon-red { background: #fce4ec; }
.cat-icon-green { background: #e8f5e9; }
.cat-icon-navy { background: #e8eaf6; }
.cat-icon-orange { background: #fff3e0; }

/* ===== FEATURES / WHY US ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.feature-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 16px; }
.feature-card p { color: var(--grey-text); font-size: 14px; line-height: 1.65; }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; background: var(--grey-light);
  position: relative;
}
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.badge-new { background: var(--teal); color: white; }
.badge-popular { background: #e65100; color: white; }
.badge-rental { background: var(--navy); color: white; }
.product-body { padding: 16px; }
.product-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--teal); letter-spacing: 0.06em; margin-bottom: 5px; }
.product-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.product-price { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.product-price .orig { font-size: 13px; font-weight: 400; color: var(--grey-text); text-decoration: line-through; margin-left: 6px; }
.product-footer { display: flex; gap: 8px; }
.product-footer .btn { flex: 1; justify-content: center; padding: 9px 10px; font-size: 13px; }
.wish-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--grey-mid); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; background: white; flex-shrink: 0; transition: all 0.15s; }
.wish-btn:hover { border-color: #e91e63; color: #e91e63; }

/* ===== PRESCRIPTION CTA ===== */
.rx-cta {
  background: linear-gradient(135deg, var(--teal) 0%, #00695c 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.rx-cta h2 { color: white; margin-bottom: 12px; }
.rx-cta p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 500px; margin-bottom: 24px; }
.rx-cta-visual { font-size: 80px; opacity: 0.3; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-block { text-align: center; padding: 48px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-block:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--teal-light); margin-bottom: 6px; }
.stat-label { color: rgba(255,255,255,0.65); font-size: 14px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-mid);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s;
  background: var(--white);
}
.service-card::after {
  content: '→';
  position: absolute; bottom: 24px; right: 24px;
  font-size: 18px; color: var(--teal);
  opacity: 0; transform: translateX(-8px);
  transition: all 0.2s;
}
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::after { opacity: 1; transform: translateX(0); }
.service-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--grey-light); line-height: 1; margin-bottom: 16px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 17px; }
.service-card p { color: var(--grey-text); font-size: 14px; line-height: 1.65; }

/* ===== RENTAL ===== */
.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rental-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; align-items: center; gap: 20px;
  transition: all 0.2s;
  cursor: pointer;
}
.rental-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.rental-icon { font-size: 36px; width: 64px; height: 64px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rental-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.rental-card p { font-size: 13px; color: var(--grey-text); }
.rental-price { font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 4px; }

/* ===== PRESCRIPTION PAGE ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 60px 0 50px;
  text-align: center;
}
.page-header .badge { background: rgba(77,182,172,0.2); color: var(--teal-light); margin-bottom: 16px; }
.page-header h1 { color: white; margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 560px; margin: 0 auto; }

.rx-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; padding: 60px 0; }
.form-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h3 { color: var(--navy); margin-bottom: 28px; font-size: 1.3rem; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--body-text); margin-bottom: 7px; }
.form-label .req { color: #e53935; }
.form-input {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--body-text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  background: var(--white);
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,137,123,0.12); }
.form-input::placeholder { color: var(--grey-text); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.upload-zone {
  border: 2px dashed var(--grey-mid);
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--offwhite);
}
.upload-zone:hover { border-color: var(--teal); background: var(--teal-pale); }
.upload-icon { font-size: 36px; margin-bottom: 10px; color: var(--teal); }
.upload-zone p { font-size: 14px; color: var(--grey-text); }
.upload-zone strong { font-weight: 600; color: var(--body-text); }
.upload-types { font-size: 12px; color: var(--grey-text); margin-top: 6px; }
.consent-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 13px;
  color: #5d4037;
  line-height: 1.55;
}
.consent-box input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--teal); cursor: pointer; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 { color: var(--navy); font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--grey-light); }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.info-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body-text); }
.info-list li::before { content: '✓'; font-weight: 700; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.disclaimer-box {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  border-left: 4px solid #e53935;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 13px;
  color: #b71c1c;
  line-height: 1.6;
}
.disclaimer-box strong { display: block; margin-bottom: 5px; font-size: 14px; }
.steps-list { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.steps-list li { display: flex; gap: 14px; font-size: 14px; color: var(--body-text); counter-increment: step; align-items: flex-start; }
.steps-list li::before { content: counter(step); width: 26px; height: 26px; background: var(--teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== SUCCESS MESSAGE ===== */
.success-card {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  display: none;
}
.success-card.show { display: block; }
.success-icon { font-size: 52px; margin-bottom: 16px; }
.success-card h3 { color: var(--success); font-size: 1.4rem; margin-bottom: 12px; }
.success-card p { color: #388e3c; font-size: 15px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testi-stars { color: #f9a825; font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--body-text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--teal); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--grey-text); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--teal-light); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.15s; text-decoration: none; }
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: white; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar { background: #fff3e0; border-top: 2px solid #ffcc80; padding: 16px 0; }
.disclaimer-bar p { font-size: 13px; color: #e65100; text-align: center; }
.disclaimer-bar strong { font-weight: 700; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: white;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); color: white; }

/* ===== PAGE TABS ===== */
.page-tabs { display: flex; border-bottom: 2px solid var(--grey-mid); margin-bottom: 48px; overflow-x: auto; }
.page-tab { padding: 14px 24px; font-size: 14px; font-weight: 600; color: var(--grey-text); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all 0.15s; }
.page-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.page-tab:hover { color: var(--navy); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== ARCHITECTURE ===== */
.arch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.arch-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
}
.arch-card h4 { color: var(--navy); font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-pale); display: flex; align-items: center; gap: 8px; }
.arch-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.arch-list li { font-size: 13px; color: var(--body-text); display: flex; align-items: flex-start; gap: 8px; }
.arch-list li::before { content: '→'; color: var(--teal); flex-shrink: 0; font-weight: 700; }
.plugins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plugin-item { background: var(--grey-light); border-radius: 8px; padding: 14px 16px; }
.plugin-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.plugin-item span { font-size: 12px; color: var(--grey-text); }
.tech-tag { display: inline-block; background: var(--teal-pale); color: var(--teal); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin: 3px 3px 3px 0; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-placeholder {
  height: 360px; background: var(--grey-light);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.about-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--teal);
  color: white;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-float .lbl { font-size: 12px; opacity: 0.85; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.mv-card { background: var(--offwhite); border-radius: var(--radius); padding: 22px; }
.mv-card h4 { font-family: var(--font-display); font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.mv-card p { font-size: 14px; color: var(--grey-text); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--teal); }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item p { font-size: 14px; color: var(--grey-text); }
.map-placeholder { height: 220px; background: var(--grey-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 40px; margin-top: 20px; color: var(--grey-text); border: 1px solid var(--grey-mid); }
.hours-grid { display: flex; flex-direction: column; gap: 0; }
.hour-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--grey-light); font-size: 13px; }

/* ===== CORPORATE ===== */
.corp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.corp-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.corp-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.corp-card .icon { font-size: 32px; margin-bottom: 12px; }
.corp-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.corp-card p { font-size: 13px; color: var(--grey-text); }

/* ===== TAB PANES ===== */
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ===== SCROLL INDICATOR ===== */
.scroll-hint { text-align: center; padding: 24px; color: var(--grey-text); font-size: 13px; }

/* ===== UTILITIES ===== */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-small { font-size: 13px; color: var(--grey-text); }
.divider { border: none; border-top: 1px solid var(--grey-light); margin: 32px 0; }
.inline-flex { display: inline-flex; align-items: center; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 100px; background: var(--grey-light); color: var(--body-text); }
.pill-teal { background: var(--teal-pale); color: var(--teal); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); display: inline-block; }

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .categories-grid, .products-grid, .features-grid, .services-grid, .rental-grid, .testimonials-grid, .corp-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .rx-layout { grid-template-columns: 1fr; }
  .arch-grid, .plugins-grid { grid-template-columns: 1fr; }
  .rx-cta { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .categories-grid, .products-grid, .features-grid, .services-grid, .rental-grid, .testimonials-grid, .corp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}


/* Elementor compatibility additions */
:root {
  --vmt-navy: var(--navy, #0a1f44);
  --vmt-teal: var(--teal, #00897b);
}
body.elementor-page .site-main,
.elementor-page .entry-content { padding:0; margin:0; }
.site-main { min-height: 50vh; }
.elementor-section.elementor-section-boxed > .elementor-container { max-width:1200px; }
.vmt-elementor-note { background:#e0f2f1; border-left:4px solid #00897b; padding:16px 20px; border-radius:8px; margin:20px 0; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product { border:1px solid var(--grey-mid); border-radius:18px; padding:16px; box-shadow:none; transition:.2s; }
.woocommerce ul.products li.product:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { background:var(--teal); color:#fff; border-radius:8px; font-weight:600; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background:#00796b; color:#fff; }
.vmt-page-content { padding: 60px 0; }
.vmt-mobile-toggle { display:none; }
@media (max-width: 800px){
 .topbar .container,.topbar-left,.topbar-right{flex-direction:column;gap:6px;text-align:center;}
 .nav{height:auto;min-height:72px;flex-wrap:wrap;padding:12px 0;}
 .vmt-mobile-toggle{display:flex;}
 .nav-links{display:none;width:100%;flex-direction:column;align-items:stretch;padding:12px 0;}
 .nav-links.open{display:flex;}
 .nav-actions{margin-left:auto;}
 .products-grid,.categories-grid,.features-grid,.services-grid,.rental-grid,.testimonials-grid,.corp-grid{grid-template-columns:1fr;}
 .hero-grid{grid-template-columns:1fr;}
}
.nav-links{list-style:none;margin:0;padding:0;display:flex;gap:6px;align-items:center;}
.nav-links li{margin:0;padding:0;}
.nav-links a{font-size:14px;font-weight:500;color:var(--body-text);padding:8px 14px;border-radius:8px;transition:background .15s,color .15s;white-space:nowrap;text-decoration:none;display:block;}
.nav-links a:hover,.nav-links .current-menu-item>a{background:var(--grey-light);color:var(--teal);}
.custom-logo{max-height:52px;width:auto;}
.vmt-rx-form .btn{width:100%;justify-content:center;}

/* v2.1 fixes: prevent wide header overflow and duplicate-looking menu crowding */
html, body { max-width: 100%; overflow-x: hidden; }
.nav-wrap, .topbar { width: 100%; max-width: 100%; }
.nav { gap: 12px; }
.logo { flex-shrink: 0; min-width: 0; }
.logo-text strong { white-space: nowrap; }
.nav-links { flex: 1 1 auto; min-width: 0; justify-content: center; gap: 2px; }
.nav-links a { padding: 8px 9px; font-size: 13px; }
.nav-actions { flex-shrink: 0; }
@media (max-width: 1180px) {
  .nav { height: auto; min-height: 72px; flex-wrap: wrap; padding: 12px 0; }
  .vmt-mobile-toggle { display:flex; margin-left:auto; }
  .nav-links { display:none !important; order:3; width:100%; flex-direction:column; align-items:stretch; padding:12px 0; }
  .nav-links.open { display:flex !important; }
  .nav-actions { order:2; margin-left:0; }
}
@media (min-width: 1181px) { .vmt-mobile-toggle { display:none; } }
@media (max-width: 600px) {
  .nav-actions { width:100%; justify-content:space-between; }
  .nav-actions .btn { flex:1; justify-content:center; }
}
