/** Shopify CDN: Minification failed

Line 936:57 Expected ")" to go with "("

**/
/* ============================================================
   DR. ROSEY'S — THEME CSS
   Design tokens + all section styles
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --teal:       #008ba7;
  --teal-dark:  #006f87;
  --teal-light: #e0f4f7;
  --navy:       #093652;
  --ice:        #bfe5ea;
  --ice-soft:   #e8f6f8;
  --gray:       #5c5857;
  --gray-light: #f5f4f3;
  --red:        #a02423;
  --white:      #ffffff;
  --off-white:  #fafafa;

  --font: 'DM Sans', sans-serif;

  --max-w: 1240px;
  --px: clamp(1.5rem, 5vw, 5rem);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 12px rgba(9,54,82,0.07), 0 1px 3px rgba(9,54,82,0.05);
  --shadow-hover: 0 8px 32px rgba(9,54,82,0.12), 0 2px 8px rgba(9,54,82,0.08);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── CONTAINER ────────────────────────────────────────────── */
.dr-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.dr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(0,139,167,0.3);
  text-decoration: none;
}
.dr-btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,139,167,0.4);
  color: var(--white);
}
.dr-btn-primary:active { transform: translateY(0); }

.dr-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border: none;
  cursor: pointer;
  border-bottom: 1.5px solid var(--navy);
  transition: color var(--transition), border-color var(--transition);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.dr-btn-ghost:hover { color: var(--teal); border-color: var(--teal); }

/* ── SECTION TYPOGRAPHY ───────────────────────────────────── */
.dr-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}
.dr-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.dr-section-title strong { font-weight: 600; }
.dr-section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 52ch;
  text-wrap: pretty;
}
.dr-section-header { margin-bottom: 3rem; }
.dr-section-header--centered { text-align: center; }
.dr-section-header--centered .dr-section-desc { margin: 0 auto; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.dr-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.dr-reveal.is-visible { opacity: 1; transform: translateY(0); }
.dr-reveal--d1 { transition-delay: 0.08s; }
.dr-reveal--d2 { transition-delay: 0.16s; }
.dr-reveal--d3 { transition-delay: 0.24s; }
.dr-reveal--d4 { transition-delay: 0.32s; }
.dr-reveal--d5 { transition-delay: 0.40s; }
.dr-reveal--d6 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .dr-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.dr-announcement {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.dr-announcement a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.45);
  transition: border-color var(--transition);
}
.dr-announcement a:hover { border-color: var(--white); }

/* ── HEADER / NAV ─────────────────────────────────────────── */
#header-group {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shopify-section.section-header {
  position: relative;
  top: auto;
  z-index: auto;
}

.dr-header {
  position: relative;
  top: auto;
  z-index: auto;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(9,54,82,0.07);
  transition: box-shadow var(--transition);
}
.dr-header--hidden {
  transform: translateY(-100%);
}
.dr-header--scrolled { box-shadow: 0 2px 20px rgba(9,54,82,0.08); }
.dr-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.dr-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.dr-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}
.dr-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width var(--transition);
}
.dr-nav__links a:hover::after { width: 100%; }
.dr-nav__links a:hover { color: var(--teal); }
.dr-header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dr-header__logo img { height: 26px; width: auto; display: block; }
.dr-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.dr-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.dr-icon-btn:hover { background: var(--ice-soft); color: var(--teal); }
.dr-cart-btn { position: relative; }
.dr-cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO ─────────────────────────────────────────────────── */
.dr-hero {
  background: var(--ice-soft);
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.dr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 65% 50%, var(--ice) 0%, transparent 70%);
  pointer-events: none;
}
.dr-hero__content {
  padding: clamp(3rem, 6vw, 6rem) var(--px);
  position: relative;
  z-index: 2;
}
.dr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.dr-hero__eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.dr-hero__headline {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
  text-wrap: pretty;
}
.dr-hero__headline strong { font-weight: 600; display: block; }
.dr-hero__subheadline {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray);
  max-width: 42ch;
  margin-bottom: 2.25rem;
  text-wrap: pretty;
}
.dr-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.dr-hero__image-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 640px;
  overflow: hidden;
  z-index: 1;
}
.dr-hero__product-img {
  height: 88%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(9,54,82,0.18));
  transform: translateY(2%);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.dr-hero__product-img:hover { transform: translateY(-1%) scale(1.02); }
.dr-hero__badge {
  position: absolute;
  top: 14%; left: 8%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dr-hero__badge-icon {
  width: 28px; height: 28px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dr-hero__badge-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.8125rem;
}
.dr-hero__badge-text span { color: var(--gray); font-size: 0.75rem; }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.dr-trust {
  background: var(--white);
  border-top: 1px solid rgba(9,54,82,0.06);
  border-bottom: 1px solid rgba(9,54,82,0.06);
  padding: 2rem 0;
}
.dr-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.dr-trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.dr-trust__icon {
  width: 40px; height: 40px;
  background: var(--ice-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.dr-trust__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.dr-trust__text span { font-size: 0.75rem; color: var(--gray); }
.dr-trust__divider {
  width: 1px; height: 36px;
  background: rgba(9,54,82,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) { .dr-trust__divider { display: none; } }

/* ── INGREDIENTS ──────────────────────────────────────────── */
.dr-ingredients {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--white);
}
.dr-ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .dr-ingredients__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dr-ingredients__grid { grid-template-columns: 1fr; } }
.dr-ingredient-card {
  background: var(--off-white);
  border: 1px solid rgba(9,54,82,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.dr-ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}
.dr-ingredient-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(0,139,167,0.15);
}
.dr-ingredient-card:hover::before { opacity: 1; }
.dr-ingredient-card__icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.dr-ingredient-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.dr-ingredient-card__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ── FEATURED PRODUCTS ────────────────────────────────────── */
.dr-products {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--ice-soft);
}
.dr-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .dr-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dr-products__grid { grid-template-columns: 1fr; } }
.dr-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.dr-product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.dr-product-card__image {
  background: var(--ice-soft);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.dr-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.dr-product-card:hover .dr-product-card__image img { transform: scale(1.05); }
.dr-product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: var(--teal);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}
.dr-product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.dr-product-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.dr-product-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.dr-product-card__desc {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.55;
  flex: 1;
}
.dr-product-card__meta {
  font-size: 0.75rem;
  color: var(--gray);
}
.dr-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(9,54,82,0.06);
}
.dr-product-card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}
.dr-btn-atc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
}
.dr-btn-atc:hover { background: var(--teal-dark); transform: scale(1.03); }
.dr-btn-atc--disabled {
  background: var(--gray-light);
  color: var(--gray);
  cursor: default;
}
.dr-btn-atc--disabled:hover { background: var(--gray-light); transform: none; }

/* ── BRAND PROMISE ────────────────────────────────────────── */
.dr-brand-promise {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.dr-brand-promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,139,167,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.dr-brand-promise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .dr-brand-promise__inner { grid-template-columns: 1fr; } }
.dr-brand-promise .dr-eyebrow { color: var(--ice); }
.dr-brand-promise .dr-section-title { color: var(--white); }
.dr-brand-promise .dr-section-desc { color: rgba(255,255,255,0.7); max-width: 46ch; }
.dr-brand-promise__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dr-brand-stat {
  border-left: 2px solid var(--teal);
  padding-left: 1rem;
}
.dr-brand-stat__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.dr-brand-stat__label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.dr-brand-promise__visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-brand-promise__img {
  height: 92%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  position: relative;
  z-index: 2;
}
.dr-brand-promise__glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,139,167,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.dr-contact {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--white);
}
.dr-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) { .dr-contact__inner { grid-template-columns: 1fr; } }
.dr-contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dr-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.dr-contact__detail-icon {
  width: 36px; height: 36px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.dr-contact__detail-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.dr-contact__detail-text span,
.dr-contact__detail-text a { font-size: 0.875rem; color: var(--gray); }
.dr-contact__detail-text a:hover { color: var(--teal); }
.dr-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.dr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) { .dr-form-row { grid-template-columns: 1fr; } }
.dr-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.dr-form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.dr-form-group input,
.dr-form-group textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid rgba(9,54,82,0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.dr-form-group input::placeholder,
.dr-form-group textarea::placeholder { color: rgba(92,88,87,0.5); }
.dr-form-group input:focus,
.dr-form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,139,167,0.1);
  background: var(--white);
}
.dr-form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.dr-form-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
  opacity: 0.75;
}
.dr-form-success {
  display: none;
  background: var(--teal-light);
  border: 1px solid rgba(0,139,167,0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: var(--teal-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  align-items: center;
  gap: 0.75rem;
}
.dr-form-success--visible { display: flex !important; }

/* ── FOOTER ───────────────────────────────────────────────── */
.dr-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
}
.dr-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .dr-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dr-footer__inner { grid-template-columns: 1fr; } }
.dr-footer__logo { height: 22px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.dr-footer__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
  margin-bottom: 1.25rem;
}
.dr-footer__social { display: flex; gap: 0.625rem; }
.dr-footer__social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.dr-footer__social-link:hover { background: var(--teal); color: white; }
.dr-footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.dr-footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; list-style: none; }
.dr-footer__col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.dr-footer__col ul li a:hover { color: var(--ice); }
.dr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.dr-footer__bottom a { color: rgba(255,255,255,0.45); }
.dr-footer__bottom a:hover { color: var(--ice); }
.dr-footer__bottom-links { display: flex; gap: 1.5rem; }

/* ── RESPONSIVE: HERO ─────────────────────────────────────── */
@media (max-width: 768px) {
  .dr-hero { grid-template-columns: 1fr; min-height: auto; }
  .dr-hero__image-panel { height: 380px; }
  .dr-header__inner { grid-template-columns: auto 1fr auto; }
  .dr-nav__links { display: none; } /* Add mobile menu implementation */
  .dr-header__logo { justify-content: flex-start; }
}


/* ── FIX FONT WEIGHT ──────────────────────────────────────────── */
p, .dr-section-desc, .dr-contact__detail-text span, .dr-product-card__desc, .dr-ingredient-card__desc {
  font-weight: 400 !important;
}

.dr-products .dr-section-desc {
  margin-left: 0 !important;
}


/* ── HAMBURGER ────────────────────────────────────────────── */
.dr-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.dr-hamburger:hover { background: var(--ice-soft); }
.dr-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}
.dr-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dr-hamburger.is-open span:nth-child(2) { opacity: 0; }
.dr-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 769px) {
  .dr-hamburger { display: none; }
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.dr-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(9,54,82,0.07);
  box-shadow: 0 8px 24px rgba(9,54,82,0.08);
  z-index: 99;
}
.dr-mobile-menu.is-open {
  display: block;
}
.dr-mobile-menu__links {
  list-style: none;
  padding: 1rem 0;
}
.dr-mobile-menu__links li a {
  display: block;
  padding: 0.875rem var(--px);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(9,54,82,0.06);
  transition: color var(--transition), background var(--t