/* =========================================
   NOSABO RAMEN — Global Styles
   ========================================= */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --red:        #c4222a;
  --yellow:     #f4af1b;
  --beige:      #ffe3ab;
  --beige-dark: #f5cf89;
  --beige-mid:  #fad796;
  --green:      #002c00;
  --green-light:#1a5c1a;
  --warm-off:   #fff5e4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-round:   'Nunito', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,44,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,44,0,0.14);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: #ffe3ab;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.02) 1px, transparent 1px),
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(45deg, rgba(139,69,19,0.01) 25%, transparent 25%, transparent 75%, rgba(139,69,19,0.01) 75%);
  background-size: 50px 50px, 80px 80px, 100px 100px;
  background-attachment: fixed;
  color: var(--green);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Grain texture overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-attachment: fixed;
}

/* ---- Typography ---- */
.t-display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.t-heading {
  font-family: var(--font-round);
  font-weight: 800;
  line-height: 1.2;
}
.t-label {
  font-family: var(--font-round);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.t-script {
  font-family: Georgia, var(--font-display);
  font-style: italic;
  font-weight: 700;
}

/* ---- Dotted Divider (brand element) ---- */
.dotted-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  color: var(--green);
  opacity: 0.45;
}
.dotted-divider::before,
.dotted-divider::after {
  content: '';
  flex: 1;
  border-top: 2px dotted currentColor;
}
.dotted-divider span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.divider-full {
  width: 100%;
  border: none;
  border-top: 2px dotted rgba(0,44,0,0.25);
  margin: 0;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
  background: inherit;
}
.section--sm {
  padding: 48px 0;
  background: inherit;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-round);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  padding: 18px 40px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255,85,46,0.35);
}
.btn--primary:hover {
  background: #a81e24;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196,34,42,0.45);
}
.btn--outline {
  background: transparent;
  color: #c4222a;
  border: 2px solid #c4222a;
  padding: 14px 32px;
  font-size: 0.9rem;
}
.btn--outline:hover {
  background: #c4222a;
  color: #fff;
}
.btn--yellow {
  background: #c4222a;
  color: #fff;
  padding: 16px 36px;
  font-size: 0.95rem;
}
.btn--yellow:hover {
  background: #a81e24;
  transform: translateY(-2px);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: 2px dotted rgba(0,44,0,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: var(--red); }
.nav__cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  background: rgba(0,44,0,0.07);
  border-radius: 50px;
  padding: 8px 16px;
  transition: all var(--transition);
}
.nav__cart-btn:hover { background: var(--green); color: var(--beige); }
.nav__cart-count {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--beige);
  border-top: 2px dotted rgba(0,44,0,0.15);
}
.nav__mobile a {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  border-bottom: 1px dotted rgba(0,44,0,0.12);
  transition: background var(--transition);
}
.nav__mobile a:hover { background: rgba(0,44,0,0.05); }
.nav__mobile.open { display: flex; }

/* --- Hero Layout --- */
.hero {
  padding: 0;
  background: var(--beige);
  margin: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 650px;
}

/* --- Product Images (Left) - Full Bleed --- */
.product-images {
  position: relative;
  background: linear-gradient(135deg, #b8143a 0%, #d91e3f 30%, #e8552a 70%, #ff7043 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.product-images__main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-images__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-images__thumbs {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
  z-index: 10;
}
.product-images__thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.product-images__thumb.active {
  border-color: var(--red);
  transform: scale(1.05);
}
.product-images__thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.product-images__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Product Info (Right) - Floating Card Panel --- */
.product-info {
  background: #fdecd5;
  padding: 62px 44px 40px;
  margin: 32px 32px 32px 0;
  border-radius: 12px;
  border: 1px solid rgba(0,44,0,0.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}
.product-info__title-stack {
  text-align: center;
  margin-bottom: 2px;
}
.product-info__arc-svg {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto -4px;
  overflow: visible;
}
.product-info__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.product-info__sub {
  font-family: var(--font-round);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--green);
  opacity: 0.52;
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}
.product-info__flavor {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 900;
  color: #c4222a;
  line-height: 1.04;
  display: block;
  letter-spacing: -0.01em;
  margin-top: 10px;
  margin-bottom: 0;
}
.product-info__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.96rem;
  color: #111111;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.product-info__tagline::before,
.product-info__tagline::after {
  content: '';
  flex: 1;
  border-top: 1.5px solid rgba(17,17,17,0.38);
  min-width: 18px;
}
.product-info__desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: #111111;
  margin-bottom: 14px;
}

/* Price */
.product-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.product-info__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}
.product-info__shipping {
  font-family: var(--font-round);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.55;
  letter-spacing: 0.04em;
  margin-top: -8px;
  margin-bottom: 4px;
}

/* Pack selector */
.pack-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pack-btn {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #c4222a;
  color: #fff;
  background: #c4222a;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: capitalize;
}
.pack-btn.active {
  background: #9e1a20;
  border-color: #9e1a20;
  box-shadow: 0 3px 12px rgba(196,34,42,0.35);
}
.pack-btn:hover:not(.active) {
  background: #a81e24;
  border-color: #a81e24;
}

/* Qty */
.qty-row {
  display: none;
}

/* CTA */
.product-info__cta {
  margin-bottom: 14px;
}
.btn--addcart {
  width: 100%;
  font-size: 0.95rem;
  padding: 14px 40px;
  border-radius: 50px;
  background: #c4222a;
  color: #fff;
  font-family: var(--font-round);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(196,34,42,0.35);
  transition: background var(--transition), box-shadow var(--transition);
}
.btn--addcart:hover,
.btn--addcart:active,
.btn--addcart:focus {
  background: #a81e24;
  box-shadow: 0 6px 20px rgba(196,34,42,0.45);
  outline: none;
}

/* Trust signals */
.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dotted rgba(0,44,0,0.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-item__icon { font-size: 0.9rem; }
.trust-item__text {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--green);
  line-height: 1.25;
}
.trust-item__text span {
  display: block;
  font-weight: 500;
  opacity: 0.7;
  font-family: var(--font-body);
  font-size: 0.6rem;
}


/* ============================================
   WHY NOSABO SECTION
   ============================================ */
.why-section {
  background: var(--beige-dark);
  padding: 48px 0;
  position: relative;
}
.why-section__header {
  text-align: center;
  margin-bottom: 32px;
}
.why-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  margin-top: 14px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.why-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.why-card {
  padding: 20px 20px;
  text-align: center;
  position: relative;
}
.why-card + .why-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 0;
  border-left: 2px dotted rgba(0,44,0,0.2);
}
.why-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  background: rgba(255, 248, 232, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 2px 10px rgba(0,44,0,0.09);
}
.why-card__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 6px;
}
.why-card__body {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--green);
  opacity: 0.75;
}
.why-card__body em {
  font-style: italic;
  color: var(--green);
  opacity: 1;
  font-weight: 600;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: 48px 0;
  background: var(--beige);
}
.reviews-section__header {
  text-align: center;
  margin-bottom: 28px;
}
.reviews-section__header .dotted-divider {
  opacity: 0.8;
  color: var(--green);
}
.reviews-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--green);
  margin-top: 12px;
}
.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.reviews-summary__stat {
  text-align: center;
}
.reviews-summary__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
}
.reviews-summary__label {
  font-size: 0.8rem;
  color: var(--green);
  opacity: 0.65;
  font-weight: 500;
}
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 4px;
}
.star { color: var(--yellow); font-size: 1.1rem; }
.star-sm { color: var(--yellow); font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--warm-off);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(0,44,0,0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
  overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__meta {}
.review-card__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green);
}
.review-card__verified {
  font-size: 0.72rem;
  color: var(--green-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card__body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--green);
  opacity: 0.8;
  font-style: italic;
}
.review-card__footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dotted rgba(0,44,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__date {
  font-size: 0.72rem;
  opacity: 0.5;
  color: var(--green);
}
.review-card__helpful {
  font-size: 0.72rem;
  opacity: 0.55;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   NEWSLETTER / FOOTER
   ============================================ */
.newsletter-section {
  background: var(--beige-mid);
  padding: 16px 0;
  text-align: center;
  border-top: 2px dotted rgba(0,44,0,0.2);
  border-bottom: 2px dotted rgba(0,44,0,0.2);
}
.newsletter-section__title {
  font-family: var(--font-round);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.4;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid rgba(0,44,0,0.2);
  background: rgba(255,255,255,0.4);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--green);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(0,44,0,0.45); }
.newsletter-form button {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.newsletter-form button:hover { background: #a81e24; }

.footer {
  background: var(--beige);
  padding: 28px 0 16px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer__nav-group {}
.footer__nav-label {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 8px;
}
.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__nav-links a {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  transition: color var(--transition);
}
.footer__nav-links a:hover { color: var(--red); }
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,44,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social a:hover {
  background: var(--green);
  color: var(--beige);
  transform: translateY(-2px);
}
.footer__wordmark {
  text-align: center;
  border-top: 2px dotted rgba(0,44,0,0.15);
  padding-top: 12px;
}
.footer__wordmark-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--green);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}
.footer__bottom {
  text-align: center;
  margin-top: 8px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: var(--green);
  opacity: 0.45;
}

/* ============================================
   WHOLESALE PAGE
   ============================================ */
.wholesale-hero {
  padding: 28px 0 36px;
  min-height: unset;
  display: flex;
  align-items: center;
}
.wholesale-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.wholesale-hero__content {}
.wholesale-hero__eyebrow {
  font-family: var(--font-round);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.wholesale-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.08;
  margin-bottom: 12px;
}
.wholesale-hero__sub {
  font-size: 0.95rem;
  color: var(--green);
  opacity: 0.72;
  line-height: 1.65;
  margin-bottom: 20px;
}
.wholesale-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wholesale-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wholesale-perk__icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.wholesale-perk__text {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
}
.wholesale-perk__text span {
  display: block;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* Form */
.wholesale-form-card {
  background: var(--warm-off);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,44,0,0.08);
}
.wholesale-form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 28px;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .form-group--full {
  grid-column: 1 / -1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,44,0,0.04);
  border: 2px solid rgba(0,44,0,0.14);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--green);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(0,44,0,0.06);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23002c00' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 8px;
  width: 100%;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.about-hero__eyebrow {
  font-family: var(--font-round);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.08;
  margin-bottom: 20px;
}
.about-hero__sub {
  font-size: 1.1rem;
  color: var(--green);
  opacity: 0.72;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-founder {
  padding: 80px 0;
  background: var(--warm-off);
  border-top: 2px dotted rgba(0,44,0,0.15);
  border-bottom: 2px dotted rgba(0,44,0,0.15);
}
.about-founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-founder__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige-mid);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-founder__img img { width: 100%; height: 100%; object-fit: cover; }
.about-founder__eyebrow {
  font-family: var(--font-round);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.about-founder__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.1;
}
.about-founder__body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--green);
  opacity: 0.8;
}
.about-founder__body p + p { margin-top: 16px; }

.about-mission {
  padding: 80px 0;
}
.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.about-mission__card {
  background: var(--warm-off);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,44,0,0.08);
}
.about-mission__card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.about-mission__card-title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 12px;
}
.about-mission__card-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--green);
  opacity: 0.75;
}

.about-values {
  padding: 80px 0;
  background: var(--green);
}
.about-values__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--beige);
  text-align: center;
  margin-bottom: 48px;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.about-values__item {
  padding: 40px;
  border: 1px solid rgba(255,227,171,0.1);
}
.about-values__item-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 8px;
}
.about-values__item-title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1rem;
  color: var(--beige);
  margin-bottom: 10px;
}
.about-values__item-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--beige);
  opacity: 0.65;
}

/* ============================================
   PLACEHOLDER IMAGE STYLES
   ============================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige-mid), var(--beige-dark));
  color: rgba(0,44,0,0.35);
  gap: 8px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  text-align: center;
  padding: 12px;
}
.img-placeholder span { font-size: 2rem; }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,44,0,0.35);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--warm-off);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 2px dotted rgba(0,44,0,0.15);
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green);
}
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,44,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  cursor: pointer;
  transition: all var(--transition);
}
.cart-drawer__close:hover { background: var(--red); color: #fff; }
.cart-drawer__body { flex: 1; padding: 24px; overflow-y: auto; }
.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--green);
  opacity: 0.5;
}
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
.cart-empty p { font-family: var(--font-round); font-weight: 700; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--beige);
  border-radius: 12px;
}
.cart-item__img {
  width: 60px; height: 60px;
  border-radius: 8px;
  background: var(--beige-mid);
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.cart-item__info { flex: 1; }
.cart-item__name { font-family: var(--font-round); font-weight: 800; font-size: 0.85rem; color: var(--green); }
.cart-item__variant { font-size: 0.75rem; color: var(--green); opacity: 0.55; }
.cart-item__price { font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--green); }
.cart-item__remove { font-size: 0.8rem; color: var(--red); cursor: pointer; font-weight: 700; }
.cart-drawer__footer {
  padding: 24px;
  border-top: 2px dotted rgba(0,44,0,0.15);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total__label { font-family: var(--font-round); font-weight: 700; color: var(--green); }
.cart-total__amount { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--green); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green);
  color: var(--beige);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 300;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .product-images { min-height: 400px; }
  .product-info { margin: 24px 24px 24px 0; padding: 44px 32px 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card + .why-card::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .wholesale-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-founder__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-mission__grid { grid-template-columns: 1fr 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; gap: 32px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .product-images { min-height: 320px; }
  .product-images__thumbs { bottom: 12px; left: 12px; gap: 8px; }
  .product-images__thumb { width: 65px; height: 85px; }
  .product-info { margin: 16px 16px 16px 0; padding: 36px 24px 28px; gap: 10px; }
  .product-info__brand { font-size: 1.4rem; }
  .product-info__flavor { font-size: 1.75rem; }
  .product-info__price { font-size: 1.6rem; }
  .pack-selector { gap: 10px; }
  .pack-btn { padding: 8px 16px; font-size: 0.7rem; }
  .btn--addcart { padding: 12px 32px; font-size: 0.85rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group--full { grid-column: 1; }
  .wholesale-form-card { padding: 28px 20px; }
  .trust-row { gap: 10px; }
  .trust-item__text { font-size: 0.6rem; }
  .footer__wordmark-text { font-size: clamp(3rem, 18vw, 6rem); }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-mission__grid { grid-template-columns: 1fr; }
  .value-item { padding: 28px 24px; }
}
