:root {
  --bg: #faf7f4;
  --bg-warm: #f5ede6;
  --rose: #c4716a;
  --rose-light: #e8c5c1;
  --rose-deep: #9e4f49;
  --charcoal: #1a1714;
  --charcoal-light: #3d3832;
  --warm-grey: #7a7167;
  --off-white: #fdfaf8;
  --border: #e8ddd6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,113,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,113,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 700px;
}
.hero-lede {
  font-size: 18px;
  color: var(--charcoal-light);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-ingredient-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-ingredient-list span {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-light);
  flex-shrink: 0;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--charcoal);
  padding: 100px 8vw;
}
.manifesto-inner {
  max-width: 780px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--off-white);
  line-height: 1.5;
  font-weight: 400;
}

/* ── NICHES ── */
.niches {
  background: var(--bg);
  padding: 100px 8vw;
}
.niches-header {
  margin-bottom: 64px;
  max-width: 540px;
}
.niches-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.niches-header p {
  font-size: 16px;
  color: var(--warm-grey);
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.niche-card {
  padding: 48px 40px;
  position: relative;
}
.niche-card--clean { background: var(--off-white); }
.niche-card--kbeauty { background: var(--bg-warm); }
.niche-card--premium { background: #f0e8e3; }
.niche-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.niche-card h3 {
  font-size: 26px;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.niche-card p {
  font-size: 14px;
  color: var(--charcoal-light);
  margin-bottom: 28px;
  line-height: 1.65;
}
.niche-card ul {
  list-style: none;
}
.niche-card ul li {
  font-size: 13px;
  color: var(--warm-grey);
  padding: 4px 0;
  border-top: 1px solid var(--border);
}

/* ── PRICING ── */
.pricing {
  background: var(--off-white);
  padding: 100px 8vw;
}
.pricing-inner { max-width: 820px; }
.pricing-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.pricing h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--warm-grey);
  margin-bottom: 64px;
}
.pricing-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--rose-light);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}
.step-content h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.65;
}

/* ── PROOF ── */
.proof {
  background: var(--rose-deep);
  padding: 80px 8vw;
}
.proof-inner { max-width: 1100px; }
.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proof-item {}
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--off-white);
  font-weight: 600;
  margin-bottom: 8px;
}
.proof-label {
  font-size: 12px;
  color: rgba(253,250,248,0.65);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-warm);
  padding: 100px 8vw;
}
.closing-inner { max-width: 820px; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--charcoal);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 48px 8vw;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--off-white);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(253,250,248,0.5);
}
.footer-note {
  font-size: 12px;
  color: rgba(253,250,248,0.35);
}

/* ── STORE NAV ── */
.store-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0 6vw; height: 64px;
  display: flex; align-items: center; gap: 32px;
}
.store-logo {
  font-family: 'Playfair Display', serif; font-size: 22px;
  color: var(--charcoal); text-decoration: none; flex-shrink: 0;
}
.store-nav-links { display: flex; gap: 24px; flex: 1; }
.store-nav-links a {
  font-size: 13px; font-weight: 500; color: var(--charcoal-light);
  text-decoration: none; letter-spacing: 0.02em;
}
.store-nav-links a:hover { color: var(--rose); }
.cart-link { position: relative; font-size: 22px; text-decoration: none; margin-left: auto; display: flex; align-items: center; gap: 6px; }
.cart-badge {
  position: absolute; top: -8px; right: -12px;
  background: var(--rose); color: white;
  font-size: 11px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}

/* ── SHOP PAGE ── */
.store-page { max-width: 1100px; margin: 0 auto; padding: 48px 6vw 100px; }
.shop-header { margin-bottom: 40px; }
.shop-header h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.shop-header p { font-size: 16px; color: var(--warm-grey); }
.shop-hero-banner {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #f0e6de 100%);
  border-radius: 16px; padding: 40px 48px; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.shop-hero-banner h2 { font-size: 24px; margin-bottom: 8px; }
.shop-hero-banner p { font-size: 14px; color: var(--warm-grey); }
.shop-hero-cta {
  display: inline-block; background: var(--charcoal); color: white;
  padding: 12px 28px; border-radius: 8px; font-size: 14px;
  font-weight: 500; text-decoration: none; flex-shrink: 0;
  transition: background 0.2s;
}
.shop-hero-cta:hover { background: var(--rose); }
.category-tabs {
  display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
}
.category-tab {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--border);
  color: var(--charcoal-light); background: transparent; transition: all 0.15s;
}
.category-tab:hover { border-color: var(--charcoal-light); color: var(--charcoal); }
.category-tab.active { background: var(--charcoal); color: white; border-color: var(--charcoal); }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(196,113,106,0.12); }
.product-image {
  width: 100%; aspect-ratio: 1; position: relative; overflow: hidden;
  background: var(--bg-warm); display: flex; align-items: center; justify-content: center;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image-placeholder { font-size: 48px; opacity: 0.25; }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--rose); color: white; font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 100px;
}
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-category { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); }
.product-name { font-size: 16px; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.product-tagline { font-size: 13px; color: var(--warm-grey); flex: 1; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.product-price { font-size: 18px; font-weight: 600; color: var(--charcoal); }
.product-compare { font-size: 14px; color: var(--warm-grey); text-decoration: line-through; }

/* ── PRODUCT DETAIL ── */
.product-detail {
  max-width: 1100px; margin: 0 auto; padding: 48px 6vw 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.product-gallery {
  width: 100%; aspect-ratio: 1; border-radius: 20px; overflow: hidden;
  background: var(--bg-warm); display: flex; align-items: center; justify-content: center;
}
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { position: sticky; top: 80px; }
.product-detail-info h1 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.product-detail-tagline { font-size: 16px; color: var(--warm-grey); margin-bottom: 20px; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price-current { font-size: 28px; font-weight: 700; color: var(--charcoal); }
.price-compare { font-size: 18px; color: var(--warm-grey); text-decoration: line-through; }
.price-badge { background: rgba(196,113,106,0.1); color: var(--rose); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.product-detail-desc { font-size: 15px; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 28px; }
.product-detail-section { margin-bottom: 28px; }
.product-detail-section h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.product-detail-section ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.product-detail-section ul li {
  font-size: 12px; background: var(--bg); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 100px; color: var(--charcoal-light);
}
.product-detail-section p { font-size: 14px; color: var(--charcoal-light); line-height: 1.7; }
.add-to-cart-form { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.qty-select {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; background: white; color: var(--charcoal); cursor: pointer;
  appearance: none; padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7167' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.btn-primary {
  flex: 1; background: var(--charcoal); color: white; border: none;
  padding: 14px 24px; border-radius: 8px; font-size: 15px;
  font-weight: 500; cursor: pointer; text-align: center; transition: background 0.2s;
}
.btn-primary:hover { background: var(--rose); }

/* ── CART PAGE ── */
.cart-page { max-width: 900px; margin: 0 auto; padding: 48px 6vw 100px; }
.cart-page > h1 { font-size: 32px; margin-bottom: 36px; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty h2 { font-size: 24px; margin-bottom: 12px; }
.cart-empty p { color: var(--warm-grey); margin-bottom: 28px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.cart-item {
  display: flex; align-items: center; gap: 20px;
  background: white; border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.cart-item-image img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.cart-item-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--warm-grey); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--rose-light); }
.qty-val { min-width: 24px; text-align: center; font-size: 15px; font-weight: 600; }
.remove-btn { color: var(--warm-grey); text-decoration: none; font-size: 13px; }
.remove-btn:hover { color: var(--rose-deep); }
.cart-summary { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.cart-summary h3 { font-size: 18px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 15px; color: var(--charcoal-light); border-bottom: 1px solid var(--border); }
.summary-row.total { font-weight: 700; font-size: 17px; color: var(--charcoal); border-bottom: none; padding-top: 16px; }
.cart-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn-checkout {
  display: block; text-align: center; background: var(--charcoal); color: white;
  padding: 16px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.btn-checkout:hover { background: var(--rose); }
.btn-secondary {
  display: block; text-align: center; padding: 14px; border-radius: 8px;
  font-size: 14px; border: 1px solid var(--border); color: var(--charcoal-light);
  text-decoration: none; transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--charcoal-light); color: var(--charcoal); }

/* ── CHECKOUT PAGE ── */
.checkout-page { max-width: 1000px; margin: 0 auto; padding: 48px 6vw 100px; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.checkout-form h1, .order-summary h3 { font-size: 28px; margin-bottom: 28px; }
.form-section { margin-bottom: 32px; }
.form-section h3 { font-size: 16px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--charcoal); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--charcoal); background: white; outline: none; transition: border-color 0.15s;
}
.form-field input:focus, .form-field select:focus { border-color: var(--rose); }
.form-field .full { width: 100%; }
.setup-notice {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 8px;
  padding: 16px; margin-bottom: 20px; font-size: 14px; color: #92400e;
}
.btn-pay {
  width: 100%; background: var(--charcoal); color: white; border: none;
  padding: 16px; border-radius: 8px; font-size: 16px; font-weight: 600;
  cursor: pointer; margin-top: 8px; transition: background 0.2s;
}
.btn-pay:hover { background: var(--rose); }
.stripe-note { text-align: center; font-size: 12px; color: var(--warm-grey); margin-top: 12px; }
.order-summary {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; position: sticky; top: 80px;
}
.summary-item { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.summary-item-name { color: var(--charcoal-light); }
.summary-item-price { font-weight: 500; }
.summary-divider { height: 1px; background: var(--border); margin: 12px 0; }
.summary-total-row { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; }

/* ── SUCCESS / CANCEL ── */
.success-page, .cancel-page {
  max-width: 600px; margin: 0 auto; padding: 100px 6vw; text-align: center;
}
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-page h1, .cancel-page h1 { font-size: 32px; margin-bottom: 16px; }
.success-page p, .cancel-page p { font-size: 16px; color: var(--charcoal-light); line-height: 1.7; }
.cancel-icon { font-size: 56px; margin-bottom: 16px; }

/* ── POLICY PAGE ── */
.policy-page { max-width: 720px; margin: 0 auto; padding: 60px 6vw 100px; }
.policy-page h1 { font-size: 32px; margin-bottom: 8px; }
.policy-meta { font-size: 13px; color: var(--warm-grey); margin-bottom: 40px; }
.policy-page h2 { font-size: 22px; margin: 36px 0 12px; color: var(--charcoal); }
.policy-page p { font-size: 15px; color: var(--charcoal-light); line-height: 1.75; margin-bottom: 16px; }
.policy-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-page li { font-size: 15px; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 6px; }
.policy-page a { color: var(--rose); }

/* ── ADMIN PAGES ── */
.admin-page { max-width: 1000px; margin: 0 auto; padding: 48px 6vw 100px; }
.admin-page h1 { font-size: 28px; margin-bottom: 8px; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.admin-table th {
  text-align: left; padding: 12px 16px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-grey);
  border-bottom: 2px solid var(--border); background: var(--off-white);
}
.admin-table td { padding: 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.admin-table tr:hover td { background: var(--bg); }
.status-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.status-paid { background: #dcfce7; color: #166534; }
.status-cancelled { background: #fef3c7; color: #92400e; }

/* ── STORE FOOTER ── */
.store-footer {
  background: var(--charcoal); padding: 40px 6vw;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.store-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.store-footer-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--off-white); }
.store-footer-links { display: flex; gap: 20px; }
.store-footer-links a { font-size: 12px; color: rgba(253,250,248,0.4); text-decoration: none; }
.store-footer-links a:hover { color: rgba(253,250,248,0.8); }
.store-footer-copy { font-size: 12px; color: rgba(253,250,248,0.3); }

/* ── 404 ── */
.error-page { max-width: 600px; margin: 0 auto; padding: 100px 6vw; text-align: center; }
.error-page h1 { font-size: 80px; font-weight: 700; color: var(--rose-light); margin-bottom: 16px; }
.error-page p { font-size: 18px; color: var(--charcoal-light); margin-bottom: 28px; }

/* ── EMAIL CAPTURE MODAL ── */
.email-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.55);
  backdrop-filter: blur(4px);
}
.email-modal-card {
  position: relative;
  background: var(--off-white);
  border-radius: 20px;
  padding: 48px 40px 36px;
  max-width: 420px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 32px 80px rgba(26,23,20,0.25);
  animation: emailModalIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes emailModalIn {
  from { opacity: 0; transform: scale(0.88) translateY(16px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.email-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 24px; color: var(--warm-grey);
  cursor: pointer; line-height: 1;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
}
.email-modal-close:hover { color: var(--charcoal); }
.email-modal-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.email-modal-headline {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 12px;
}
.email-modal-sub {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.6;
  margin-bottom: 28px;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.email-form input {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.15s;
}
.email-form input::placeholder { color: var(--warm-grey); }
.email-form input:focus { border-color: var(--rose); }
.email-form button {
  padding: 14px;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.email-form button:hover:not(:disabled) { background: var(--rose); }
.email-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.email-success {
  font-size: 15px;
  font-weight: 600;
  color: #166534;
  margin-top: 4px;
}
.email-error {
  font-size: 14px;
  color: #c0392b;
  margin-top: 4px;
}
.email-modal-fine {
  font-size: 12px;
  color: var(--warm-grey);
  margin-top: 16px;
}
@media (max-width: 480px) {
  .email-modal-card { padding: 36px 28px 28px; }
  .email-modal-headline { font-size: 34px; }
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 80px 6vw 60px; }
  .niches-grid { grid-template-columns: 1fr; }
  .proof-items { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pricing-steps { gap: 0; }
  .step { padding: 28px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-info { position: static; }
  .checkout-page { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .shop-hero-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 480px) {
  .proof-items { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 44px; }
}