/* ============================================================
   botanical skincare — style.css (bot- prefix)
   Palette: soft white #fcfbf9 · green #33493b · blush #e7d4cb
            clay #c9a98c · sage #cdd6c8
   Typography: Spectral (display) · Mulish (body)
   Design: soft clinical spa, rounded pills, generous whitespace
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Mulish:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Custom Properties ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:        #fcfbf9;
  --c-green:     #33493b;
  --c-green-mid: #4a6654;
  --c-green-lt:  #6a8a76;
  --c-blush:     #e7d4cb;
  --c-clay:      #c9a98c;
  --c-sage:      #cdd6c8;
  --c-sage-dk:   #b2bfac;
  --c-white:     #ffffff;
  --c-ink:       #2a2a28;
  --c-muted:     #6e6e6c;
  --c-border:    #e9e4de;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-pill: 999px;

  --shadow-soft: 0 4px 24px rgba(51,73,59,.08), 0 1px 4px rgba(51,73,59,.06);
  --shadow-card: 0 2px 16px rgba(51,73,59,.07), 0 1px 3px rgba(51,73,59,.05);
  --shadow-lift: 0 12px 40px rgba(51,73,59,.14), 0 3px 10px rgba(51,73,59,.08);
  --shadow-pill: 0 6px 32px rgba(51,73,59,.12), 0 2px 8px rgba(51,73,59,.08);

  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: 'Spectral', Georgia, serif;
  --font-body:    'Mulish', system-ui, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
  --nav-h: 72px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---- Scroll indicator ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-sage); border-radius: var(--r-pill); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   LAYOUT
   ============================================================ */

.bot-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.bot-section { padding: clamp(48px, 8vw, 96px) 0; }
.bot-section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--c-green);
  letter-spacing: -.02em;
  line-height: 1.25;
}
.bot-section-sub {
  font-size: .95rem;
  color: var(--c-muted);
  margin-top: .5rem;
  font-weight: 400;
}

/* ============================================================
   PILL NAV (floating, centered, shrinks on scroll)
   ============================================================ */

.bot-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 920px;
  transition: top .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), padding .35s var(--ease-out);
}

.bot-nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(252,251,249,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(205,214,200,.5);
  border-radius: var(--r-pill);
  padding: 10px 16px 10px 20px;
  box-shadow: var(--shadow-pill);
  transition: padding .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.bot-nav.bot-nav-scrolled .bot-nav-pill {
  padding: 7px 14px 7px 18px;
  box-shadow: 0 4px 24px rgba(51,73,59,.15);
}

.bot-nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--c-green);
  letter-spacing: .01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.bot-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.5vw, 20px);
  flex: 1;
  justify-content: center;
}

.bot-nav-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-green);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.bot-nav-links a:hover,
.bot-nav-links a.bot-active {
  background: var(--c-sage);
  color: var(--c-green);
}

.bot-nav-utils {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.bot-nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: var(--r-pill);
  color: var(--c-green);
  transition: background .2s;
  font-size: 1rem;
}
.bot-nav-icon:hover { background: var(--c-sage); }
.bot-nav-icon:focus-visible { outline: 2px solid var(--c-green); outline-offset: 2px; }

.bot-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 17px;
  height: 17px;
  background: var(--c-clay);
  color: var(--c-white);
  border-radius: var(--r-pill);
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile hamburger */
.bot-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: var(--r-pill);
  color: var(--c-green);
  cursor: pointer;
  transition: background .2s;
}
.bot-nav-hamburger:hover { background: var(--c-sage); }
.bot-nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.bot-nav-hamburger.bot-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bot-nav-hamburger.bot-open span:nth-child(2) { opacity: 0; }
.bot-nav-hamburger.bot-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.bot-nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(252,251,249,.97);
  backdrop-filter: blur(14px);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lift);
  padding: 12px 8px;
  flex-direction: column;
  gap: 2px;
}
.bot-nav-mobile.bot-open { display: flex; }
.bot-nav-mobile a {
  display: block;
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-green);
  border-radius: var(--r-lg);
  transition: background .2s;
}
.bot-nav-mobile a:hover { background: var(--c-sage); }

/* Search bar (toggled by header search icon) */
.bot-search-bar {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  align-items: center;
  gap: 10px;
  background: rgba(252,251,249,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lift);
  padding: 12px 20px;
  color: var(--c-green-lt);
}
.bot-search-bar.bot-active { display: flex; }
.bot-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: .95rem;
  color: var(--c-ink);
  outline: none;
}
.bot-search-input::placeholder { color: var(--c-muted); }

@media (max-width: 768px) {
  .bot-nav { width: calc(100% - 32px); top: 12px; }
  .bot-nav-links { display: none; }
  .bot-nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .bot-nav-pill { padding: 8px 12px; }
}

/* ---- Page top padding to clear fixed nav ---- */
.bot-page-top { padding-top: calc(var(--nav-h) + 32px); }

/* ============================================================
   HERO
   ============================================================ */

.bot-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) var(--gutter) 64px;
  background: linear-gradient(170deg, var(--c-bg) 0%, var(--c-sage) 45%, var(--c-blush) 100%);
}

.bot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(252,251,249,.9) 0%, transparent 70%);
  pointer-events: none;
}

.bot-hero-content { position: relative; z-index: 1; max-width: 680px; }

.bot-hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-green-lt);
  background: rgba(205,214,200,.4);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.bot-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--c-green);
  margin-bottom: 20px;
}

.bot-hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}

.bot-hero-bottle {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.bot-hero-bottle img {
  width: clamp(180px, 20vw, 300px);
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
  border-radius: 60% 60% 50% 50% / 50% 50% 40% 40%;
  box-shadow: 0 24px 80px rgba(51,73,59,.15), 0 8px 24px rgba(51,73,59,.1);
  animation: bot-float 5s ease-in-out infinite;
}

.bot-hero-bottle::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(51,73,59,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: bot-glow 5s ease-in-out infinite;
}

@keyframes bot-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes bot-glow {
  0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50%       { opacity: .4; transform: translateX(-50%) scale(.85); }
}

.bot-hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.bot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .2s var(--ease-spring), box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.bot-btn:active { transform: scale(.97); }
.bot-btn:focus-visible { outline: 2px solid var(--c-green); outline-offset: 3px; }

.bot-btn-primary {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(51,73,59,.25);
}
.bot-btn-primary:hover {
  background: var(--c-green-mid);
  box-shadow: 0 8px 30px rgba(51,73,59,.3);
  transform: translateY(-1px);
}

.bot-btn-secondary {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.bot-btn-secondary:hover {
  background: var(--c-sage);
  transform: translateY(-1px);
}

.bot-btn-ghost {
  background: transparent;
  color: var(--c-green-lt);
  border-color: var(--c-border);
}
.bot-btn-ghost:hover { background: var(--c-sage); color: var(--c-green); }

.bot-btn-sm { padding: 8px 18px; font-size: .78rem; }
.bot-btn-lg { padding: 16px 36px; font-size: .95rem; }
.bot-btn-full { width: 100%; }

.bot-btn-pill-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 8px 20px;
  border: 2px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-muted);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .15s var(--ease-spring);
}
.bot-btn-pill-filter:hover { border-color: var(--c-green); color: var(--c-green); background: var(--c-sage); }
.bot-btn-pill-filter.bot-active {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

/* ============================================================
   CONCERN PILLS STRIP
   ============================================================ */

.bot-concerns-strip {
  padding: 40px 0 56px;
  text-align: center;
}
.bot-concerns-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.bot-concerns-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.bot-concern-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-green);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s var(--ease-spring);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.bot-concern-pill:hover {
  background: var(--c-sage);
  border-color: var(--c-sage-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.bot-concern-pill.bot-active {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}
.bot-concern-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .5;
}

/* ============================================================
   INGREDIENT SPOTLIGHT CARDS
   ============================================================ */

.bot-ingredients-section { background: var(--c-white); }

.bot-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bot-ingredient-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px 20px 20px;
  cursor: pointer;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-spring);
  overflow: hidden;
}
.bot-ingredient-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.bot-ingredient-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: 16px;
  transition: transform .4s var(--ease-out);
}
.bot-ingredient-card:hover .bot-ingredient-img { transform: scale(1.04); }

.bot-ingredient-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--c-green);
  margin-bottom: 4px;
}
.bot-ingredient-inci {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--c-clay);
  margin-bottom: 10px;
}

.bot-ingredient-benefit {
  font-size: .83rem;
  color: var(--c-muted);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .4s;
  opacity: 0;
}
.bot-ingredient-card:hover .bot-ingredient-benefit,
.bot-ingredient-card.bot-expanded .bot-ingredient-benefit {
  max-height: 120px;
  opacity: 1;
}

.bot-ingredient-more {
  display: inline-block;
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-green-lt);
}

/* ============================================================
   ROUTINE BUILDER
   ============================================================ */

.bot-routine-section { background: var(--c-bg); }

.bot-routine-tabs {
  display: flex;
  gap: 8px;
  margin: 32px 0 28px;
}
.bot-routine-tab {
  padding: 10px 28px;
  border: 2px solid var(--c-border);
  background: transparent;
  color: var(--c-muted);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.bot-routine-tab.bot-active {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}

.bot-routine-panel { display: none; }
.bot-routine-panel.bot-active { display: block; }

.bot-routine-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bot-routine-step {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow .25s, transform .25s var(--ease-spring);
}
.bot-routine-step:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }

.bot-routine-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-sage);
  color: var(--c-green);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.bot-routine-step img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin: 0 auto 12px;
}
.bot-routine-step-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--c-green);
  margin-bottom: 4px;
}
.bot-routine-step-desc {
  font-size: .78rem;
  color: var(--c-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .bot-routine-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT GRID (shop + bestsellers)
   ============================================================ */

.bot-shop-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.bot-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.bot-sort-select {
  appearance: none;
  padding: 9px 36px 9px 16px;
  border: 2px solid var(--c-border);
  background: var(--c-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2333493b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-green);
  cursor: pointer;
  min-width: 160px;
  transition: border-color .2s;
}
.bot-sort-select:focus { outline: none; border-color: var(--c-green); }

@media (max-width: 600px) {
  .bot-shop-controls { flex-direction: column; align-items: stretch; }
  .bot-filter-group { flex: none; }
  .bot-sort-select { width: 100%; }
}

.bot-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* Product card */
.bot-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-spring);
  box-shadow: var(--shadow-card);
}
.bot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.bot-card:focus-visible { outline: 2px solid var(--c-green); outline-offset: 4px; }

.bot-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
  height: 260px;
}
.bot-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.bot-card:hover .bot-card-img-wrap img { transform: scale(1.06); }

.bot-card-concern-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(252,251,249,.92);
  backdrop-filter: blur(8px);
  color: var(--c-green);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(205,214,200,.6);
}

.bot-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bot-card-category {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-clay);
  font-weight: 700;
}
.bot-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-green);
  line-height: 1.3;
}
.bot-card-short {
  font-size: .8rem;
  color: var(--c-muted);
  line-height: 1.5;
  flex: 1;
}
.bot-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 8px;
}
.bot-card-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-green);
}
.bot-card-add {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: var(--c-sage);
  color: var(--c-green);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s var(--ease-spring);
}
.bot-card-add:hover { background: var(--c-green); color: var(--c-white); transform: scale(1.1); }

/* Empty state */
.bot-products-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 24px;
  color: var(--c-muted);
  font-size: .95rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.bot-trust-section {
  background: var(--c-green);
  color: var(--c-white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 8px;
  padding: clamp(40px, 6vw, 64px) 0;
}

.bot-trust-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-align: center;
  margin-bottom: 36px;
  color: rgba(255,255,255,.9);
}

.bot-trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.bot-trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  padding: 12px 22px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.9);
}
.bot-trust-chip-icon {
  width: 20px;
  height: 20px;
  opacity: .8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.bot-testimonials-section { background: var(--c-white); }

.bot-testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.bot-testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease-out);
}

.bot-testimonial-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
}
.bot-testimonial-stars {
  color: var(--c-clay);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.bot-testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-ink);
  line-height: 1.65;
  margin-bottom: 18px;
}
.bot-testimonial-author {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-green-lt);
}
.bot-testimonial-product {
  font-size: .75rem;
  color: var(--c-muted);
  margin-top: 2px;
}

.bot-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.bot-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.bot-carousel-dot.bot-active {
  background: var(--c-green);
  transform: scale(1.3);
}
.bot-carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.bot-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-border);
  background: transparent;
  color: var(--c-green);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
}
.bot-carousel-arrow:hover { background: var(--c-sage); border-color: var(--c-sage-dk); transform: scale(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */

.bot-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: clamp(48px, 8vw, 80px) 0 32px;
  margin-top: 0;
}

.bot-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px 32px;
}

.bot-footer-newsletter {}
.bot-footer-newsletter-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-green);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bot-footer-newsletter-sub {
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.bot-newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bot-newsletter-input {
  flex: 1;
  min-width: 180px;
  padding: 11px 18px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-pill);
  background: var(--c-white);
  font-size: .85rem;
  color: var(--c-ink);
  transition: border-color .2s;
}
.bot-newsletter-input:focus { outline: none; border-color: var(--c-green); }
.bot-newsletter-btn {
  padding: 11px 20px;
  background: var(--c-green);
  color: var(--c-white);
  border: none;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.bot-newsletter-btn:hover { background: var(--c-green-mid); }

.bot-footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
}
.bot-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bot-footer-links a {
  font-size: .83rem;
  color: var(--c-muted);
  transition: color .2s;
}
.bot-footer-links a:hover { color: var(--c-green); }

.bot-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.bot-footer-legal {
  font-size: .75rem;
  color: var(--c-muted);
}
.bot-footer-legal a { color: var(--c-muted); text-decoration: underline; text-underline-offset: 2px; }
.bot-footer-legal a:hover { color: var(--c-green); }

.bot-lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bot-lang-btn {
  padding: 4px 12px;
  border: 1px solid var(--c-border);
  background: transparent;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 600;
  color: var(--c-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.bot-lang-btn:hover { border-color: var(--c-green); color: var(--c-green); }
.bot-lang-btn.bot-lang-active { background: var(--c-green); color: var(--c-white); border-color: var(--c-green); }

@media (max-width: 900px) {
  .bot-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bot-footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */

.bot-cart-drawer-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.bot-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,42,40,.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  pointer-events: none;
}

#bot-cart-drawer.bot-drawer-open .bot-drawer-overlay {
  opacity: 1;
  pointer-events: all;
}
#bot-cart-drawer.bot-drawer-open { pointer-events: all; }

.bot-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 95vw);
  height: 100%;
  background: var(--c-bg);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  box-shadow: -8px 0 60px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
#bot-cart-drawer.bot-drawer-open .bot-drawer-panel {
  transform: translateX(0);
}

.bot-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--c-border);
}
.bot-drawer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-green);
}
.bot-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.bot-drawer-close:hover { background: var(--c-sage); color: var(--c-green); }

.bot-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.bot-drawer-empty {
  text-align: center;
  color: var(--c-muted);
  font-size: .9rem;
  padding: 60px 0;
}

.bot-drawer-items { display: flex; flex-direction: column; gap: 16px; }

.bot-drawer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.bot-drawer-img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.bot-drawer-info { flex: 1; }
.bot-drawer-name { display: block; font-weight: 600; font-size: .88rem; color: var(--c-green); }
.bot-drawer-size { display: block; font-size: .75rem; color: var(--c-muted); margin-bottom: 8px; }
.bot-drawer-qty-row { display: flex; align-items: center; gap: 8px; }
.bot-drawer-qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--c-border);
  background: transparent;
  border-radius: var(--r-pill);
  color: var(--c-green);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.bot-drawer-qty-btn:hover { background: var(--c-sage); }
.bot-drawer-qty { font-size: .85rem; font-weight: 600; min-width: 16px; text-align: center; }
.bot-drawer-remove {
  margin-left: 4px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--c-muted);
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, background .15s;
}
.bot-drawer-remove:hover { color: #c0392b; background: #fdf2f2; }
.bot-drawer-price { font-weight: 700; font-size: .88rem; color: var(--c-green); white-space: nowrap; margin-left: auto; }

.bot-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bot-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: var(--c-muted);
}
.bot-drawer-subtotal strong { color: var(--c-green); font-size: 1rem; }
.bot-drawer-view-cart {
  text-align: center;
  font-size: .8rem;
  color: var(--c-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bot-drawer-view-cart:hover { color: var(--c-green); }

/* ============================================================
   TOAST
   ============================================================ */

#bot-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-green);
  color: var(--c-white);
  font-size: .85rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 32px rgba(51,73,59,.25);
  z-index: 3000;
  opacity: 0;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-spring);
  pointer-events: none;
  white-space: nowrap;
}
#bot-toast.bot-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.bot-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.bot-product-gallery {}
.bot-gallery-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-bg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.bot-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.bot-gallery-thumbs {
  display: flex;
  gap: 10px;
}
.bot-gallery-thumb {
  width: 72px;
  height: 88px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  flex-shrink: 0;
}
.bot-gallery-thumb.bot-active { border-color: var(--c-green); }
.bot-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.bot-product-info {}
.bot-product-breadcrumb {
  font-size: .75rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.bot-product-breadcrumb a { color: var(--c-green-lt); }

.bot-product-concerns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.bot-product-concern-chip {
  padding: 4px 12px;
  background: var(--c-sage);
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-green);
}

.bot-product-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--c-green);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.bot-product-short {
  font-size: .95rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.bot-product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-green);
  margin-bottom: 20px;
}

/* Size selector */
.bot-size-selector { margin-bottom: 20px; }
.bot-size-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-green);
  display: block;
  margin-bottom: 8px;
}
.bot-size-options { display: flex; gap: 8px; }
.bot-size-btn {
  padding: 8px 20px;
  border: 2px solid var(--c-border);
  background: var(--c-bg);
  border-radius: var(--r-pill);
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-muted);
  cursor: pointer;
  transition: all .2s;
}
.bot-size-btn.bot-active {
  border-color: var(--c-green);
  background: var(--c-green);
  color: var(--c-white);
}
.bot-size-btn:hover:not(.bot-active) { border-color: var(--c-green); color: var(--c-green); }

/* Ingredients chips */
.bot-product-ingr { margin-bottom: 20px; }
.bot-product-ingr-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 8px;
}
.bot-product-ingr-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.bot-product-ingr-chip {
  padding: 5px 12px;
  background: var(--c-blush);
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 600;
  color: var(--c-ink);
}

/* How to use */
.bot-how-to-use { margin-bottom: 20px; }
.bot-how-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.bot-how-tab {
  padding: 6px 16px;
  border: 1px solid var(--c-border);
  background: transparent;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--c-muted);
  transition: all .2s;
}
.bot-how-tab.bot-active { background: var(--c-green); color: var(--c-white); border-color: var(--c-green); }
.bot-how-panel { display: none; font-size: .85rem; color: var(--c-muted); line-height: 1.65; }
.bot-how-panel.bot-active { display: block; }

/* Skin type */
.bot-skin-type { margin-bottom: 20px; }
.bot-skin-type-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 6px;
  display: block;
}
.bot-skin-types { display: flex; flex-wrap: wrap; gap: 6px; }
.bot-skin-chip {
  padding: 4px 10px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: .73rem;
  color: var(--c-muted);
}

/* Quantity + add to cart */
.bot-add-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.bot-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--c-border);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.bot-qty-btn {
  width: 40px;
  height: 46px;
  border: none;
  background: transparent;
  color: var(--c-green);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .15s;
}
.bot-qty-btn:hover { background: var(--c-sage); }
.bot-qty-input {
  width: 46px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-green);
  -moz-appearance: textfield;
}
.bot-qty-input::-webkit-outer-spin-button,
.bot-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.bot-add-cart-btn {
  flex: 1;
  min-width: 180px;
}

/* INCI expandable */
.bot-inci-section { margin-top: 20px; }
.bot-inci-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-green);
  transition: background .2s;
}
.bot-inci-toggle:hover { background: var(--c-sage); }
.bot-inci-toggle-icon { transition: transform .3s; }
.bot-inci-toggle.bot-open .bot-inci-toggle-icon { transform: rotate(180deg); }
.bot-inci-list {
  font-size: .73rem;
  color: var(--c-muted);
  letter-spacing: .06em;
  font-variant: small-caps;
  line-height: 1.8;
  padding: 14px 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  display: none;
}
.bot-inci-list.bot-open { display: block; }

/* Pairs well with */
.bot-pairs-section { margin-top: 40px; }
.bot-pairs-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--c-green);
  margin-bottom: 16px;
}
.bot-pairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

@media (max-width: 768px) {
  .bot-product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: calc(var(--nav-h) + 20px);
  }
}

/* ============================================================
   CART PAGE
   ============================================================ */

.bot-cart-page { min-height: 60vh; }
.bot-cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.bot-cart-table { width: 100%; border-collapse: collapse; }
.bot-cart-table th {
  text-align: left;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 0 0 14px;
  border-bottom: 1px solid var(--c-border);
  font-weight: 700;
}
.bot-cart-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.bot-cart-product-cell { display: flex; align-items: center; gap: 14px; }
.bot-cart-product-img { width: 72px; height: 88px; object-fit: cover; border-radius: var(--r-md); flex-shrink: 0; }
.bot-cart-product-name { font-weight: 600; font-size: .9rem; color: var(--c-green); }
.bot-cart-product-size { font-size: .77rem; color: var(--c-muted); }
.bot-cart-summary {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.bot-cart-summary-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-green);
  margin-bottom: 18px;
}
.bot-cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--c-muted);
  padding: 6px 0;
}
.bot-cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-green);
  padding: 14px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--c-border);
}
.bot-cart-empty-msg {
  text-align: center;
  padding: 80px 24px;
  color: var(--c-muted);
}

@media (max-width: 768px) {
  .bot-cart-page-layout { grid-template-columns: 1fr; }
  .bot-cart-summary { position: static; }
}
@media (max-width: 480px) {
  .bot-cart-table th, .bot-cart-table td { font-size: .8rem; }
  .bot-cart-table td { padding: 14px 0; }
  .bot-cart-product-cell { gap: 10px; }
  .bot-cart-product-img { width: 52px; height: 64px; }
  .bot-cart-product-name { font-size: .82rem; }
  .bot-cart-page .bot-qty-control { transform: scale(.85); transform-origin: left center; }
}

/* ============================================================
   ABOUT / CONTACT / LEGAL PAGES
   ============================================================ */

.bot-page-header {
  padding: calc(var(--nav-h) + 60px) var(--gutter) 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.bot-page-header-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-green-lt);
  margin-bottom: 14px;
}
.bot-page-header-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-green);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.bot-page-header-sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.bot-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}
.bot-prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--c-green);
  margin: 36px 0 12px;
}
.bot-prose h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-green);
  margin: 24px 0 8px;
}
.bot-prose p { font-size: .92rem; color: #484846; line-height: 1.75; margin-bottom: 14px; }
.bot-prose ul { padding-left: 20px; margin-bottom: 14px; }
.bot-prose ul li { font-size: .92rem; color: #484846; line-height: 1.75; margin-bottom: 6px; list-style: disc; }
.bot-prose a { color: var(--c-green); text-decoration: underline; text-underline-offset: 2px; }
.bot-prose strong { color: var(--c-ink); }

/* About sections */
.bot-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  align-items: start;
}
.bot-about-block {}
.bot-about-block-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--c-green);
  margin-bottom: 12px;
  line-height: 1.3;
}
.bot-about-block p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.bot-about-img {
  border-radius: var(--r-xl);
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .bot-about-grid { grid-template-columns: 1fr; }
}

/* Contact form */
.bot-contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  align-items: start;
}
.bot-form { display: flex; flex-direction: column; gap: 16px; }
.bot-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bot-form-group { display: flex; flex-direction: column; gap: 6px; }
.bot-form-label { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--c-green); }
.bot-form-input, .bot-form-textarea, .bot-form-select {
  padding: 12px 18px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--c-white);
  font-size: .88rem;
  color: var(--c-ink);
  transition: border-color .2s;
  appearance: none;
}
.bot-form-input:focus, .bot-form-textarea:focus, .bot-form-select:focus {
  outline: none;
  border-color: var(--c-green);
}
.bot-form-textarea { resize: vertical; min-height: 120px; }
.bot-form-note { font-size: .75rem; color: var(--c-muted); }
.bot-contact-sidebar {}
.bot-contact-info-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
}
.bot-contact-info-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-green);
  margin-bottom: 16px;
}
.bot-contact-info-row { font-size: .85rem; color: var(--c-muted); line-height: 1.75; margin-bottom: 12px; }
.bot-contact-info-row strong { display: block; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--c-green); margin-bottom: 2px; }

@media (max-width: 768px) {
  .bot-contact-grid { grid-template-columns: 1fr; }
  .bot-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-SPECIFIC HELPERS
   ============================================================ */

.bot-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-green-lt);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s, gap .2s;
}
.bot-back-link:hover { color: var(--c-green); gap: 10px; }

.bot-breadcrumb {
  font-size: .75rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.bot-breadcrumb a { color: var(--c-green-lt); }
.bot-breadcrumb span { margin: 0 4px; }

.bot-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bot-tag-green { background: var(--c-sage); color: var(--c-green); }
.bot-tag-clay { background: var(--c-blush); color: #7a5c47; }

.bot-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 40px 0;
}

/* Stock indicator */
.bot-in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: #27ae60;
  margin-bottom: 12px;
}
.bot-in-stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Utility */
.bot-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.bot-text-center { text-align: center; }
.bot-mt-sm { margin-top: 8px; }
.bot-mt-md { margin-top: 20px; }
.bot-mt-lg { margin-top: 40px; }
.bot-mb-md { margin-bottom: 20px; }
.bot-mb-lg { margin-bottom: 40px; }
