/* Mehta Doctor Credentials Banner — CSS */
:root {
  --mdb-green:  #0D4A1E;
  --mdb-gold:   #C9A84C;
  --mdb-light:  #F5F0E8;
  --mdb-white:  #ffffff;
  --mdb-text:   #1a1a1a;
  --mdb-muted:  #666666;
  --mdb-border: #e0d5c0;
  --mdb-radius: 12px;
  --mdb-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ── FLOATING BADGE ─────────────────────────────────────────────── */
.mdb-floating-badge {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mdb-green);
  border: 2px solid var(--mdb-gold);
  border-radius: 50px;
  padding: 10px 16px 10px 12px;
  box-shadow: 0 8px 32px rgba(13,74,30,0.35);
  animation: mdb-badge-in 0.5s ease 1s both;
  max-width: 260px;
}

@keyframes mdb-badge-in {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

.mdb-fb-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.mdb-fb-content { flex: 1; }

.mdb-fb-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--mdb-gold);
  line-height: 1.2;
}

.mdb-fb-qual {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}

.mdb-fb-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.mdb-fb-close:hover { color: #fff; }

/* ── SHOP STRIP ─────────────────────────────────────────────────── */
.mdb-shop-strip {
  background: linear-gradient(135deg, #0D4A1E 0%, #1A6B2E 100%);
  border-radius: var(--mdb-radius);
  padding: 14px 20px;
  margin: 0 0 24px;
  border: 1px solid rgba(201,168,76,0.2);
}

.mdb-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.mdb-strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.mdb-strip-item strong { color: var(--mdb-gold); }

.mdb-strip-icon { font-size: 16px; }

.mdb-strip-divider {
  color: rgba(201,168,76,0.3);
  font-size: 18px;
}

@media (max-width: 600px) {
  .mdb-strip-divider { display: none; }
  .mdb-strip-inner { justify-content: flex-start; }
}

/* ── PRODUCT PAGE DOCTOR NOTE ────────────────────────────────────── */
.mdb-product-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #f0f7f2 0%, #faf7f0 100%);
  border: 1px solid rgba(13,74,30,0.15);
  border-left: 4px solid var(--mdb-green);
  border-radius: var(--mdb-radius);
  padding: 16px;
  margin: 16px 0;
}

.mdb-pn-avatar {
  font-size: 32px;
  flex-shrink: 0;
  background: var(--mdb-green);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mdb-pn-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mdb-green);
  margin-bottom: 2px;
}

.mdb-pn-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--mdb-text);
  margin-bottom: 2px;
}

.mdb-pn-qual {
  font-size: 12px;
  color: var(--mdb-muted);
  margin-bottom: 8px;
}

.mdb-pn-quote {
  font-size: 13px;
  color: #444;
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--mdb-gold);
  padding-left: 10px;
  margin: 0;
}

/* ── FULL PROFILE SECTION ────────────────────────────────────────── */
.mdb-full-profile {
  background: linear-gradient(135deg, #071A0C 0%, #0D2818 50%, #071A0C 100%);
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mdb-full-profile::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mdb-fp-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .mdb-fp-container { grid-template-columns: 1fr; gap: 32px; }
}

/* Left Column */
.mdb-fp-left { text-align: center; }

.mdb-fp-avatar {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.mdb-fp-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--mdb-gold), #0D4A1E, var(--mdb-gold));
  animation: mdb-ring-spin 4s linear infinite;
}

@keyframes mdb-ring-spin {
  to { transform: rotate(360deg); }
}

.mdb-fp-avatar-inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #0D4A1E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  z-index: 1;
}

.mdb-fp-verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: var(--mdb-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.mdb-fp-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--mdb-gold);
  margin: 0 0 6px;
}

.mdb-fp-qual {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 6px;
}

.mdb-fp-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin: 0 0 20px;
}

.mdb-fp-contact {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 14px;
}

.mdb-fp-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  line-height: 1.4;
}

.mdb-fp-sunday { color: #ff6b6b !important; font-weight: 600; }

/* Right Column */
.mdb-fp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .mdb-fp-stats { grid-template-columns: repeat(2, 1fr); }
}

.mdb-fp-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.mdb-fp-stat:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.mdb-fp-stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--mdb-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.mdb-fp-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Credentials Grid */
.mdb-fp-cred-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 0 0 14px;
}

.mdb-fp-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .mdb-fp-cred-grid { grid-template-columns: repeat(2, 1fr); }
}

.mdb-fp-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}

.mdb-fp-cred-item:hover {
  background: rgba(13,74,30,0.3);
  border-color: rgba(201,168,76,0.2);
}

.mdb-fp-cred-icon { font-size: 20px; flex-shrink: 0; }

.mdb-fp-cred-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

.mdb-fp-cred-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

/* Quote */
.mdb-fp-quote {
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--mdb-gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 0;
}

.mdb-fp-quote p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 8px;
}

.mdb-fp-quote cite {
  font-size: 13px;
  color: var(--mdb-gold);
  font-style: normal;
  font-weight: 600;
}

/* ── CREDENTIALS GRID SECTION ────────────────────────────────────── */
.mdb-cred-section {
  padding: 48px 20px;
  text-align: center;
}

.mdb-cred-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #0D4A1E;
  margin: 0 0 8px;
}

.mdb-cred-subheading {
  font-size: 16px;
  color: var(--mdb-muted);
  margin: 0 0 36px;
}

.mdb-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) { .mdb-cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mdb-cred-grid { grid-template-columns: 1fr; } }

.mdb-cred-card {
  background: #fff;
  border: 1px solid var(--mdb-border);
  border-radius: var(--mdb-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--mdb-shadow);
}

.mdb-cred-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13,74,30,0.15);
  border-color: var(--mdb-green);
}

.mdb-cred-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.mdb-cred-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mdb-green);
  margin: 0 0 8px;
}

.mdb-cred-card p {
  font-size: 13px;
  color: var(--mdb-muted);
  line-height: 1.5;
  margin: 0;
}
