:root {
  --white: #fff;
  --mist: #f8f5ef;
  --beige: #d9c3a4;
  --brown: #8a6a45;
  --ink: #241f1a;
  --muted: #746b61;
  --line: rgba(138, 106, 69, .18);
  --glass: rgba(255, 255, 255, .68);
  --shadow: 0 24px 80px rgba(76, 55, 28, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 45%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 195, 164, .28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .85), transparent 24%),
    linear-gradient(120deg, rgba(217, 195, 164, .14), transparent 38%, rgba(138, 106, 69, .08));
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.7) 48%, transparent 54% 100%);
  background-size: 240% 240%;
  animation: sheen 14s linear infinite;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255,255,255,.82);
  backdrop-filter: blur(22px);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(138,106,69,.38);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(217,195,164,.28));
  box-shadow: inset 0 0 18px rgba(255,255,255,.9), 0 8px 24px rgba(138,106,69,.16);
}

.topbar nav { display: flex; gap: clamp(10px, 2.4vw, 26px); color: var(--muted); font-size: 14px; }
.topbar nav a:hover { color: var(--brown); }
.cart-pill, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #8a6a45, #b89665);
  box-shadow: 0 12px 28px rgba(138,106,69,.22);
  cursor: pointer;
  font-weight: 750;
}

.button.ghost {
  color: var(--brown);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  box-shadow: none;
}
.button.small { min-height: 38px; width: 100%; }
.text-button { border: 0; background: transparent; color: var(--brown); cursor: pointer; font-weight: 700; }

.glass-panel {
  border: 1px solid rgba(255, 255, 255, .82);
  background: var(--glass);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) clamp(16px, 5vw, 72px);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 12vw, 158px);
  line-height: .86;
  font-weight: 500;
}

.hero p { max-width: 640px; color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.7; }
.eyebrow { margin: 0 0 12px; color: var(--brown); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-carousel {
  position: relative;
  min-height: min(70vh, 680px);
  overflow: hidden;
  border-radius: 24px;
}

.hero-slide, .review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(22px) scale(.98);
  transition: opacity .6s ease, transform .6s ease;
}
.hero-slide.active, .review-slide.active { opacity: 1; transform: none; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
  height: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.8), rgba(217,195,164,.24)),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(138,106,69,.06) 22px 23px);
  color: var(--brown);
  font-weight: 800;
}
.slide-dots { position: absolute; bottom: 18px; left: 18px; display: flex; gap: 8px; }
.slide-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(138,106,69,.28); }
.slide-dots button.active { background: var(--brown); }

.quick-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(16px, 5vw, 72px) 34px;
}
.quick-filter button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: 13px 18px;
  cursor: pointer;
  color: var(--brown);
  font-weight: 750;
}

.section { padding: 54px clamp(16px, 5vw, 72px); }
.section-head { max-width: 760px; margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: clamp(30px, 5vw, 58px); line-height: 1; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.collection { margin: 34px 0 54px; }
.collection-title { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 16px; }
.collection-title h3 { margin: 0; font-size: 24px; }
.collection-title span { color: var(--muted); font-size: 14px; }

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 90px rgba(76,55,28,.18); }
.product-card.hidden { display: none; }
.product-image {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #f2e8d9);
  color: var(--brown);
  font-weight: 800;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; }
.product-tag { color: var(--brown); font-size: 12px; font-weight: 800; }
.product-body h4 { margin: 8px 0; font-size: 19px; }
.product-body p { color: var(--muted); line-height: 1.55; min-height: 74px; }
.price-line { display: flex; align-items: baseline; gap: 10px; margin: 14px 0; }
.price-line strong { font-size: 22px; }
.price-line del { color: var(--muted); }
.mini-form { display: grid; gap: 8px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  padding: 12px 13px;
  color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }

.reviews .review-carousel {
  position: relative;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  padding: 34px;
}
.review-slide { padding: 34px; }
.stars { color: #b88943; font-size: 22px; margin-bottom: 14px; }
.review-slide p { font-size: clamp(20px, 3vw, 34px); line-height: 1.25; max-width: 900px; }

.footer {
  margin: 40px clamp(16px, 5vw, 72px);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer div:last-child { display: flex; flex-wrap: wrap; gap: 14px; color: var(--brown); font-weight: 750; }

.page-shell, .login-shell {
  width: min(980px, calc(100% - 32px));
  margin: 70px auto;
  border-radius: 22px;
  padding: clamp(24px, 5vw, 58px);
}
.page-shell h1, .login-shell h1 { margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 7vw, 78px); font-weight: 500; }
.page-shell p { color: var(--muted); line-height: 1.8; font-size: 18px; }
.tracking-form { display: flex; gap: 10px; margin: 24px 0; }
.tracking-card { border-top: 1px solid var(--line); padding-top: 20px; }
.tracking-card strong { display: block; font-size: 32px; margin: 6px 0; }
.notice { color: #7b3f24; background: rgba(217,195,164,.28); border: 1px solid var(--line); padding: 12px 14px; border-radius: 12px; }

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  padding: 44px clamp(16px, 5vw, 72px);
}
.checkout-card { border-radius: 20px; padding: 28px; }
.checkout-form, .admin-form { display: grid; gap: 14px; }
.checkout-form label, .admin-form label { color: var(--muted); font-weight: 700; display: grid; gap: 6px; }
.summary-line { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.summary-line.total { font-size: 22px; border-bottom: 0; }
.support-note { color: var(--muted); line-height: 1.6; }

.admin-body { display: grid; grid-template-columns: 250px minmax(0, 1fr); background: #fbf8f2; }
.admin-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 0;
}
.admin-nav a { padding: 11px 12px; border-radius: 12px; color: var(--muted); font-weight: 700; }
.admin-nav a:hover { background: rgba(217,195,164,.2); color: var(--brown); }
.admin-main { padding: 22px; display: grid; gap: 20px; }
.admin-section { border-radius: 18px; padding: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-grid span { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: rgba(255,255,255,.62); }
.stat-grid strong { display: block; font-size: 30px; }
.admin-form { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; margin: 16px 0 24px; }
.admin-form.wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-form textarea, .admin-form label:has(textarea) { grid-column: span 2; }
.admin-form .inline { display: flex; align-items: center; gap: 8px; }
.admin-form .inline input { width: auto; }
.admin-table { display: grid; gap: 10px; }
.admin-table > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.58);
}
.admin-table small { display: block; color: var(--muted); margin-top: 4px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes sheen {
  from { background-position: 0% 0%; }
  to { background-position: 240% 240%; }
}

@media (max-width: 980px) {
  .hero, .checkout-grid, .admin-body { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-carousel { min-height: 460px; }
  .product-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .product-card { flex: 0 0 min(82vw, 360px); scroll-snap-align: start; }
  .admin-nav { position: static; height: auto; flex-direction: row; overflow-x: auto; }
  .stat-grid, .admin-form, .admin-form.wide { grid-template-columns: 1fr; }
  .admin-form textarea, .admin-form label:has(textarea) { grid-column: auto; }
}

@media (max-width: 720px) {
  .topbar { align-items: flex-start; flex-wrap: wrap; }
  .topbar nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .cart-pill { min-height: 38px; padding: 0 14px; }
  .hero h1 { font-size: clamp(58px, 20vw, 96px); }
  .collection-title, .footer, .tracking-form { flex-direction: column; align-items: stretch; }
  .reviews .review-carousel { min-height: 340px; padding: 18px; }
  .review-slide { padding: 22px; }
}

/* Shelf-style storefront pass */
.shop-home {
  background: #f3f3f3;
}

.shop-topbar {
  min-height: 58px;
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
  backdrop-filter: none;
}

.shop-topbar .brand,
.masthead-logo,
.collection-title h3,
.section-head h2,
.product-tag,
.price-line strong,
.review-slide strong,
.service-strip strong,
.newsletter strong,
.footer-links strong,
.copyright {
  font-family: "Arial Rounded MT Bold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .01em;
}

.shop-topbar .brand {
  text-transform: uppercase;
  font-size: clamp(18px, 3vw, 24px);
}

.shop-topbar .brand-mark {
  width: 42px;
  height: 30px;
  border-radius: 0;
  border: 0;
  background: #c98b45;
  box-shadow: none;
}

.shop-topbar nav a,
.cart-pill {
  font-size: 15px;
  font-weight: 800;
}

.shop-topbar .cart-pill {
  min-height: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.masthead {
  background: #fff;
  border-bottom: 1px solid #d6d6d6;
}

.masthead-menu {
  min-height: 132px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 18px clamp(20px, 6vw, 72px);
  text-align: center;
}

.masthead-menu button,
.masthead-menu a[aria-label] {
  border: 0;
  background: transparent;
  color: #2e2e2e;
  cursor: pointer;
  font-size: 48px;
  line-height: 1;
}

.masthead-logo {
  display: inline-flex;
  justify-self: center;
  min-width: min(360px, 70vw);
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  background: linear-gradient(135deg, #d8c1a2, #a97a42);
  color: #111;
  text-transform: uppercase;
  transform: rotate(-1deg);
  font-size: clamp(22px, 6vw, 52px);
}

.masthead-cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  border-top: 1px solid #d6d6d6;
  padding: 18px 20px 22px;
}

.masthead-cats a,
.shelf-tabs button {
  color: #2e2e2e;
  font-size: clamp(15px, 2.2vw, 22px);
  font-weight: 850;
}

.masthead-cats a:nth-child(5),
.masthead-cats a:hover,
.shelf-tabs button:hover {
  color: var(--brown);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 8px;
  background: #fff;
}

.feature-tile {
  min-height: 340px;
  overflow: hidden;
  background: #f6f6f6;
}

.feature-tile.tile-1 {
  grid-column: 1 / -1;
  min-height: min(64vw, 620px);
}

.feature-tile img,
.feature-tile .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.feature-tile .image-placeholder,
.product-image {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(244,241,236,.82)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(138,106,69,.035) 16px 18px);
}

.feature-tile .image-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  color: #fff;
  background: rgba(138,106,69,.62);
  transform: rotate(-4deg);
  font-weight: 900;
  text-transform: uppercase;
}

.shelf-tabs {
  background: #f3f3f3;
  padding-top: 56px;
  padding-bottom: 8px;
}

.shelf-tabs button {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  color: #c5c5c5;
}

.shelf-tabs button:first-child {
  color: #111;
}

.section {
  background: #f3f3f3;
}

.collection {
  margin: 22px 0 86px;
}

.collection-title {
  align-items: baseline;
  margin-bottom: 28px;
}

.collection-title h3 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: .95;
}

.collection-title a {
  color: #2e2e2e;
  font-size: clamp(17px, 2.2vw, 28px);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-row {
  gap: clamp(22px, 4vw, 42px);
}

.shelf-product {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.shelf-product:hover {
  transform: none;
  box-shadow: none;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1.28;
  background-color: #fff;
  color: #2e2e2e;
  overflow: hidden;
}

.product-rank {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 2;
  color: #2e2e2e;
  font-family: "Arial Rounded MT Bold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 900;
}

.product-image > span:not(.product-rank) {
  color: rgba(36,31,26,.42);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  padding: 26px 0 0;
}

.product-tag {
  display: block;
  color: #2e2e2e;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.1;
  text-transform: none;
}

.product-body h4 {
  margin: 14px 0 0;
  color: #333;
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 450;
  line-height: 1.35;
}

.product-body p {
  min-height: 0;
  margin: 8px 0 0;
  color: #333;
  font-size: clamp(14px, 1.4vw, 18px);
}

.price-line {
  margin: 18px 0;
}

.price-line strong {
  color: #050505;
  font-size: clamp(20px, 2.8vw, 32px);
}

.mini-form input {
  display: none;
}

.button.small {
  width: auto;
  min-height: 44px;
  border-radius: 0;
  padding: 0 22px;
  background: #2e2e2e;
  color: #fff;
  box-shadow: none;
}

.coming-soon .release-card {
  width: min(520px, 100%);
  padding: clamp(28px, 6vw, 58px);
  background: #fff;
}

.release-card span {
  color: #d67518;
  font-family: "Arial Rounded MT Bold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(19px, 3vw, 30px);
  font-weight: 900;
}

.release-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  margin: 20px 0 28px;
  background: #f4f4f4;
  color: rgba(36,31,26,.34);
  font-weight: 900;
  text-transform: uppercase;
}

.release-card strong {
  display: block;
  color: #2e2e2e;
  font-size: clamp(18px, 2.5vw, 26px);
}

.release-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.45;
}

.reviews .review-carousel {
  min-height: 330px;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.stars {
  color: #d67518;
}

.review-slide p {
  color: #2e2e2e;
  font-family: "Arial Rounded MT Bold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(22px, 3.4vw, 38px);
}

.service-strip {
  display: grid;
  gap: 70px;
  padding: 86px clamp(20px, 5vw, 72px);
  background: #fff;
  text-align: center;
}

.service-strip strong {
  display: block;
  color: #2e2e2e;
  font-size: clamp(22px, 3.2vw, 34px);
}

.service-strip span {
  display: block;
  margin-top: 8px;
  color: #c6c6c6;
  font-size: clamp(17px, 2.4vw, 26px);
}

.shelf-footer {
  margin: 0;
  border: 0;
  border-radius: 0;
  display: block;
  padding: clamp(42px, 8vw, 90px) clamp(28px, 6vw, 80px);
  background: #303030;
  box-shadow: none;
  color: #f8f8f8;
}

.newsletter {
  max-width: 860px;
  margin-bottom: 82px;
}

.newsletter strong {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
}

.newsletter p {
  color: #aaa;
  font-size: clamp(20px, 3.2vw, 32px);
  line-height: 1.45;
}

.newsletter form {
  display: grid;
  gap: 18px;
}

.newsletter input {
  border: 0;
  border-bottom: 3px solid #f1f1f1;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(18px, 2.8vw, 28px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 80px);
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 24px;
}

.footer-links strong {
  font-size: clamp(18px, 2.8vw, 28px);
}

.footer-links a {
  color: #aaa;
  font-size: clamp(17px, 2.7vw, 28px);
  line-height: 1.25;
}

.copyright {
  margin: 90px 0 0;
  color: #555;
  font-size: clamp(14px, 2vw, 20px);
}

.mobile-shop-nav {
  display: none;
}

@media (max-width: 980px) {
  .feature-tile { min-height: 280px; }
  .product-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .product-card {
    flex: none;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 86px;
  }
  .shop-topbar {
    display: none;
  }
  .masthead-menu {
    min-height: 120px;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 18px 20px;
  }
  .masthead-menu button,
  .masthead-menu a[aria-label] {
    font-size: 42px;
  }
  .masthead-cats {
    gap: 12px 18px;
  }
  .feature-grid {
    gap: 6px;
  }
  .feature-tile {
    min-height: 250px;
  }
  .feature-tile.tile-1 {
    min-height: 430px;
  }
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }
  .collection-title {
    flex-direction: row;
    align-items: baseline;
  }
  .collection-title h3 {
    font-size: clamp(34px, 8vw, 46px);
  }
  .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }
  .product-image {
    aspect-ratio: 1 / 1.42;
  }
  .product-body {
    padding-top: 20px;
  }
  .mini-form {
    margin-top: 14px;
  }
  .button.small {
    width: 100%;
  }
  .service-strip {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-shop-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 84px;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    background: #f7f7f7;
    border-top: 1px solid #ddd;
  }
  .mobile-shop-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    color: #2e2e2e;
    font-size: 16px;
  }
  .mobile-shop-nav span {
    font-size: 29px;
    line-height: 1;
  }
}

@media (max-width: 480px) {
  .masthead-logo {
    min-width: 210px;
    min-height: 54px;
    font-size: 24px;
  }
  .product-row {
    gap: 34px 18px;
  }
  .product-body h4 {
    font-size: 17px;
  }
  .product-body p {
    display: none;
  }
  .price-line strong {
    font-size: 20px;
  }
  .footer-links a {
    font-size: 18px;
  }
}
