:root {
  --primary: #1E3F20;
  --primary-dark: #122814;
  --primary-light: #2A5A2E;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F4E8C1;
  --wa-green: #25D366;
  --wa-green-hover: #20bd5a;
  --bg-color: #FDFBF7;
  --surface: #FFFFFF;
  --surface-dim: #F5F2EB;
  --text-main: #1A202C;
  --text-muted: #64748B;
  --border-color: rgba(30, 63, 32, 0.1);
  --shadow-sm: 0 4px 12px rgba(30, 63, 32, 0.05);
  --shadow-lg: 0 20px 40px rgba(30, 63, 32, 0.12);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-pill: 50px;
}

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

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-title {
  font-family: 'Outfit', sans-serif;
}

/* Sticky Glassmorphic Header */
header {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6%;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 2px 8px rgba(30, 63, 32, 0.2);
  flex-shrink: 0;
}

.ramdev-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.lang-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.header-wa-btn {
  background-color: var(--wa-green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.header-wa-btn:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 6% 4rem;
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.08) 0%, rgba(30, 63, 32, 0.03) 70%);
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(30, 63, 32, 0.06);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.wa-primary-btn {
  background-color: var(--wa-green);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.wa-primary-btn:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.phone-call-btn {
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.phone-call-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.trust-icon {
  font-size: 1.25rem;
}

/* Sunday Consultation Banner */
.consultation-banner {
  margin: 2rem 6%;
  background: linear-gradient(135deg, #1E3F20 0%, #122814 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.consultation-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.banner-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: #122814;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.consultation-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.consultation-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 700px;
}

.banner-wa-btn {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.banner-wa-btn:hover {
  background-color: #e5c148;
  transform: translateY(-2px);
}

/* Products Catalog Section */
.products-section {
  padding: 4rem 6%;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.search-box {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-box input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background: var(--surface);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 63, 32, 0.1);
}

.category-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pill-btn {
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pill-btn:hover {
  background: var(--surface-dim);
}

.pill-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(30, 63, 32, 0.2);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 63, 32, 0.25);
}

.product-card:active {
  transform: scale(0.97);
}

.card-image-wrap {
  position: relative;
  height: 240px;
  background: #FFFFFF;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.card-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* CRITICAL: FULL BOTTLE/PACK VISIBILITY NO CROPPING */
  transition: transform 0.4s ease;
}

.product-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.brand-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(30, 63, 32, 0.92);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 63, 32, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.card-image-wrap:hover .image-overlay {
  opacity: 1;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-badge {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.product-info h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.product-card:hover .product-info h3 {
  color: var(--primary-light);
}

.product-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.45;
}

.card-actions {
  margin-top: auto;
}

.wa-btn-sm {
  background-color: var(--wa-green);
  color: white;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.wa-btn-sm:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Owner Section */
.about-section {
  padding: 4rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.about-image-wrapper {
  position: relative;
  text-align: center;
}

.owner-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobAnim 10s infinite alternate;
  box-shadow: 0 10px 30px rgba(30, 63, 32, 0.15);
  border: 4px solid var(--surface);
}

@keyframes blobAnim {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.owner-badge {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.owner-badge span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.owner-badge small {
  color: var(--text-muted);
}

.about-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin: 0.4rem 0 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.store-info-box {
  background: var(--bg-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.25rem;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.info-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Modal Dialog ("The Big Screen") */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 40, 20, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-card {
  background: var(--surface);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0,0,0,0.06);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: background 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0,0,0,0.12);
}

.modal-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.modal-left {
  position: relative;
  background: #FDFBF7;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-left img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
}

.modal-brand-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.modal-right {
  display: flex;
  flex-direction: column;
}

.modal-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.modal-right h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.modal-spec-box {
  background: var(--bg-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.modal-spec-box h4 {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.modal-spec-box p {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0;
}

.modal-benefits h4 {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.modal-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.modal-benefits li {
  font-size: 0.88rem;
  color: var(--text-main);
}

.modal-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.modal-wa-btn {
  background-color: var(--wa-green);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.modal-wa-btn:hover {
  background-color: var(--wa-green-hover);
}

.modal-call-btn {
  background: var(--surface-dim);
  color: var(--primary);
  text-decoration: none;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 4rem 6% 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  max-width: 400px;
}

.footer-contact p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Compact Consultation Teaser Card */
.consultation-card-wrap {
  padding: 1.5rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.consultation-mini-card {
  background: linear-gradient(135deg, #1E3F20 0%, #122814 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.mini-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
}

.mini-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.mini-card-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.mini-card-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.doc-modal-btn {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B89628 100%);
  color: #122814;
  border: none;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.doc-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

/* Doctor Modal Styling */
.doc-modal-card {
  max-width: 680px !important;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem !important;
}

.doc-modal-header {
  margin-bottom: 1.5rem;
}

.doc-badge {
  display: inline-block;
  background: var(--surface-dim);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.doc-modal-header h2 {
  font-size: 1.5rem;
  color: var(--primary);
}

.doc-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.doc-profile-card {
  background: var(--surface-dim);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
}

.doc-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.doc-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gold-avatar {
  background: var(--accent-gold);
  color: #122814;
}

.doc-profile-header h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.doc-deg {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.doc-exp-tag {
  display: inline-block;
  background: rgba(30, 63, 32, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}

.gold-tag {
  background: rgba(212, 175, 55, 0.2);
  color: #8A6D0B;
}

.doc-schedule-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.sch-icon {
  font-size: 1.1rem;
}

.doc-treats {
  font-size: 0.85rem;
}

.doc-treats strong {
  color: var(--primary);
}

.doc-treats p {
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.doc-notice-box {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #92400E;
}

.notice-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.doc-wa-btn {
  background-color: var(--wa-green);
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.doc-wa-btn:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-1px);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .mini-card-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .doc-modal-btn {
    width: 100%;
    text-align: center;
  }
  .about-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .modal-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .modal-left img {
    max-height: 220px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  header {
    padding: 0.75rem 3%;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-sub {
    display: none;
  }
  .header-actions {
    gap: 0.4rem;
  }
  .lang-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }
  .header-wa-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
  .header-wa-btn span {
    font-size: 0.775rem;
  }
  .hero {
    padding: 2.2rem 4% 1.8rem;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .wa-primary-btn, .phone-call-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* 2-Column Mobile Grid for Android / iOS E-Commerce Feel */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .card-image-wrap {
    height: 150px !important;
    padding: 0.65rem !important;
  }
  .product-info {
    padding: 0.65rem !important;
  }
  .product-info h3 {
    font-size: 0.875rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.3rem !important;
  }
  .product-info p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.65rem !important;
  }
  .wa-btn-sm {
    padding: 0.45rem 0.4rem !important;
    font-size: 0.725rem !important;
  }
  .brand-tag {
    font-size: 0.58rem !important;
    padding: 0.12rem 0.35rem !important;
    top: 0.4rem !important;
    left: 0.4rem !important;
  }
}

/* Mobile Bottom Sheet & Custom Scrollbar Hiding */
.modal-card, .modal-body, .doc-modal-card {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-card::-webkit-scrollbar, .modal-body::-webkit-scrollbar, .doc-modal-card::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .modal-backdrop {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .modal-card {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 88vh !important;
    border-radius: 24px 24px 0 0 !important;
    padding: 0.75rem 1.25rem 1.75rem !important;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overscroll-behavior: contain;
  }

  .modal-backdrop.active .modal-card {
    transform: translateY(0) !important;
  }

  .modal-drag-indicator {
    width: 42px;
    height: 5px;
    background: #cbd5e1;
    border-radius: 10px;
    margin: 0.4rem auto 1rem auto;
  }

  .modal-close {
    top: 0.85rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.08);
  }

  .doc-modal-header h2 {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .doc-profile-card {
    padding: 1.1rem;
    border-radius: 16px;
  }

  .doc-wa-btn, .modal-wa-btn {
    min-height: 46px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

