﻿/* Public storefront — immersive botanical glass system.
   Scoped to body.public-page so dashboard/admin/auth stay unchanged. */

body.public-page:not(.ops-app) {
  position: relative;
  isolation: isolate;
  background-color: #0e1c16;
  background-image: none;
  color: #f4f7f0;
}

body.public-page .botanical-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body.public-page .botanical-background__tree {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/verdiqe-forest-falls.jpg") center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.05);
  transform: none;
}

body.public-page .botanical-background__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 16, 0.42) 0%, rgba(8, 22, 16, 0.28) 38%, rgba(8, 22, 16, 0.55) 100%),
    radial-gradient(ellipse at 70% 18%, rgba(12, 40, 36, 0.18), transparent 46%);
}

body[data-page="shop"] .botanical-background__tree,
body[data-page="product-detail"] .botanical-background__tree,
body[data-page="blog"] .botanical-background__tree,
body[data-page="article-detail"] .botanical-background__tree,
body[data-page="privacy-policy"] .botanical-background__tree,
body[data-page="terms-of-use"] .botanical-background__tree,
body[data-page="return-policy"] .botanical-background__tree,
body[data-page="cart"] .botanical-background__tree,
body[data-page="checkout"] .botanical-background__tree,
body[data-page="order-tracking"] .botanical-background__tree,
body[data-page="account"] .botanical-background__tree {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: saturate(1);
  background-position: center;
}

body[data-page="checkout"] .botanical-background__veil,
body[data-page="cart"] .botanical-background__veil,
body[data-page="account"] .botanical-background__veil,
body[data-page="order-tracking"] .botanical-background__veil {
  background: linear-gradient(180deg, rgba(8, 22, 16, 0.58), rgba(8, 22, 16, 0.62));
}

body.public-page > header.storefront-header {
  position: sticky;
  top: 0;
  z-index: 80;
  isolation: isolate;
  min-height: 4.35rem;
  background: rgba(12, 28, 22, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(8, 22, 16, 0.28);
}

body.public-page > main.storefront-main {
  position: relative;
  z-index: 1;
}

body.public-page > footer.storefront-footer {
  position: relative;
  z-index: 2;
}

body.public-page .storefront-header-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0.35rem max(0.85rem, env(safe-area-inset-right)) 0.3rem max(0.4rem, env(safe-area-inset-left));
  gap: 0;
}

body.public-page .storefront-header-bar {
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
}

body.public-page .storefront-nav-left {
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
}

body.public-page .storefront-brand-block {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

body.public-page header .storefront-tagline {
  display: none;
}

body.public-page header .storefront-logo-link,
body.public-page header .storefront-logo-frame {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
}

body.public-page header .storefront-logo-frame {
  width: auto;
  max-width: min(12.75rem, calc(100vw - 7.5rem));
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #fdfcf8;
  border-radius: 0.7rem;
  padding: 0.12rem 0.32rem;
  box-shadow: 0 6px 18px rgba(8, 22, 16, 0.22);
}

body.public-page header .storefront-logo,
body.public-page header .storefront-logo-frame .storefront-logo {
  width: auto;
  max-width: 100%;
  height: 2.45rem;
  max-height: 2.45rem;
  object-fit: contain;
  object-position: center;
}

body.public-page .mobile-nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.45rem;
  border-radius: 0.7rem;
  background: #fdfcf8;
}

body.public-page .mobile-nav-brand .storefront-logo {
  height: 2.1rem;
  max-height: 2.1rem;
  max-width: 11rem;
}

body.public-page .storefront-tagline,
body.public-page header nav a,
body.public-page header button,
body.public-page .follow-heading,
body.public-page footer,
body.public-page footer a,
body.public-page footer p {
  color: #f4f7f0;
}

body.public-page .storefront-range-bar {
  background: rgba(198, 217, 106, 0.22);
  color: #f4f7f0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.public-page .storefront-range-bar a:hover {
  color: #c6d96a;
}

body.public-page > footer.storefront-footer {
  background: rgba(10, 24, 18, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: #f4f7f0;
}

body.public-page .social-icon-badge,
body.public-page .social-icon-button,
body.public-page .social-icon-link {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #f4f7f0;
}

body.public-page .social-icon-badge:hover,
body.public-page .social-icon-button:hover,
body.public-page .social-icon-link:hover {
  background: rgba(198, 217, 106, 0.28);
  color: #f4f7f0;
}

body.public-page .mobile-nav-panel {
  background: rgba(16, 36, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4f7f0;
}

body.public-page header .mobile-nav-panel.glass-card {
  background: rgba(253, 252, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #1b3022;
  box-shadow: 0 16px 36px rgba(8, 22, 16, 0.28);
}

body.public-page header nav a.mobile-nav-link,
body.public-page header button.mobile-nav-link {
  background: #1b3022;
  color: #fdfcf8;
}

body.public-page header nav a.mobile-nav-link:hover,
body.public-page header button.mobile-nav-link:hover {
  background: #2a4a36;
  color: #fdfcf8;
}

body.public-page .mobile-nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.45rem;
  border-radius: 0.7rem;
  background: #fdfcf8;
}

body.public-page .mobile-nav-brand .storefront-logo {
  height: 2.1rem;
  max-height: 2.1rem;
  max-width: 11rem;
}

body.public-page main.storefront-main {
  isolation: isolate;
  overflow-x: clip;
  min-height: 60vh;
  color: #f4f7f0;
  font-family: "Hanken Grotesk", "Montserrat", sans-serif;
  background: transparent;
}

body.public-page .storefront-main-inner {
  position: relative;
  z-index: 1;
}

body.public-page .text-on-surface,
body.public-page .text-on-surface-variant {
  color: rgba(244, 247, 240, 0.9);
}

body.public-page .text-secondary {
  color: #c6d96a;
}

body.public-page main .page-shell {
  gap: 1.5rem;
  padding: 1.5rem 1rem 1.7rem;
  margin-bottom: 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(8, 22, 16, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  body.public-page main .page-shell {
    gap: 1.75rem;
    padding: 1.75rem 2rem 2rem;
  }
}

body.public-page[data-page="home"] main .home-intro {
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.public-page main .section-title {
  font-family: "Hanken Grotesk", "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
  color: #f4f7f0;
}

body.public-page main .section-subtitle {
  color: #c6d96a;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

body.public-page main .font-display {
  font-family: "EB Garamond", "Playfair Display", serif;
  font-weight: 500;
  color: #f4f7f0;
}

body.public-page .glass-card,
body.public-page .glass-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.35rem;
  box-shadow: 0 16px 36px rgba(8, 22, 16, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.public-page main .empty-state {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(244, 247, 240, 0.86);
  grid-column: 1 / -1;
}

body.public-page main .input-field,
body.public-page main .textarea-field,
body.public-page main .select-field {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(253, 252, 248, 0.92);
  color: #12261a;
}

body.public-page main .input-field:focus,
body.public-page main .textarea-field:focus,
body.public-page main .select-field:focus {
  border-color: #c6d96a;
  box-shadow: 0 0 0 3px rgba(198, 217, 106, 0.28);
}

body.public-page .button-primary {
  border-radius: 9999px;
  background: #c6d96a;
  color: #12261a;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 20px rgba(198, 217, 106, 0.22);
}

body.public-page .button-primary:hover {
  filter: none;
  background: #d4e47c;
  transform: translateY(-1px);
}

body.public-page .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7f0;
  box-shadow: none;
}

body.public-page .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

body.public-page main .skin-chip,
body.public-page main .provider-chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(198, 217, 106, 0.18);
  color: #f4f7f0;
  letter-spacing: 0.14em;
}

body.public-page .button-primary:focus-visible,
body.public-page .button-secondary:focus-visible,
body.public-page main .input-field:focus-visible,
body.public-page main .select-field:focus-visible,
body.public-page main a:focus-visible,
body.public-page main .filter-chip:focus-visible,
body.public-page main .qty-stepper button:focus-visible {
  outline: 2px solid #c6d96a;
  outline-offset: 3px;
}

body.public-page main .hero-botanical {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.public-page main .hero-botanical-copy {
  gap: 1rem;
  padding: 0.2rem 0 0.4rem;
}

body.public-page main .hero-botanical-copy h1 {
  font-family: "Hanken Grotesk", "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #f4f7f0;
  max-width: 12ch;
}

body.public-page main .hero-accent {
  color: #c6d96a;
}

body.public-page main .hero-kicker {
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 247, 240, 0.86);
}

body.public-page main .hero-botanical-art {
  min-height: 0;
  padding: 0;
}

body.public-page main .hero-product-shot {
  width: min(100%, 28rem);
  max-height: 22rem;
  filter: drop-shadow(0 18px 28px rgba(8, 22, 16, 0.35));
}

body.public-page main .hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

body.public-page main .hero-badges .value-icon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  text-align: left;
}

body.public-page main .value-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-color: rgba(198, 217, 106, 0.8);
  color: #c6d96a;
}

body.public-page main .hero-badges p,
body.public-page main .value-icon-item p {
  max-width: none;
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f7f0;
}

@media (min-width: 1024px) {
  body.public-page main .hero-botanical {
    grid-template-columns: 1.05fr 0.95fr 0.42fr;
    align-items: center;
    min-height: 0;
  }

  body.public-page main .hero-botanical-copy {
    padding: 0.4rem 1rem 0.4rem 0;
  }

  body.public-page main .hero-badges {
    grid-template-columns: 1fr;
  }
}

body.public-page main .handmade-banner {
  width: min(100%, 22rem);
  background: #c6d96a;
  color: #12261a;
  letter-spacing: 0.26em;
  clip-path: none;
  border-radius: 9999px;
  padding: 0.65rem 1.3rem;
}

body.public-page main .benefits-bar {
  width: min(100%, 46rem);
  background: rgba(255, 255, 255, 0.12);
  color: #f4f7f0;
  font-family: "EB Garamond", serif;
  font-style: italic;
  clip-path: none;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

body.public-page main .clay-banner {
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  background: rgba(198, 217, 106, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4f7f0;
}

body.public-page main .section-intro {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 247, 240, 0.84);
}

body.public-page .section-heading {
  text-align: center;
  margin-inline: auto;
}

body.public-page .section-heading .section-intro {
  margin-inline: auto;
}

body.public-page .collection-grid {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

body.public-page .collection-tile {
  display: flex;
  flex: 0 0 8.25rem;
  min-height: 7.25rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem 0.8rem;
  border-radius: 1rem;
  color: #f4f7f0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  scroll-snap-align: start;
  transition: transform 280ms ease, background 280ms ease;
}

body.public-page .collection-tile h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

body.public-page .collection-tile p {
  display: none;
}

body.public-page .collection-tile .collection-meta {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .collection-tile:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

body.public-page .collection-tile:nth-child(odd),
body.public-page .collection-tile:nth-child(3n) {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1100px) {
  body.public-page .collection-grid {
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  body.public-page .collection-tile {
    flex: 1 1 0;
    min-width: 0;
    min-height: 7.5rem;
  }
}

body.public-page .product-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  body.public-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

@media (min-width: 1280px) {
  body.public-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.public-page .product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 0.75rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

body.public-page .product-card-media {
  overflow: hidden;
  border-radius: 0.95rem;
  background: rgba(8, 22, 16, 0.25);
}

body.public-page .product-card-media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

body.public-page .product-card:hover .product-card-media img {
  transform: scale(1.03);
}

body.public-page .product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.95rem 0.2rem 0.25rem;
}

body.public-page .product-card-body h3 {
  font-family: "EB Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #f4f7f0;
}

body.public-page .product-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

body.public-page .product-card-body .product-subtitle {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(244, 247, 240, 0.72);
}

body.public-page .product-card-body .product-price,
body.public-page .pdp-price,
body.public-page .cart-row .product-price {
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c6d96a;
}

body.public-page .product-card-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

body.public-page .product-card-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 247, 240, 0.78);
}

body.public-page .product-card-link:hover {
  color: #c6d96a;
}

body.public-page .pdp-layout {
  display: grid;
  gap: 2.2rem;
}

@media (min-width: 1024px) {
  body.public-page .pdp-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 3rem;
    align-items: start;
  }
}

body.public-page .pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.public-page .pdp-gallery-main {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
}

body.public-page .pdp-gallery-main img,
body.public-page .pdp-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

body.public-page .pdp-gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

body.public-page .pdp-gallery-thumbs button {
  flex: 0 0 4.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

body.public-page .pdp-gallery-thumbs button.is-active {
  border-color: #c6d96a;
}

body.public-page .pdp-gallery-thumbs img {
  width: 4.4rem;
  height: 5.4rem;
  object-fit: cover;
}

body.public-page .pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 22, 16, 0.78);
}

body.public-page .pdp-lightbox.is-open {
  display: flex;
}

body.public-page .pdp-lightbox figure {
  position: relative;
  max-width: min(92vw, 52rem);
  margin: 0;
}

body.public-page .pdp-lightbox img {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.8rem;
  background: #12261a;
}

body.public-page .pdp-lightbox figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
  color: #f4f7f0;
}

body.public-page .pdp-lightbox-close,
body.public-page .pdp-lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(198, 217, 106, 0.95);
  color: #12261a;
  cursor: pointer;
}

body.public-page .pdp-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 2;
}

body.public-page .pdp-lightbox-nav {
  top: 50%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9999px;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

body.public-page .pdp-lightbox-prev {
  left: 1rem;
}

body.public-page .pdp-lightbox-next {
  right: 1rem;
}

body.public-page .pdp-copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.1rem 0 0.2rem;
}

body.public-page .pdp-copy h1 {
  font-family: "EB Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: none;
  color: #f4f7f0;
}

body.public-page .pdp-kicker,
body.public-page .checkout-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .pdp-compare {
  margin-left: 0.75rem;
  color: rgba(244, 247, 240, 0.55);
  text-decoration: line-through;
}

body.public-page .pdp-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

body.public-page .pdp-qty label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .pdp-qty input {
  width: 4.2rem;
  text-align: center;
}

body.public-page .pdp-blurb,
body.public-page .pdp-story p,
body.public-page .pdp-panel p,
body.public-page .article-body,
body.public-page .legal-panel {
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(244, 247, 240, 0.86);
}

body.public-page .pdp-story,
body.public-page .pdp-panel {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body.public-page .pdp-panel h2,
body.public-page .pdp-story h2 {
  font-family: "EB Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #f4f7f0;
}

body.public-page .ingredient-list {
  display: grid;
  gap: 0.85rem;
}

body.public-page .ingredient-list strong {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 0.2rem 0 0.4rem;
}

body.public-page .shop-toolbar-block p,
body.public-page .shop-price-form p,
body.public-page .shop-sort-block label {
  margin-bottom: 0.7rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .shop-toolbar-row {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 900px) {
  body.public-page .shop-toolbar-row {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: end;
  }
}

body.public-page .shop-price-input {
  width: 7.5rem;
}

body.public-page .shop-price-rule {
  display: inline-block;
  width: 0.9rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

body.public-page .filter-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7f0;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.public-page .filter-chip:hover {
  background: rgba(255, 255, 255, 0.16);
}

body.public-page .filter-chip.is-active {
  background: #c6d96a;
  border-color: #c6d96a;
  color: #12261a;
}

body.public-page .shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

body.public-page .journal-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  body.public-page .journal-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
  }

  body.public-page .journal-grid .journal-card:first-child {
    grid-row: span 2;
  }
}

body.public-page .journal-card {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border-radius: 1.2rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 280ms ease, background 280ms ease;
}

body.public-page .journal-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

body.public-page .journal-card h2,
body.public-page .journal-card h3 {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: #f4f7f0;
}

body.public-page .journal-card p {
  margin-top: 0.7rem;
  color: rgba(244, 247, 240, 0.8);
  line-height: 1.6;
}

body.public-page .journal-meta {
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .article-hero {
  overflow: hidden;
  border-radius: 1.2rem;
}

body.public-page .article-hero img {
  aspect-ratio: 16 / 8;
  width: 100%;
  object-fit: cover;
}

body.public-page .legal-shell {
  max-width: 42rem;
}

body.public-page .cart-layout,
body.public-page .checkout-layout {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 1024px) {
  body.public-page .cart-layout {
    grid-template-columns: 1.45fr 0.85fr;
    gap: 2rem;
    align-items: start;
  }

  body.public-page .checkout-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
  }
}

body.public-page .cart-summary {
  padding: 1.2rem;
}

@media (min-width: 1024px) {
  body.public-page .cart-summary {
    padding: 1.4rem 1.5rem;
    border-top: 0;
    position: sticky;
    top: 6.5rem;
  }
}

body.public-page .cart-row {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.1rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.2rem;
  background: rgba(16, 36, 28, 0.42);
}

@media (min-width: 768px) {
  body.public-page .cart-row {
    flex-direction: row;
    align-items: center;
  }
}

body.public-page .cart-row-media,
body.public-page .cart-row img {
  width: 7.5rem;
  height: 9rem;
  flex-shrink: 0;
  border-radius: 0.9rem;
  object-fit: cover;
}

body.public-page .cart-row-copy {
  flex: 1;
  min-width: 0;
}

body.public-page .cart-row h2,
body.public-page .cart-row h2 a {
  font-family: "EB Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #f4f7f0;
}

body.public-page .cart-row-meta {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 247, 240, 0.62);
}

body.public-page .cart-row-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

body.public-page .cart-row-line {
  min-width: 6.5rem;
  font-weight: 700;
  color: #c6d96a;
}

body.public-page .commerce-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.4rem;
  background: rgba(16, 36, 28, 0.42);
}

body.public-page .commerce-empty.hidden,
body.public-page .cart-layout.hidden,
body.public-page .checkout-layout.hidden {
  display: none;
}

body.public-page .commerce-note {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(244, 247, 240, 0.72);
}

body.public-page .commerce-back {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .commerce-error {
  border-radius: 0.95rem;
  border: 1px solid rgba(232, 164, 140, 0.55);
  background: rgba(120, 42, 28, 0.35);
  color: #f4f7f0;
  padding: 0.8rem 0.95rem;
  font-size: 0.9rem;
}

body.public-page .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

body.public-page .field-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c6d96a;
}

body.public-page .field-label em {
  font-style: normal;
  color: #e8c96a;
}

body.public-page .field-hint {
  font-size: 0.78rem;
  color: rgba(244, 247, 240, 0.62);
}

body.public-page .vq-flash {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 36, 28, 0.94);
  color: #f4f7f0;
}

body.public-page .vq-flash-success {
  border-color: rgba(198, 217, 106, 0.45);
  background: rgba(18, 40, 30, 0.96);
}

body.public-page .vq-flash-error {
  border-color: rgba(232, 164, 140, 0.5);
  background: rgba(48, 22, 18, 0.96);
}

body[data-page="cart"] main .glass-card,
body[data-page="checkout"] main .glass-card,
body[data-page="order-tracking"] main .glass-card,
body[data-page="account"] main .glass-card {
  background: rgba(16, 36, 28, 0.45);
}

body.public-page .cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  color: #f4f7f0;
}

body.public-page .qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9999px;
  padding: 0.2rem 0.45rem;
}

body.public-page .qty-stepper button {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #f4f7f0;
  font-size: 1.1rem;
}

body.public-page #account-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

body.public-page .status-note {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body.public-page .checkout-totals {
  padding-top: 1rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 640px) {
  body.public-page .storefront-header-bar {
    min-height: 2.9rem;
  }

  body.public-page .storefront-logo {
    width: auto;
    height: 2.15rem;
    max-height: 2.15rem;
    max-width: min(11.25rem, 52vw);
  }
}

@media (max-width: 767px) {
  body.public-page .botanical-background__tree {
    opacity: 1;
    width: 100%;
    inset: 0;
    filter: saturate(1);
  }

  body.public-page main .page-shell {
    gap: 1.2rem;
    padding: 1.15rem 0.9rem 1.35rem;
  }

  body.public-page main .hero-botanical-copy h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .botanical-background__tree {
    animation: botanical-drift 48s ease-in-out infinite alternate;
  }
}

@keyframes botanical-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(1.2%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .botanical-background__tree,
  body.public-page .collection-tile,
  body.public-page .product-card-media img,
  body.public-page .journal-card,
  body.public-page .button-primary,
  body.public-page .button-secondary,
  body.public-page main .page-shell {
    animation: none;
    transition: none;
  }

  body.public-page .product-card:hover .product-card-media img,
  body.public-page .collection-tile:hover,
  body.public-page .journal-card:hover {
    transform: none;
  }
}

