:root {
  --white: #ffffff;
  --black: #000000;
  --ink: #111111;
  --muted: #5c5c5c;
  --line: #242424;
  --soft-line: #e7e7e7;
  --red: #d71920;
  --panel: #f7f7f7;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  --shadow-sheet: 0 -20px 60px rgba(0, 0, 0, 0.22);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: #f1f1f1;
  color: var(--ink);
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

body.panel-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(100%, 430px);
  height: calc(56px + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 12px 0;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  backdrop-filter: blur(2px);
  transform: translateX(-50%);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.topbar.is-scrolled,
.topbar.is-open {
  color: var(--black);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.13), 0 10px 28px rgba(0, 0, 0, 0.05);
}

.topbar.is-scrolled {
  height: calc(52px + env(safe-area-inset-top));
  padding-right: 10px;
  padding-left: 10px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.icon-button,
.bag-button,
.close-button,
.dialog-close,
.search-link {
  border: 0;
  background: transparent;
  color: inherit;
}

.icon-button {
  display: grid;
  place-content: center;
  width: 40px;
  height: 44px;
  gap: 5px;
  padding: 0;
}

.icon-button span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.search-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0 2px;
  overflow: hidden;
  opacity: 0.96;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-icon {
  position: relative;
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--red);
  color: var(--white);
  font-size: 0;
  font-weight: 700;
  line-height: 1;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  width: 17px;
  height: 5px;
}

.brand-mark::after {
  width: 5px;
  height: 17px;
}

.brand-text {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.topbar.is-scrolled .brand {
  gap: 6px;
}

.topbar.is-scrolled .brand-mark {
  width: 26px;
  height: 26px;
}

.topbar.is-scrolled .brand-mark::before {
  width: 15px;
  height: 4px;
}

.topbar.is-scrolled .brand-mark::after {
  width: 4px;
  height: 15px;
}

.topbar.is-scrolled .brand-text {
  font-size: 22px;
}

.bag-button {
  display: inline-flex;
  justify-self: end;
  min-width: 68px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.28);
}

.topbar.is-scrolled .bag-button {
  min-width: 62px;
  min-height: 34px;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(215, 25, 32, 0.24);
}

.hero {
  position: relative;
  min-height: 586px;
  overflow: hidden;
  background: #b9b2a9;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: mediaReveal 800ms ease both;
}

.hero::after,
.category-card::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.hero-copy {
  position: absolute;
  left: 24px;
  right: 18px;
  bottom: 30px;
  z-index: 1;
  color: var(--white);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 800;
  line-height: 0.98;
}

.text-link {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.text-link.light {
  color: var(--white);
}

.text-link.dark {
  color: var(--black);
}

.hero-spacer {
  height: 104px;
  background: var(--white);
}

.category-grid {
  display: grid;
  gap: 0;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  align-items: end;
  color: var(--white);
  text-decoration: none;
  background: #222;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.category-card:active img {
  transform: scale(1.025);
}

.category-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0 28px 28px;
}

.category-card strong {
  font-size: 28px;
  font-weight: 750;
  line-height: 1;
}

.category-card span {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 850;
}

.seastar-feature {
  padding-top: 108px;
  background: var(--white);
}

.seastar-copy {
  padding: 0 14px 24px;
}

.seastar-copy h2 {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: 31px;
  font-weight: 750;
  line-height: 1.08;
}

.seastar-copy p {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.34;
}

.seastar-feature img {
  display: block;
  width: calc(100% - 4px);
  margin: 0 auto;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.collection {
  scroll-margin-top: 72px;
  padding: 92px 0 0;
  background: var(--white);
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: var(--white);
}

.product-card {
  min-width: 0;
  min-height: 396px;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--soft-line);
  background: var(--white);
  color: var(--black);
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.product-card:active {
  transform: scale(0.985);
  background: #f7f7f7;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 232px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

.product-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.12));
  transition: transform 220ms ease;
}

.product-card:active .product-media img {
  transform: scale(0.975);
}

.badge {
  display: none;
}

.product-info {
  display: grid;
  justify-items: center;
  padding: 12px 12px 16px;
}

.product-info .new-label {
  display: block;
  margin-bottom: 6px;
  color: #2b2b2b;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 42px;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
}

.product-info p {
  min-height: 22px;
  margin: 0 0 10px;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin-bottom: 12px;
}

.price {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.compare {
  color: #8e8e8e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.product-button {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 26px 14px;
  color: #666;
  font-size: 12px;
  text-align: center;
}

.magazine {
  padding: 34px 0 54px;
  background: var(--black);
  color: var(--white);
}

.magazine-heading {
  padding: 0 20px;
  text-align: center;
}

.magazine-heading h2 {
  margin: 0 0 14px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.magazine-heading p {
  margin: 0;
  color: #d7d7d7;
  font-size: 12px;
  line-height: 1.3;
}

.magazine-card {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 56px;
  text-align: center;
}

.magazine-card img {
  display: block;
  width: 72%;
  max-width: 310px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity 220ms ease, transform 220ms ease;
}

.magazine-card.is-changing img,
.magazine-card.is-changing h3,
.magazine-card.is-changing p {
  opacity: 0;
  transform: translateY(8px);
}

.magazine-card h3,
.magazine-card p {
  transition: opacity 220ms ease, transform 220ms ease;
}

.magazine-card h3 {
  width: 82%;
  margin: 30px 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.magazine-card p {
  margin: 0 0 34px;
  color: #d8d8d8;
  font-size: 12px;
}

.magazine-arrow {
  position: absolute;
  top: 138px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 0;
  border-left: 1.4px solid var(--white);
  border-bottom: 1.4px solid var(--white);
  background: transparent;
  transition: opacity 160ms ease, transform 160ms ease;
}

.magazine-arrow.prev {
  left: 25px;
  transform: rotate(45deg);
}

.magazine-arrow.prev:active {
  transform: rotate(45deg) scale(0.88);
}

.magazine-arrow.next {
  right: 25px;
  transform: rotate(-135deg);
}

.magazine-arrow.next:active {
  transform: rotate(-135deg) scale(0.88);
}

.magazine-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 22px;
}

.magazine-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #5e5e5e;
}

.magazine-dots button.is-active {
  background: var(--white);
}

.newsletter {
  padding: 30px 20px 26px;
  border-top: 1px solid #222;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 500;
}

.newsletter-button {
  width: 100%;
  min-height: 50px;
  border: 1px solid #3d3d3d;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
}

.footer {
  padding: 0 20px 20px;
  background: var(--black);
  color: var(--white);
}

.footer details {
  border-top: 1px solid #242424;
}

.footer details:last-child {
  border-bottom: 1px solid #242424;
}

.footer summary {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  color: #dcdcdc;
  font-size: 12px;
  list-style: none;
}

.footer summary::-webkit-details-marker {
  display: none;
}

.footer summary::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  transform: rotate(45deg);
}

.footer details[open] summary::after {
  transform: rotate(225deg);
}

.footer a {
  display: block;
  padding: 0 0 12px;
  color: #aaa;
  font-size: 12px;
  text-decoration: none;
}

.footer details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 240ms ease, content-visibility 240ms ease allow-discrete;
}

.footer details[open]::details-content {
  block-size: auto;
}

.site-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-items: center;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease, background 240ms ease;
}

.site-panel.is-open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.42);
  opacity: 1;
}

.panel-sheet {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  padding: calc(22px + env(safe-area-inset-top)) 20px 30px;
  background: var(--white);
  color: var(--black);
  transform: translateX(-100%);
  transition: transform 300ms ease;
}

.search-panel .panel-sheet {
  min-height: 220px;
  align-self: start;
  transform: translateY(-100%);
}

.site-panel.is-open .panel-sheet {
  transform: translateX(0);
}

.search-panel.is-open .panel-sheet {
  transform: translateY(0);
}

.panel-close {
  position: absolute;
  top: calc(7px + env(safe-area-inset-top));
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 30px;
  line-height: 1;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.panel-nav {
  display: grid;
  border-top: 1px solid var(--soft-line);
}

.panel-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--soft-line);
  color: var(--black);
  font-size: 18px;
  text-decoration: none;
}

.search-field {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.search-field span {
  color: #6a6a6a;
  font-size: 11px;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  color: var(--black);
  font-size: 22px;
  outline: none;
}

.quick-searches {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  overflow-x: auto;
}

.quick-searches button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--soft-line);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
}

.reveal-block > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-block.is-visible > * {
  animation: revealNudge 520ms ease both;
}

@keyframes mediaReveal {
  from {
    opacity: 0.78;
    transform: scale(1.018);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealNudge {
  from {
    opacity: 0.72;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-dialog {
  width: min(100%, 430px);
  max-width: 430px;
  max-height: calc(100dvh - 16px);
  margin: auto auto 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.order-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.order-form {
  position: relative;
  display: grid;
  gap: 8px;
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  padding: 12px 13px calc(16px + env(safe-area-inset-bottom));
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-sheet);
}

.dialog-handle {
  justify-self: center;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #cfcfcf;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 8;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3f3;
  color: #595959;
  font-size: 0;
  line-height: 1;
}

.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.dialog-header {
  display: grid;
  gap: 2px;
  padding-right: 50px;
}

.dialog-header p {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  line-height: 14px;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin: 0;
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
}

.dialog-product {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 154px;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  background: #f8f8f8;
}

.dialog-product-visual {
  display: grid;
  min-height: 134px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}

.dialog-product-visual img {
  width: 100%;
  height: 144px;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.14));
}

.dialog-product h3,
.dialog-product p,
.dialog-product span,
.dialog-product em,
.dialog-product small {
  margin: 0;
}

.dialog-product-copy {
  min-width: 0;
}

.dialog-product-copy p {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  line-height: 15px;
}

.dialog-product h3 {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.dialog-product span,
.dialog-product em {
  display: block;
  margin-top: 5px;
  color: #676767;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px;
  text-transform: uppercase;
}

#dialogPrice {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 31px;
  font-weight: 800;
  line-height: 32px;
}

.dialog-product small {
  display: block;
  margin-top: 4px;
  color: #686868;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}

.dialog-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.dialog-benefits span {
  display: grid;
  min-height: 42px;
  align-content: center;
  padding: 7px 8px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 9px;
  font-weight: 800;
  line-height: 12px;
  text-align: center;
  text-transform: uppercase;
}

.order-form label {
  display: grid;
  gap: 0;
}

.order-form > label > span,
.location-grid label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 12px;
  background: #ffffff;
  color: var(--black);
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.order-form input,
.order-form select {
  min-height: 42px;
  padding: 0 12px;
}

.order-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #616161 50%), linear-gradient(135deg, #616161 50%, transparent 50%);
  background-position: calc(100% - 17px) 18px, calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.order-form textarea {
  min-height: 58px;
  padding: 10px 12px;
  resize: vertical;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: #9a9a9a;
}

.order-form input:focus-visible,
.order-form textarea:focus-visible,
.order-form select:focus-visible,
.product-card:focus-visible,
.confirm-order:focus-visible,
.dialog-close:focus-visible,
.text-link:focus-visible,
.newsletter-button:focus-visible,
.footer summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 7px;
}

.qty-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.qty-options legend {
  grid-column: 1 / -1;
  color: #666;
  font-size: 9px;
  font-weight: 800;
  line-height: 13px;
  text-transform: uppercase;
}

.qty-options label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #bdbdbd;
  border-radius: 12px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 14px;
}

.qty-options input {
  width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--red);
}

.confirm-order {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  animation: submitPulse 1.65s ease-in-out infinite;
}

.confirm-order:disabled {
  opacity: 0.68;
  cursor: progress;
}

.form-status {
  min-height: 17px;
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

@keyframes submitPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.32);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(215, 25, 32, 0);
  }
}

@media (max-height: 720px) {
  .order-form {
    gap: 6px;
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  }

  .dialog-close {
    width: 38px;
    height: 38px;
  }

  .dialog-header h2 {
    font-size: 20px;
    line-height: 22px;
  }

  .dialog-product {
    min-height: 132px;
    gap: 8px;
    padding: 8px;
  }

  .dialog-product-visual {
    min-height: 112px;
  }

  .dialog-product-visual img {
    height: 124px;
  }

  .dialog-product-copy p {
    font-size: 10px;
    line-height: 13px;
  }

  .dialog-product h3 {
    margin-top: 3px;
    font-size: 14px;
    line-height: 16px;
  }

  .dialog-product em,
  .dialog-product small {
    display: none;
  }

  .dialog-product span {
    margin-top: 3px;
  }

  #dialogPrice {
    margin-top: 4px;
    font-size: 28px;
    line-height: 29px;
  }

  .dialog-benefits span {
    min-height: 34px;
    padding: 5px 7px;
    font-size: 8px;
    line-height: 11px;
  }

  .order-form input,
  .order-form select {
    min-height: 38px;
  }

  .order-form textarea {
    min-height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .qty-options label {
    min-height: 40px;
  }

  .confirm-order {
    min-height: 44px;
    font-size: 13px;
  }

  .form-status {
    min-height: 14px;
  }
}

@media (min-width: 700px) {
  body {
    padding: 0;
  }

  .page-shell {
    min-height: 100vh;
  }

  .topbar {
    top: 0;
  }
}
