@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600;1,700&display=swap");

:root {
  --navy: #1a2744;
  --navy-mid: #1e3154;
  --navy-deep: #12203a;
  --cream: #f6f0e6;
  --cream-2: #faf7f1;
  --cream-3: #efe6d6;
  --gold: #c4a14a;
  --gold-2: #d4af37;
  --gold-btn: #c9a227;
  --text: #1f2a3d;
  --muted: #6b7280;
  --white: #ffffff;
  --line: rgba(26, 39, 68, 0.08);
  --shadow: 0 10px 30px rgba(18, 32, 58, 0.08);
  --radius: 18px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Nunito Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream-2);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.container-wide {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* ========== TOPBAR ========== */
.topbar {
  background: #f3eadc;
  color: var(--navy);
  font-size: 12px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--navy);
}

.tb-ic {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.tb-ic svg {
  width: 15px;
  height: 15px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== NAV ========== */
.site-nav {
  background: var(--navy);
  padding: 0;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  overflow: visible;
}

.site-nav .navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding: 16px 0 10px;
  margin: 0;
  justify-self: start;
  overflow: visible;
}

.logo-word {
  font-family: var(--font-serif);
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  font-style: italic;
}

.logo-word .a-mark {
  position: relative;
}

.logo-word .leaf {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 3px;
  top: -9px;
  fill: #c9d6ab;
  pointer-events: none;
}

.logo-sub {
  color: #e4d19a;
  font-size: 9px;
  letter-spacing: 3.8px;
  font-weight: 700;
  margin-top: 6px;
  font-style: normal;
  padding-left: 2px;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-center .nav-link {
  color: #f3eadc !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px !important;
  letter-spacing: 0.1px;
}

.nav-center .nav-link:hover,
.nav-center .nav-link.active {
  color: #fff !important;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  justify-self: end;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-tools .tool-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #f3eadc;
  font-size: 18px;
  position: relative;
  display: grid;
  place-items: center;
}

.nav-tools .tool-btn:hover { color: #fff; }

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  background: var(--gold-btn);
  color: var(--navy);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  display: none;
  place-items: center;
  line-height: 1;
}

.cart-count.show { display: grid; }

.site-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 4px 8px;
}

.navbar-toggler-icon { filter: invert(1); }

.mobile-panel {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-panel .nav-link {
  color: #f3eadc !important;
  padding: 10px 0 !important;
}

@media (max-width: 991.98px) {
  .nav-grid {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }
  .topbar { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 720px;
  background-color: var(--cream);
}

.hero-scenery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-jar {
  position: absolute;
  right: 0;
  bottom: 0;
  height: min(100%, 720px);
  width: auto;
  max-width: min(52%, 620px);
  object-fit: contain;
  object-position: right bottom;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(246, 240, 230, 0.78) 0%, rgba(246, 240, 230, 0.42) 42%, rgba(246, 240, 230, 0.08) 68%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 72px 0 56px;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(42px, 5.4vw, 64px);
  color: var(--navy);
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero p.lead-text {
  max-width: 430px;
  color: #4b5568;
  font-size: 15.5px;
  margin-bottom: 28px;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 14px;
}

.btn-navy:hover { background: var(--navy-deep); color: #fff; }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 14px;
}

.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-gold {
  background: var(--gold-btn);
  color: var(--navy);
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 800;
  font-size: 14px;
}

.btn-gold:hover { background: #b8941c; color: var(--navy); }

.hero-micro {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-micro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 92px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 18px;
}


/* ========== FEATURE STRIP ========== */
.feature-strip {
  background: var(--navy);
  color: #fff;
  padding: 34px 0;
}

.feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.4px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 18px;
}

.feat-item h6 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
}

.feat-item p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 78px 0;
}

.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  margin-bottom: 48px;
}

/* ========== BENEFITS ========== */
.benefits { background: #fff; }

.benefit-item {
  text-align: center;
  padding: 8px 10px;
}

.benefit-item .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
}

.benefit-item h6 {
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 800;
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 auto;
  max-width: 180px;
}

/* ========== PRODUCTS ========== */
.products { background: var(--cream-2); }

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 161, 74, 0.35);
}

.product-card img {
  width: 110px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-card.size-lg img { width: 122px; height: 142px; }
.product-card.size-md img { width: 100px; height: 118px; }
.product-card.size-sm img { width: 82px; height: 100px; }

.product-card h5 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 2px;
}

.product-card .sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.price {
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
}

.btn-cart {
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
}

.btn-cart:hover { background: var(--navy-deep); color: #fff; }

/* ========== TRUST BANNER ========== */
.trust-banner {
  background: var(--navy);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  min-height: 280px;
}

.trust-photo {
  min-height: 260px;
  background: #2a1a0a center / cover no-repeat;
}

.trust-copy {
  color: #fff;
  padding: 42px 40px 28px;
}

.trust-copy h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 14px;
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin-bottom: 28px;
}

.trust-pills {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 92px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.trust-pill .ic {
  width: 40px;
  height: 40px;
  border: 1.3px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: #fff; }

.quote-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 24px 22px;
  height: 100%;
}

.stars { color: var(--gold-2); letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }

.quote-card p {
  color: #3f4a5a;
  font-size: 14.5px;
  min-height: 88px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong { display: block; font-size: 14px; color: var(--navy); }
.person small { color: var(--muted); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 18px;
  font-size: 14px;
}

.site-footer h6 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  margin-bottom: 16px;
}

.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--gold-2); }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }

.footer-brand p { max-width: 230px; font-size: 13.5px; }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.news-form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  padding: 4px;
}

.news-form input {
  border: 0;
  outline: 0;
  padding: 8px 14px;
  width: 100%;
  font-size: 13px;
}

.news-form button {
  background: var(--gold-btn);
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--cream) url("/images/hero-mountains.png") center / cover no-repeat;
  padding: 58px 0 46px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 240, 230, 0.82);
}

.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--navy); font-size: 42px; margin-bottom: 8px; }
.breadcrumb-nav { font-size: 13px; color: var(--muted); }
.breadcrumb-nav a { color: var(--gold); }

/* ========== SHOP / CARDS ========== */
.shop-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: 0.25s ease;
}

.shop-card:hover { transform: translateY(-5px); }

.shop-card .thumb {
  background: var(--cream);
  height: 240px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.shop-card .thumb img { height: 210px; object-fit: contain; }
.shop-card .body { padding: 18px 20px 22px; }
.shop-card h5 { color: var(--navy); margin-bottom: 4px; }

/* ========== PRODUCT DETAIL ========== */
.product-detail .gallery {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  place-items: center;
}

.product-detail .gallery img { max-height: 460px; }

.qty-box {
  display: inline-flex;
  border: 1px solid #d7d0c3;
  border-radius: 999px;
  overflow: hidden;
}

.qty-box button {
  width: 38px;
  height: 40px;
  border: 0;
  background: #fff;
  font-size: 18px;
}

.qty-box input {
  width: 46px;
  border: 0;
  text-align: center;
  font-weight: 700;
}

.size-pills .btn {
  border-radius: 999px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ========== CART ========== */
.cart-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.cart-table img { width: 72px; height: 86px; object-fit: contain; }

.cart-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-line-info { flex: 1; min-width: 0; }
.cart-line-info h6 { color: var(--navy); }
.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cart-line-total { white-space: nowrap; }
.cart-remove { color: var(--muted); }

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-buy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-tools {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-qr {
  max-width: min(280px, 100%);
  height: auto;
}

.summary-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

/* ========== CONTACT ========== */
.form-card, .info-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.form-control, .form-select {
  border-radius: 10px;
  padding: 11px 14px;
  border-color: #e4ddd0;
  background: #fff;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 161, 74, 0.18);
}

.info-card i {
  color: var(--gold);
  font-size: 20px;
  margin-right: 10px;
}

/* ========== BLOG ========== */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.blog-card img { height: 200px; width: 100%; object-fit: cover; }
.blog-card .body { padding: 20px; }
.blog-meta { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 1px; }

/* ========== ACCOUNT ========== */
.auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

/* ========== TOAST / MODAL ========== */
.search-modal .modal-content { border-radius: 16px; }

.toast-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  z-index: 1080;
  display: none;
  box-shadow: var(--shadow);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.story-block, .method-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.stat {
  text-align: center;
  padding: 18px;
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
}

.empty-state { text-align: center; padding: 48px 16px; }

@media (max-width: 991.98px) {
  .site-nav .nav-link { padding: 10px 8px !important; }
  .trust-banner { grid-template-columns: 1fr; }
  .trust-photo { min-height: 200px; }
  .logo-word { font-size: 30px; }
  .site-nav .navbar-brand { padding: 12px 0 8px; }
  .hero { min-height: 560px; }
  .hero-inner { min-height: 560px; padding: 48px 0; }
  .hero-copy { max-width: 380px; }
  .hero-jar {
    max-width: min(48%, 420px);
    height: min(100%, 560px);
  }
}

@media (max-width: 767.98px) {
  .container-wide { width: min(1180px, calc(100% - 24px)); }
  .section { padding: 48px 0; }
  .section-title { margin-bottom: 28px; font-size: clamp(26px, 7vw, 34px); }
  .feature-strip { padding: 24px 0; }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-scenery {
    opacity: 0.45;
  }

  .hero-jar {
    position: relative;
    order: 2;
    left: auto;
    right: auto;
    transform: none;
    height: 210px;
    max-width: min(260px, 72vw);
    margin: 8px auto 20px;
    object-position: center bottom;
  }

  .hero-inner {
    order: 1;
    min-height: auto;
    align-items: flex-start;
    padding: 28px 0 12px;
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy .d-flex {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero p.lead-text {
    font-size: 14.5px;
    max-width: 100%;
    margin-bottom: 20px;
    margin-inline: auto;
  }

  .hero-micro {
    justify-content: center;
    gap: 14px 18px;
    margin-top: 24px;
  }

  .hero-micro-item {
    width: 72px;
    font-size: 10.5px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(246, 240, 230, 0.94) 0%, rgba(246, 240, 230, 0.86) 50%, rgba(246, 240, 230, 0.55) 100%);
  }

  .benefit-item {
    padding: 12px 6px;
  }

  .benefit-item p {
    max-width: none;
    font-size: 13px;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .product-card img {
    width: 120px;
    height: 140px;
  }

  .product-card .btn-cart {
    width: 100%;
    max-width: 220px;
  }

  .trust-copy {
    padding: 24px 20px;
    text-align: center;
  }

  .trust-copy p {
    margin-inline: auto;
  }

  .trust-pills {
    justify-content: center;
    gap: 14px 18px;
  }

  .trust-photo {
    min-height: 180px;
  }

  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: 28px; }

  .quote-card p { min-height: 0; }

  .cart-line {
    flex-wrap: wrap;
  }
  .cart-line img { width: 64px; height: 76px; }
  .cart-line-info { flex: 1 1 140px; }
  .cart-line-actions {
    flex: 1 1 100%;
    justify-content: space-between;
    padding-top: 8px;
  }

  .shop-card .thumb { height: 200px; }
  .shop-card .thumb img { height: 170px; }
  .shop-actions .btn { flex: 1; text-align: center; }

  .product-detail .gallery { padding: 16px; }
  .product-detail .gallery img { max-height: 320px; }
  .product-detail h1 { font-size: 28px; }
  .product-buy .btn { flex: 1; min-width: 120px; }

  .form-card, .info-card, .summary-box, .story-block { padding: 20px; }
  .form-control, .form-select { font-size: 16px; }

  .news-form { flex-wrap: wrap; border-radius: 16px; }
  .news-form button { width: 100%; }

  .site-footer { padding: 40px 0 18px; }
  .footer-brand p { max-width: none; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; font-size: 24px; }
  body { padding-bottom: 76px; }

  .size-pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .size-pills .btn { margin: 0; font-size: 13px; padding: 8px 14px; }
}

@media (max-width: 575.98px) {
  .logo-word { font-size: 26px; }
  .hero-jar { height: 190px; max-width: min(240px, 78vw); }
  .hero-micro-item { width: 68px; font-size: 10px; }
  .icon-circle { width: 38px; height: 38px; font-size: 16px; }
  .btn-navy, .btn-outline-navy { padding: 10px 18px; font-size: 13px; }
  .benefit-item .ic { width: 50px; height: 50px; font-size: 20px; }
  .trust-pill { width: 78px; font-size: 11px; }
}
