/* TapMeGo — standalone design system (Figtree + Source Serif 4) */
:root {
  --tap-bg: #FDFBF7;
  --tap-bg-warm: #FBF6EA;
  --tap-ink: #1C1917;
  --tap-body: #57504A;
  --tap-muted: #8A8074;
  --tap-line: #EAE3D6;
  --tap-line-soft: #EADFC2;
  --tap-soft: #F6EEDA;
  --tap-gold: #C9A227;
  --tap-gold-deep: #8A6A12;
  --tap-gold-mid: #96751A;
  --tap-gold-bright: #E4C558;
  --tap-btn: #6B5510;
  --tap-green: #2D8A4E;
  --tap-footer: #171310;
  --tap-grad: linear-gradient(135deg, #E4C558, #C9A227 55%, #96751A);
  --tap-shadow: 0 16px 32px -14px rgba(150, 110, 20, .55);
  --tap-radius: 14px;
  --tap-max: 1160px;
  --font-sans: "Figtree", "GT Planar", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

body.tapmego-page {
  margin: 0;
  background: var(--tap-bg);
  color: var(--tap-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tap-wrap { width: 100%; max-width: var(--tap-max); margin: 0 auto; padding-inline: 24px; }

/* —— Header —— */
.tap-header {
  position: sticky;
  top: 0;
  z-index: 9998;
  background: rgba(253, 251, 247, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tap-line);
}
.tap-header-inner {
  max-width: var(--tap-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tap-logo img { height: 34px; width: auto; display: block; }
.tap-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 600;
}
.tap-nav a { color: var(--tap-body); transition: color .15s; }
.tap-nav a:hover { color: var(--tap-gold-deep); }
.tap-header-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  background: #fff;
  color: var(--tap-gold-deep);
  border: 1px solid var(--tap-line);
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 8px 12px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color .15s, background .15s;
}
.lang-toggle:hover { border-color: var(--tap-gold); background: var(--tap-bg-warm); }
.lang-toggle svg { width: 14px; height: 14px; opacity: .7; }

/* —— Buttons —— */
.tap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter .15s, background .15s, border-color .15s;
}
.tap-btn-primary {
  padding: 15px 28px;
  border-radius: var(--tap-radius);
  background: var(--tap-grad);
  color: #fff !important;
  font-size: 1rem;
  box-shadow: var(--tap-shadow);
}
.tap-btn-primary:hover { filter: brightness(1.06); color: #fff !important; }
.tap-btn-secondary {
  padding: 15px 28px;
  border-radius: var(--tap-radius);
  border: 1.5px solid #E3D6B5;
  color: var(--tap-btn) !important;
  font-size: 1rem;
  background: #fff;
}
.tap-btn-secondary:hover { border-color: var(--tap-gold); background: var(--tap-bg-warm); color: var(--tap-btn) !important; }
.tap-btn-sm {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--tap-grad);
  color: #fff !important;
  font-size: .9rem;
  box-shadow: 0 8px 18px -8px rgba(150, 110, 20, .55);
}
.tap-btn-sm:hover { filter: brightness(1.06); color: #fff !important; }
.tap-btn-soft {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--tap-soft);
  color: var(--tap-btn) !important;
  font-weight: 800;
  font-size: .98rem;
}
.tap-btn-soft:hover { background: #EFE2BE; color: var(--tap-btn) !important; }
.tap-btn-block { width: 100%; display: flex; }

/* —— Eyebrow —— */
.tap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--tap-soft);
  border: 1px solid var(--tap-line-soft);
  color: var(--tap-gold-deep);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tap-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--tap-gold);
}

.tap-h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  margin: 20px 0 0;
  letter-spacing: -.01em;
  text-wrap: balance;
  color: var(--tap-ink);
}
.tap-h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 18px 0 0;
  text-wrap: balance;
  color: var(--tap-ink);
}
.tap-em {
  font-style: italic;
  background: linear-gradient(120deg, #C9A227, #8A6A12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tap-em-solid { font-style: italic; color: var(--tap-gold-deep); }

.tap-lede {
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--tap-body);
  max-width: 34rem;
  text-wrap: pretty;
}
.tap-sub {
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--tap-body);
  text-wrap: pretty;
}

/* —— Hero —— */
.tap-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FBF6EA 0%, #FDFBF7 90%);
}
.tap-hero-grid {
  max-width: var(--tap-max);
  margin: 0 auto;
  padding: 76px 24px 84px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.tap-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.tap-wallets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.tap-wallets-label { font-size: .85rem; font-weight: 600; color: var(--tap-muted); }
.tap-wallet-pill {
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
}
.tap-wallet-pill--venmo { background: #008CFF; }
.tap-wallet-pill--paypal { background: #003087; }
.tap-wallet-pill--cash { background: #00D632; }
.tap-wallet-pill--zelle { background: #6D1ED4; }
.tap-hero-note { margin: 16px 0 0; font-size: .88rem; color: var(--tap-muted); }

.tap-hero-visual { position: relative; }
.tap-hero-main {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 30px 60px -24px rgba(60, 45, 10, .35);
  border: 1px solid var(--tap-line);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.tap-hero-float {
  position: absolute;
  left: -18px;
  bottom: -24px;
  width: 44%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 20px 40px -18px rgba(60, 45, 10, .45);
  animation: tap-float 7s ease-in-out infinite;
}
.tap-hero-float img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.tap-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--tap-line-soft);
  color: var(--tap-gold-deep);
  font-weight: 700;
  font-size: .8rem;
}
@keyframes tap-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .tap-hero-float { animation: none; }
}

/* —— Stats —— */
.tap-stats {
  border-top: 1px solid var(--tap-line);
  border-bottom: 1px solid var(--tap-line);
  background: #fff;
}
.tap-stats-grid {
  max-width: var(--tap-max);
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tap-stat { text-align: center; }
.tap-stat-n {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--tap-gold-deep);
  line-height: 1;
}
.tap-stat-t {
  margin-top: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--tap-muted);
}

/* —— Section helpers —— */
.tap-section { max-width: var(--tap-max); margin: 0 auto; padding: 96px 24px 0; }
.tap-section-head { text-align: center; max-width: 44rem; margin: 0 auto; }

/* —— How —— */
.tap-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.tap-step {
  background: #fff;
  border: 1px solid var(--tap-line);
  border-radius: 18px;
  padding: 30px 28px;
}
.tap-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--tap-soft);
  color: var(--tap-gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.tap-step h3 { margin: 18px 0 8px; font-size: 1.12rem; font-weight: 800; color: var(--tap-ink); }
.tap-step p { margin: 0; font-size: .94rem; line-height: 1.6; color: var(--tap-body); text-wrap: pretty; }

.tap-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.tap-feat {
  background: #fff;
  border: 1px solid var(--tap-line);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.tap-feat-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--tap-soft);
  color: var(--tap-gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tap-feat h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 800; color: var(--tap-ink); }
.tap-feat p { margin: 0; font-size: .94rem; line-height: 1.6; color: var(--tap-body); text-wrap: pretty; }

/* —— Gallery —— */
.tap-section[id],
.tap-faq[id],
.tap-shop[id],
.tap-cta[id] { scroll-margin-top: 84px; }

.tap-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.tap-gal {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--tap-line);
  background: #f3efe6;
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.tap-gal--hero {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
  max-height: 420px;
}
.tap-gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.tap-gal:hover img { transform: scale(1.03); }
.tap-gal figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(23, 19, 16, .7));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.3;
}

/* —— Shop —— */
.tap-shop {
  margin-top: 96px;
  background: linear-gradient(180deg, #FBF6EA, #FDFBF7);
  border-top: 1px solid var(--tap-line);
  border-bottom: 1px solid var(--tap-line);
}
.tap-shop-inner { max-width: var(--tap-max); margin: 0 auto; padding: 88px 24px 96px; }
.tap-shop-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.tap-shop-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0;
}
.tap-shop-hint { font-size: .95rem; font-weight: 600; color: var(--tap-muted); }
.tap-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}
.tap-product {
  background: #fff;
  border: 1px solid var(--tap-line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tap-product--deal {
  border: 2px solid var(--tap-gold);
  box-shadow: 0 24px 48px -20px rgba(150, 110, 20, .4);
}
.tap-product-media {
  position: relative;
  height: 210px;
  background: var(--tap-soft);
}
.tap-product-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.tap-product--deal .tap-product-media {
  background: linear-gradient(135deg, #8A6A12, #C9A227);
}
.tap-product-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--tap-gold-deep);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
}
.tap-product-badge--deal {
  background: #1C1917;
  color: #F4D97B;
}
.tap-product-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tap-product h3 { margin: 0; font-size: 1.3rem; font-weight: 800; color: var(--tap-ink); }
.tap-product-desc {
  margin: 10px 0 0;
  font-size: .94rem;
  line-height: 1.6;
  color: var(--tap-body);
}
.tap-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.tap-price-n { font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em; }
.tap-price-n--deal { color: var(--tap-gold-deep); }
.tap-price-u { font-size: .9rem; font-weight: 600; color: var(--tap-muted); }
.tap-price-old {
  font-size: 1rem;
  font-weight: 600;
  color: #A89F92;
  text-decoration: line-through;
}
.tap-price-save {
  padding: 4px 11px;
  border-radius: 999px;
  background: #EAF5EC;
  color: var(--tap-green);
  font-weight: 800;
  font-size: .78rem;
}
.tap-product-feats {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: .92rem;
  color: #3E3833;
}
.tap-product-feats li { display: flex; gap: 9px; align-items: center; }
.tap-product-feats .ok { color: var(--tap-green); font-weight: 900; }
.tap-product-cta { margin-top: auto; padding-top: 22px; }

/* —— Video —— */
.tap-video-frame {
  margin-top: 44px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--tap-line);
  box-shadow: 0 30px 60px -28px rgba(60, 45, 10, .35);
  background: #000;
}
.tap-video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #000;
}
.tap-video-note {
  text-align: center;
  margin: 18px 0 0;
  font-size: .88rem;
  color: var(--tap-muted);
}

/* —— Testimonials —— */
.tap-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.tap-quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--tap-line);
  border-radius: 18px;
  padding: 28px;
}
.tap-quote-stars { color: var(--tap-gold); letter-spacing: 2px; font-size: .95rem; }
.tap-quote p {
  margin: 14px 0 0;
  font-size: .96rem;
  line-height: 1.65;
  color: #3E3833;
  text-wrap: pretty;
}
.tap-quote footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tap-quote-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}
.tap-quote-name { display: block; font-size: .92rem; font-weight: 800; color: var(--tap-ink); }
.tap-quote-meta { font-size: .82rem; color: var(--tap-muted); }

/* —— FAQ —— */
.tap-faq { max-width: 820px; margin: 0 auto; padding: 96px 24px 0; }
.tap-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.tap-faq-item {
  background: #fff;
  border: 1px solid var(--tap-line);
  border-radius: 14px;
  padding: 18px 22px;
}
.tap-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--tap-ink);
  list-style-position: outside;
}
.tap-faq-item p {
  margin: 12px 0 0;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--tap-body);
}

/* —— CTA banner —— */
.tap-cta { max-width: var(--tap-max); margin: 96px auto 0; padding: 0 24px 96px; }
.tap-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, #2B2108, #6B5510 55%, #8A6A12);
  color: #fff;
  padding: 64px 40px;
  text-align: center;
}
.tap-cta-box .tap-eyebrow {
  background: rgba(255, 255, 255, .12);
  border-color: transparent;
  color: #F4D97B;
}
.tap-cta-box .tap-eyebrow .dot { background: #F4D97B; }
.tap-cta-box .tap-h2 { color: #fff; margin-left: auto; margin-right: auto; max-width: 36rem; }
.tap-cta-box .tap-sub {
  margin-left: auto; margin-right: auto;
  max-width: 38rem;
  color: rgba(255, 255, 255, .85);
}
.tap-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.tap-cta-btns .tap-btn-primary {
  background: #fff;
  color: var(--tap-btn) !important;
  box-shadow: none;
}
.tap-cta-btns .tap-btn-primary:hover { background: var(--tap-soft); color: var(--tap-btn) !important; filter: none; }
.tap-cta-btns .tap-btn-ghost {
  padding: 15px 30px;
  border-radius: var(--tap-radius);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
}
.tap-cta-btns .tap-btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff !important; }

/* —— Footer —— */
.tap-footer { background: var(--tap-footer); color: #B7AFA4; padding: 64px 0 0; }
.tap-footer-grid {
  max-width: var(--tap-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}
.tap-footer-brand-row { display: flex; align-items: center; gap: 10px; }
.tap-footer-brand-row img { width: 32px; height: 32px; border-radius: 8px; }
.tap-footer-brand-name { color: #fff; font-weight: 800; font-size: 1.1rem; }
.tap-footer-brand-name .ai { color: var(--tap-gold); }
.tap-footer-brand p {
  margin: 16px 0 0;
  font-size: .9rem;
  line-height: 1.65;
  max-width: 26rem;
}
.tap-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  font-size: .9rem;
}
.tap-footer-contact a { color: #DCD5C9; }
.tap-footer-contact a:hover { color: var(--tap-gold); }
.tap-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .9rem;
}
.tap-footer-col h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tap-footer-col a { color: #B7AFA4; }
.tap-footer-col a:hover { color: var(--tap-gold); }
.tap-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 52px;
}
.tap-footer-bottom-inner {
  max-width: var(--tap-max);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .84rem;
}

/* —— Sticky CTA —— */
#cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(253, 251, 247, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 20px rgba(60, 45, 10, .1);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}
#cta-bar .cta-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  height: 36px;
  min-height: 36px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: all .18s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
  color: var(--tap-gold-deep);
  background: #fff;
  box-shadow: 0 1px 4px rgba(60, 45, 10, .07);
}
#cta-bar .cta-btn.whatsapp { flex: 0 0 auto; padding-inline: 12px; }
#cta-bar .cta-btn.order {
  flex: 1 1 auto;
  background: var(--tap-grad);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(150, 110, 20, .5);
}
#cta-bar .cta-btn.call {
  flex: 0 0 auto;
  text-transform: none;
  letter-spacing: 0;
  font-size: .72rem;
  padding-inline: 12px;
}
#cta-bar .cta-btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

@media (min-width: 640px) {
  #cta-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 24px));
    bottom: 14px;
    border-radius: 999px;
    padding: 5px;
    gap: 5px;
    box-shadow: 0 8px 28px rgba(60, 45, 10, .14);
  }
  #cta-bar .cta-btn { height: 34px; min-height: 34px; padding: 0 14px; }
}
@media (max-width: 560px) {
  #cta-bar { padding-right: 64px; }
  #cta-bar .cta-btn.whatsapp .cta-label,
  #cta-bar .cta-btn.call .cta-phone { display: none; }
  #cta-bar .cta-btn.whatsapp,
  #cta-bar .cta-btn.call {
    flex: 0 0 36px;
    width: 36px;
    padding-inline: 0;
  }
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .tap-nav { display: none; }
  .tap-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 64px; text-align: center; }
  .tap-lede { margin-inline: auto; }
  .tap-hero-ctas, .tap-wallets { justify-content: center; }
  .tap-hero-float { display: none; }
  .tap-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .tap-steps, .tap-feats, .tap-products, .tap-quotes { grid-template-columns: 1fr; }
  .tap-gal--hero {
    aspect-ratio: 16 / 9;
    max-height: 340px;
  }
  .tap-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tap-cta-box { padding: 48px 24px; }
}
@media (max-width: 700px) {
  .tap-gallery { grid-template-columns: 1fr 1fr; }
  .tap-gal--hero {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    max-height: 280px;
  }
}
@media (max-width: 560px) {
  .tap-gallery { grid-template-columns: 1fr; gap: 12px; }
  .tap-gal,
  .tap-gal--hero {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 200px;
  }
  .tap-footer-grid { grid-template-columns: 1fr; }
  .tap-header-inner .tap-btn-sm span { display: none; }
  .tap-cart-btn .cart-label { display: none; }
}

/* —— Store cart tokens (shop.css drawer/checkout) —— */
body.tapmego-page {
  --primary: var(--tap-gold-mid);
  --primary-hover: var(--tap-gold-deep);
  --primary-soft: var(--tap-soft);
  --ink: var(--tap-ink);
  --body: var(--tap-body);
  --muted: var(--tap-muted);
  --muted-soft: #b0a698;
  --on-primary: #fff;
  --canvas: #fff;
  --surface-soft: var(--tap-bg-warm);
  --surface-strong: var(--tap-soft);
  --hairline: var(--tap-line);
  --accent-green: var(--tap-green);
  --error: #c0392b;
  --r-xs: 4px;
  --r-sm: 8px;
  --r-full: 9999px;
  --t-body: 1rem;
  --t-body-sm: 0.875rem;
  --t-caption: 0.8125rem;
  --t-title: 0.9375rem;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --dur-fast: 150ms;
  --s-sm: 8px;
}

/* Drawer above sticky CTA bar */
body.tapmego-page .drawer-backdrop { z-index: 10040; }
body.tapmego-page .drawer { z-index: 10050; }
body.tapmego-page .toast { z-index: 10060; bottom: calc(64px + env(safe-area-inset-bottom)); }

body.tapmego-page .tap-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 12px;
  background: #fff;
  color: var(--tap-ink);
  border: 1px solid var(--tap-line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
body.tapmego-page .tap-cart-btn:hover {
  border-color: var(--tap-gold);
  background: var(--tap-bg-warm);
}
body.tapmego-page .tap-cart-btn .cart-count {
  background: var(--tap-gold-mid);
  color: #fff;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.tapmego-page .tap-product.in-cart {
  outline: 2px solid var(--tap-gold);
  outline-offset: -2px;
}
body.tapmego-page .tap-btn.added {
  background: var(--tap-green) !important;
  color: #fff !important;
  border-color: var(--tap-green) !important;
}

/* Checkout buttons inside drawer (shop.css expects .btn) */
body.tapmego-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: var(--t-title);
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
body.tapmego-page .btn-primary {
  background: var(--tap-btn);
  color: #fff;
}
body.tapmego-page .btn-primary:hover { filter: brightness(1.08); color: #fff; }
body.tapmego-page .btn-secondary {
  background: #fff;
  color: var(--tap-ink);
  border-color: var(--tap-line);
}
body.tapmego-page .btn-secondary:hover { background: var(--tap-bg-warm); }
body.tapmego-page .drawer-foot .btn { width: 100%; }
body.tapmego-page .drawer-head h2 { font-family: var(--font-sans); }
body.tapmego-page .co-field input:focus,
body.tapmego-page .co-field textarea:focus {
  outline: 2px solid var(--tap-gold);
  outline-offset: -1px;
  border-color: var(--tap-gold);
}
