/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --orange:      #EE5519;
  --orange-dark: #d44a15;
  --blue:        #35668D;
  --blue-dark:   #2a5272;
  --navy:        #122330;
  --light:       #f1f5f9;
  --border:      #e2e8f0;
  --muted:       #64748b;
  --white:       #ffffff;
  --radius:      0.5rem;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg:   0 10px 24px rgba(0,0,0,.12);
  --transition:  200ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--navy);
  min-height: 100vh;
  letter-spacing: -0.01em;
}

/* ─── Header ────────────────────────────────────────────── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: backdrop-filter var(--transition), box-shadow var(--transition);
}
header.scrolled {
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 36px;
  display: block;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tagline {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 16px;
}
.cart-icon {
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-icon:hover {
  background: rgba(255,255,255,.15);
  transform: scale(1.02);
}
#cart-count {
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(238,85,25,.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.1rem;
  opacity: .8;
  max-width: 520px;
  margin: 0 auto 28px;
  font-weight: 500;
  position: relative;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.hero-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(238,85,25,.35);
}
.hero-btn:active { transform: scale(0.98); }

/* ─── Category Sections ─────────────────────────────────── */
main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.category { margin-bottom: 56px; }

.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.category h2 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.category h2 span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 6px;
  margin-bottom: 3px;
  vertical-align: middle;
}
.category-note {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ─── Product Grid ──────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(53,102,141,.2);
}
.product-card.featured {
  border-color: var(--blue);
  position: relative;
}
.featured-tag {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) * 0.75);
  overflow: hidden;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--transition);
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  background: #eef4f9;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.product-desc {
  font-size: .88rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.5;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.product-price span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.product-sub-exvat {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 400;
}
.product-price-exvat {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px;
}
.product-sub {
  font-size: .8rem;
  color: var(--blue);
  font-weight: 600;
}

/* ─── Subscription Toggle ───────────────────────────────── */
.sub-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 2px 0;
}
.sub-opt {
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 6px 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.sub-opt strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.sub-opt.active {
  border-color: var(--orange);
  background: #fff5f2;
  color: var(--orange);
}
.sub-opt.active strong { color: var(--orange); }
.sub-save {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-card button {
  margin-top: 6px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 11px 0;
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card button:hover {
  background: var(--orange-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(238,85,25,.3);
}
.product-card button:active { transform: scale(0.98); }

/* ─── Cart Sidebar ──────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,35,48,.5);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  color: var(--white);
}
.cart-header h2 { font-size: 1.1rem; font-weight: 700; }
.cart-close {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 30px; height: 30px;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,.2); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-empty { color: var(--muted); font-size: .95rem; padding: 12px 0; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 5px; }
.cart-item-price { color: var(--orange); font-size: .9rem; font-weight: 700; margin-top: 2px; }
.cart-item-sub   { font-size: .75rem; color: var(--blue); font-weight: 600; }

.cart-item-line {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted);
  padding: 1px 0;
}
.cart-item-line span:last-child { font-weight: 600; }
.cart-item-line-total {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 4px;
  color: var(--orange);
  font-weight: 700;
  font-size: .88rem;
}
.cart-item-line-total span { color: var(--orange); }

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-qty button {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  background: var(--light);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1;
  transition: background var(--transition);
}
.cart-qty button:hover { background: var(--border); }
.cart-qty span { font-weight: 700; min-width: 20px; text-align: center; font-size: .9rem; }

.cart-remove {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color var(--transition);
}
.cart-remove:hover { color: var(--orange); }

.cart-footer {
  padding: 16px 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--light);
}
.cart-total { margin-bottom: 6px; }

.cart-vat-line {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--muted);
  padding: 2px 0;
}
.cart-vat-line span:last-child { font-weight: 600; }
.cart-vat-total {
  border-top: 1px solid var(--border);
  margin-top: 5px;
  padding-top: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.cart-vat-total span:last-child { color: var(--orange); }
.cart-sub-note { font-size: .77rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }

/* ─── Checkout Modal ────────────────────────────────────── */
.checkout-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(540px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  z-index: 202;
}
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  color: var(--white);
  border-radius: calc(var(--radius) * 2) calc(var(--radius) * 2) 0 0;
}
.checkout-header h2 { font-size: 1.1rem; font-weight: 700; }

.checkout-body { padding: 24px 28px 28px; }

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.addr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  appearance: none;
  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 fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--navy);
  transition: border var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53,102,141,.12);
}

.order-summary {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.order-summary h3 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: 4px 0;
  color: var(--navy);
}
.summary-vat-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: .88rem;
  color: var(--muted);
  padding: 3px 0;
}
.summary-vat-line span:last-child { font-weight: 600; color: var(--navy); white-space: nowrap; text-align: right; }
.summary-vat-total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 6px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy) !important;
}
.summary-vat-total span:last-child { color: var(--orange) !important; }

.summary-item-sub {
  color: var(--muted);
  font-size: .85rem;
  padding-left: 8px;
}
.summary-total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: var(--navy);
}
.summary-total strong { color: var(--orange); }

.checkout-btn {
  width: 100%;
  padding: 13px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.checkout-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(238,85,25,.3);
}
.checkout-btn:active { transform: scale(0.98); }

/* ─── Checkout Steps ────────────────────────────────────── */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.step {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step.active { background: var(--orange); color: var(--white); }
.step.done   { background: #40916c; color: var(--white); }
.step-line   { flex: 1; height: 2px; background: rgba(255,255,255,.15); min-width: 20px; }

.step-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.checkout-btn-outline {
  padding: 13px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.checkout-btn-outline:hover { border-color: var(--navy); background: var(--light); }

/* ─── Registration Forms ────────────────────────────────── */
.same-for-all-wrap {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 16px;
}
.same-for-all-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.same-for-all-label input { accent-color: var(--orange); width: 16px; height: 16px; cursor: pointer; }

.reg-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
#addr-eircode::placeholder,
.reg-postcode::placeholder { text-transform: none; }
.reg-char-count {
  font-size: .75rem;
  color: var(--muted);
  text-align: right;
  margin-top: 4px;
}
.reg-form-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.reg-unit-badge {
  background: var(--light);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.reg-form-note {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.same-as-purchaser-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.same-as-purchaser-label input { accent-color: var(--orange); width: 15px; height: 15px; cursor: pointer; }

.different-person {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 12px;
}

/* ─── Geofence Options ──────────────────────────────────── */
.geofence-opts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.geofence-opt {
  cursor: pointer;
}
.geofence-opt input { display: none; }
.geofence-opt span {
  display: block;
  text-align: center;
  padding: 8px 4px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.geofence-opt input:checked + span {
  border-color: var(--orange);
  background: #fff5f2;
  color: var(--orange);
}
.geofence-opt:hover span { border-color: var(--navy); }

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  font-weight: 500;
}
footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--transition); }
footer a:hover { color: var(--orange); }

.footer-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  height: 32px;
  display: block;
  margin-bottom: 16px;
  opacity: .9;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 280px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.footer-contact a:hover { color: var(--orange); }

.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Utility ───────────────────────────────────────────── */
.hidden { display: none !important; }

/* ─── Scroll animation ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.7rem; }
  .hero p  { font-size: .95rem; }
  .header-tagline { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
