:root {
  --green-deep: #1C3A12;
  --green-mid: #2D5219;
  --green-light: #4A7A2C;
  --green-pale: #EBF3E0;
  --green-wash: #F4F8EE;
  --cream: #F7F2E8;
  --cream-dark: #EDE5D4;
  --gold: #8B6914;
  --gold-light: #C4A44E;
  --gold-pale: #FAF3E0;
  --text-dark: #1A2E10;
  --text-mid: #3D5530;
  --text-muted: #6B7F5E;
  --text-light: #A5B896;
  --border: #D4E0C4;
  --border-mid: #B8CDA0;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(28,58,18,0.06);
  --shadow-md: 0 4px 16px rgba(28,58,18,0.10);
  --shadow-lg: 0 8px 32px rgba(28,58,18,0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: "Work Sans", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --transition: 0.22s ease;
}

.hidden { display: none !important; }

/* ── LOCATION GATE ── */
.location-gate {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 13px;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.location-gate::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(28 58 18 / 50%);
	pointer-events: none;
}

.gate-leaf {
  position: absolute;
  width: 320px;
  height: 320px;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%23ffffff' d='M100 10 C140 10, 180 50, 180 100 C180 150, 100 190, 100 190 C100 190, 20 150, 20 100 C20 50, 60 10, 100 10Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.gate-leaf--left  { left: -80px; top: -60px; transform: rotate(-25deg); }
.gate-leaf--right { right: -80px; bottom: -60px; transform: rotate(155deg); }

.gate-inner {
  position: relative;
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.gate-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.gate-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 52px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}

.gate-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 40px;
}

.gate-form { margin-bottom: 32px; }

.gate-input-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  transition: border-color var(--transition);
}

.gate-input-wrap:focus-within {
  border-color: #e8f0e9;
  background: rgba(255,255,255,0.12);
}

.gate-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.gate-input::placeholder { color: rgba(255,255,255,0.35); }

.gate-btn {
	background-color: #e8f0e9;
	color: var(--gp);
	border: none;
	cursor: pointer;
	padding: 14px 24px;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	white-space: nowrap;
	transition: background var(--transition);
}

.gate-btn:hover { background-color: var(--gp); color: #fff; }

.gate-error {
  color: #F5A0A0;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
  text-align: left;
  padding-left: 4px;
}

.gate-or {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e8f0e9;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.gate-or::before, .gate-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8f0e9;
}

.gate-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gate-quick-btn {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.gate-quick-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(196,164,78,0.5);
  transform: translateY(-2px);
}

.gate-quick-icon { font-size: 24px; margin-bottom: 2px; }

.gate-quick-btn strong {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}

.gate-quick-btn span {
  display: block;
  color: #e8f0e9;
  font-size: 12px;
  line-height: 1.4;
}

/* ── ZONE BANNER ── */
.zone-banner {
  background: var(--green-mid);
  color: #fff;
  padding: 10px 13px;
}

.zone-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

#zone-banner-text { opacity: 0.85; }

.zone-change-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}

.zone-change-btn:hover { background: rgba(255,255,255,0.1); }

/* ── PAGE HERO ── */
.page-hero {
  background: #fafafa;
  padding: 72px 24px;
  text-align: center;
}

.page-hero-inner { max-width: 680px; margin: 0 auto; }

.hero-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #27723c;
	margin-bottom: 18px;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(44px, 7vw, 80px);
	font-weight: 500;
	color: var(--gp);
	line-height: 1.05;
	margin-bottom: 20px;
}

.hero-title em {
	font-style: italic;
	color: var(--char);
}

.hero-desc {
	font-size: 16px;
	color: var(--char);
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 15px;
  height: 15px;
  color: var(--green-light);
  flex-shrink: 0;
}

/* ── SHOP CONTENT ── */
.shop-content {
	padding: 56px 0 80px;
	background-color: #fff;
}

/* TYPE TABS */
.type-tabs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.type-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.type-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.type-tab.active {
  border-color: var(--green-light);
  background: var(--green-wash);
}

.type-tab.active::after { transform: scaleX(1); }

.type-tab:hover:not(.active) {
  border-color: var(--border-mid);
  transform: translateY(-1px);
}

.tab-label {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.tab-desc {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* DURATION FILTER */
.duration-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.duration-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dur-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.dur-btn:hover:not(.active) {
  border-color: var(--green-light);
  color: var(--green-mid);
}

.dur-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #FFFFFF;
}

/* NATIONAL NOTICE */
.national-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-pale);
  border: 1px solid #E8D49A;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #5C4A10;
  line-height: 1.55;
}

.national-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

.notice-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-mid);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--green-wash);
  overflow: hidden;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--green-light);
  text-align: center;
  padding: 20px;
}

.card-image-bottles {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.bottle {
  width: 28px;
  border-radius: 6px 6px 3px 3px;
  background: var(--green-mid);
  opacity: 0.7;
}

.bottle-sm  { height: 56px; }
.bottle-md  { height: 72px; }
.bottle-lg  { height: 88px; }

.bottle-alt { background: #4A7A2C; }

.card-placeholder-label {
  font-size: 15px;
  font-style: italic;
  color: var(--green-mid);
  line-height: 1.3;
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  line-height: 1;
}

.badge--bestseller { background: var(--green-deep); color: #FFFFFF; }
.badge--popular    { background: var(--gold-light); color: var(--green-deep); }
.badge--new        { background: #FFFFFF; color: var(--green-mid); border: 1px solid var(--green-mid); }
.badge--coming     { background: rgba(255,255,255,0.9); color: var(--text-muted); }

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

.card-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.card-title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 500;
	color: var(--gp);
	line-height: 1.2;
	margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.card-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.include-tag {
  font-size: 11px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 400;
}

.card-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

/* DURATION BUTTONS ON CARD */
.card-duration-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.card-dur-btn {
  flex: 1;
  min-width: 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.2;
}

.card-dur-btn span {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

.card-dur-btn.selected {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #FFFFFF;
}

.card-dur-btn.selected span { color: rgba(255,255,255,0.65); }

.card-dur-btn:hover:not(.selected) {
  border-color: var(--green-light);
  color: var(--green-mid);
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.card-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gp);
}

.card-price-sub {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.3;
  text-align: right;
}

.card-subscribe-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--green-mid);
}

.subscribe-badge {
	background: var(--gp);
	color: var(--white);
	font-size: 10px;
	font-weight: 500;
	padding: 2px 7px;
	border-radius: 100px;
	white-space: nowrap;
}

.card-atc-btn {
	width: 100%;
	background-color: var(--gp);
	color: var(--white);
	border: none;
	border-radius: var(--radius-md);
	padding: 13px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	letter-spacing: 0.04em;
	transition: background var(--transition), transform var(--transition);
}

.card-atc-btn:hover {
	background-color: #000;
	transform: translateY(-1px);
}

.card-atc-btn:active { transform: translateY(0); }

.card-atc-btn.coming-soon {
  background: var(--cream-dark);
  color: var(--text-muted);
  cursor: default;
}

.card-atc-btn.coming-soon:hover { background: var(--cream-dark); transform: none; }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 15px;
  grid-column: 1/-1;
}

/* ── HOW SECTION ── */
.how-section {
	background-color: var(--gp);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.how-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(74,122,44,0.2) 0%, transparent 70%);
	pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.how-section .section-eyebrow { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
}

.how-section .section-title { color: #FFFFFF; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}

.step-card:hover { background: rgba(255,255,255,0.09); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: rgba(196,164,78,.9);
  line-height: 1;
  margin-bottom: 14px;
}

.step-title {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.step-link { color: var(--gold-light); }

/* ── FAQ SECTION ── */
.faq-section {
  background: #e8f0e9;
  padding: 80px 0;
}

.faq-section .section-eyebrow { color: #27723c; }
.faq-section .section-title { color: var(--gp); }

.faq-list {
  max-width: 800px;
  margin: 0 auto 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #27723c;
  text-align: left;
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gp); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  background: transparent;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  background: var(--green-mid);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-chevron::before {
  width: 8px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-chevron::after {
  width: 1.5px; height: 8px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-chevron {
	background: var(--gp);
	border-color: var(--gp);
	transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-chevron::before,
.faq-question[aria-expanded="true"] .faq-chevron::after {
	background-color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 4px 24px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer strong { color: var(--text-mid); font-weight: 500; }

.faq-cta {
  text-align: center;
}

.faq-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.faq-contact-btn {
  display: inline-block;
  background-color: transparent;
  border: 1.5px solid var(--gp);
  color: var(--gp);
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}

.faq-contact-btn:hover {
  background: var(--gp);
  color: #fff;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 12px 16px; font-size: 10px; }
}

@media (max-width: 720px) {
  .type-tabs { gap: 8px; }
  .type-tab { padding: 12px; }

  .trust-strip { flex-wrap: wrap; justify-content: flex-start; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex: 1 1 100%;
    padding: 10px 9px;
  }
  .tab-label {
    font-size: 14px;
}
.tab-desc {
    font-size: 11px;
}
  .trust-item:last-child { border-bottom: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .card-body { padding: 14px; }
  .card-title { font-size: 18px; }
  .card-footer { padding-top: 12px; }
  .card-price { font-size: 22px; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }

  .gate-input-wrap { flex-direction: column; }
  .gate-btn { border-radius: 0; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .card-body { padding: 12px; }
  .card-desc { display: none; }
  .card-includes { display: none; }
  .card-subscribe-row { display: none; }

  .page-hero { padding-top: 44px; }
  .hero-desc { font-size: 14px; }
}

/* ── FADE-IN ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card {
  animation: fadeUp 0.35s ease both;
}
@media (max-width: 768px) {
	.location-gate {
		min-height: auto;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.gate-inner {
		max-width: 100%;
	}
	.gate-eyebrow {
		line-height: normal;
		margin-bottom: 6px;
	}
	.gate-sub {
		margin-bottom: 10px;
		line-height: normal;
		font-size: 14px;
	}
	.gate-form {
		margin-bottom: 10px;
	}
	.gate-input {
		padding: 12px;
		font-size: 13px;
	}
	.gate-btn {
		padding: 12px;
		font-size: 12px;
	}
	.gate-or {
		gap: 8px;
		font-size: 10px;
		margin-bottom: 8px;
	}
	.gate-quick {
        gap: 8px;
    }
	.gate-quick-btn {
		padding: 10px;
		gap: 3px;
	}
	.gate-quick-btn strong {
		font-size: 13px;
	}
	.gate-quick-btn span {
		font-size: 11px;
	}
	.zone-banner-inner {
		text-align: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	#zone-banner-text {
		font-size: 13px;
	}
	.page-hero {
		padding: 30px 13px;
	}
	.hero-eyebrow {
		line-height: 1.4;
		margin-bottom: 8px;
	}
	.hero-title {
		font-size: 32px;
		margin-bottom: 8px;
	}
	.hero-desc {
		max-width: 100%;
    }
	.trust-strip {
		margin-top: 12px;
	}
	.how-section {
		padding: 30px 0;
	}
	.section-header {
		margin-bottom: 16px;
	}
	.section-eyebrow {
		margin-bottom: 8px;
	}
	.section-title {
		font-size: 22px;
	}
	.step-card {
		padding: 12px 10px;
	}
	.step-num {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.step-title {
		font-size: 13px;
		margin-bottom: 6px;
	}
	.step-desc {
		font-size: 12px;
	}
	.faq-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.faq-question {
		padding-top: 12px;
		padding-bottom: 12px;
		font-size: 14px;
	}
	.faq-answer {
		padding-bottom: 12px;
	}
	.faq-answer p {
		font-size: 13px;
		margin-bottom: 9px;
	}
	.faq-list {
		max-width: 100%;
		margin-bottom: 18px;
	}
	.faq-cta p {
		font-size: 14px;
		margin-bottom: 8px;
	}
	.faq-contact-btn {
		padding: 8px 16px;
		font-size: 13px;
	}
	.shop-content {
		padding: 30px 0;
	}
	.type-tabs {
        margin-bottom: 10px;
    }
	.card-title {
        font-size: 14px;
    }
	.card-price-row {
		flex-wrap: wrap;
		margin-bottom: 8px;
		gap: 8px;
	}
	.card-price {
        font-size: 16px;
    }
	.card-atc-btn {
		padding: 10px;
		font-size: 12px;
	}
}
@media (max-width: 375px) {
	.type-tabs {
		grid-template-columns: repeat(1, 1fr);
	}
}