:root {
  color-scheme: light;
  --ink: #241707;
  --muted: #765b25;
  --line: rgba(124, 77, 10, 0.32);
  --paper: #f2dc9f;
  --panel: #fff5d7;
  --panel-soft: #efd180;
  --accent: #c99020;
  --accent-strong: #6c4307;
  --bronze: #9c6411;
  --deep: #160c03;
  --gold: #dca72d;
  --danger: #9d321b;
  --shadow: 0 18px 50px rgba(91, 55, 5, 0.2);
  --glow: 0 0 0 1px rgba(220, 167, 45, 0.34), 0 18px 70px rgba(220, 167, 45, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 224, 132, 0.58), transparent 30%),
    radial-gradient(circle at 14% 12%, rgba(156, 100, 17, 0.26), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(91, 55, 5, 0.22), transparent 25%),
    linear-gradient(180deg, #f7e6b1 0%, var(--paper) 48%, #e7c778 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(45, 28, 6, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 34px rgba(36, 23, 7, 0.24);
}

.brand,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 22px rgba(220, 167, 45, 0.34));
}

.brand-logo {
  display: block;
  width: 154px;
  height: 62px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 8px 18px rgba(91, 55, 5, 0.16));
}

.nav-actions {
  gap: clamp(10px, 2vw, 22px);
  color: #f6df9f;
  font-weight: 700;
}

.nav-actions a:hover {
  color: #fff5d7;
}

.nav-actions a {
  position: relative;
  padding: 6px 0;
}

.nav-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-actions a:hover::after {
  transform: scaleX(1);
}

.icon-button,
.primary-button,
.secondary-button,
.primary-link {
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #4c2f07, var(--bronze), #e7b945);
  color: #fff8df;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 244, 199, 0.34);
}

.primary-button::before,
.primary-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.primary-button:hover::before,
.primary-link:hover::before {
  transform: translateX(120%);
}

.primary-button:hover,
.primary-link:hover {
  background: linear-gradient(115deg, #6c4307, var(--accent), #f5d56d);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.primary-button:disabled {
  cursor: not-allowed;
  background: #c5ad71;
}

.secondary-button {
  padding: 0 14px;
  background: rgba(255, 245, 215, 0.92);
  border-color: var(--line);
  color: var(--ink);
  font-weight: 800;
}

.secondary-button:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(214, 171, 69, 0.14);
  transform: translateY(-1px);
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  background: rgba(255, 245, 215, 0.94);
  border-color: var(--line);
}

.icon-button:hover {
  border-color: var(--gold);
  box-shadow: var(--glow);
  transform: translateY(-1px);
}

.cart-icon {
  width: 19px;
  height: 16px;
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.cart-icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 12px;
  height: 8px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b0703;
  font-size: 0.78rem;
  font-weight: 900;
}

.market-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(92vh - 72px);
  padding: clamp(34px, 7vw, 86px) clamp(18px, 5vw, 64px) 44px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 224, 132, 0.54), transparent 27%),
    radial-gradient(circle at 12% 78%, rgba(156, 100, 17, 0.24), transparent 25%),
    linear-gradient(115deg, rgba(124, 77, 10, 0.18), transparent 42%),
    linear-gradient(180deg, #efd591 0%, #e7c778 52%, var(--paper) 100%);
}

.market-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(156, 100, 17, 0.08) 49% 50%, transparent 51%),
    linear-gradient(0deg, transparent 0 48%, rgba(214, 171, 69, 0.1) 49% 50%, transparent 51%);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 45%, black, transparent 58%);
  opacity: 0.7;
  animation: gridDrift 18s linear infinite;
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.shop-layout,
.admin-shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: riseIn 620ms ease both;
}

.hero-copy {
  max-width: 760px;
}

.hero-logo {
  display: block;
  width: min(100%, 560px);
  max-height: 330px;
  object-fit: contain;
  margin: 0 0 20px;
  border-radius: 8px;
  filter: drop-shadow(0 18px 34px rgba(91, 55, 5, 0.16));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.4rem;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #684915;
  font-size: 1.16rem;
}

.hero-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
}

.bottle-scene {
  position: relative;
  width: min(70vw, 300px);
  height: 420px;
  animation: floatBottle 5s ease-in-out infinite;
}

.bottle-scene::before,
.bottle-scene::after {
  content: "";
  position: absolute;
  inset: 44px -18px auto;
  height: 210px;
  border: 1px solid rgba(242, 207, 121, 0.26);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: orbitPulse 4.6s ease-in-out infinite;
}

.bottle-scene::after {
  border-color: rgba(242, 207, 121, 0.22);
  transform: rotate(22deg);
  animation-delay: -1.6s;
}

.bottle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow);
}

.bottle.cap {
  top: 10px;
  width: 94px;
  height: 88px;
  background: #5a3707;
  border-radius: 5px 5px 2px 2px;
}

.bottle.body {
  bottom: 0;
  display: grid;
  place-items: center;
  width: 242px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 38px 38px 12px 12px;
  background:
    linear-gradient(145deg, rgba(255, 241, 191, 0.84), rgba(255, 241, 191, 0.18) 35%, rgba(124, 85, 28, 0.72)),
    linear-gradient(180deg, rgba(242, 207, 121, 0.58), rgba(58, 35, 9, 0.78));
  animation: bottleGlow 3.4s ease-in-out infinite alternate;
}

.bottle.body span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
}

.bottle.body small {
  margin-top: -84px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(28px, 5vw, 64px);
}

.shop-tools {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.field-label,
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 245, 215, 0.96);
  color: var(--ink);
}

.input:focus {
  outline: 2px solid rgba(242, 207, 121, 0.24);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 207, 121, 0.08);
}

.textarea {
  min-height: 112px;
  resize: vertical;
}

.shop-status,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shop-status p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.shop-status a {
  color: var(--gold);
  font-weight: 900;
}

.collection-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.collection-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 245, 215, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.collection-tab small {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(108, 67, 7, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
}

.collection-tab:hover,
.collection-tab.is-active {
  border-color: var(--gold);
  background: linear-gradient(115deg, #4c2f07, var(--bronze), #e7b945);
  color: #fff8df;
  box-shadow: var(--glow);
  transform: translateY(-1px);
}

.collection-tab:hover small,
.collection-tab.is-active small {
  background: rgba(255, 248, 223, 0.22);
  color: #fff8df;
}

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

.product-card,
.admin-form,
.admin-products,
.cart-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: cardEnter 520ms ease both;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(242, 207, 121, 0.17), transparent 32%, rgba(124, 85, 28, 0.24));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-card:hover {
  border-color: rgba(242, 207, 121, 0.58);
  box-shadow: var(--glow);
  transform: translateY(-7px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: #fff0bf;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.product-placeholder {
  display: grid;
  place-items: center;
  width: 88px;
  height: 150px;
  border-radius: 24px 24px 7px 7px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,244,199,0.34) 42%, rgba(156,100,17,0.68)),
    linear-gradient(180deg, rgba(242,207,121,0.7), rgba(108,67,7,0.68));
  box-shadow: 0 12px 24px rgba(91, 55, 5, 0.16);
  color: #fff8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-card:hover .product-placeholder {
  box-shadow: 0 0 34px rgba(242, 207, 121, 0.34);
  transform: translateY(-4px) rotate(-2deg);
}

.product-info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.notes {
  color: var(--muted);
  min-height: 42px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-size: 1.25rem;
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: rgba(36, 23, 7, 0.35);
  backdrop-filter: blur(8px);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100vw, 430px);
  min-height: 100vh;
  border-radius: 0;
  box-shadow: var(--shadow);
  animation: drawerIn 220ms ease both;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
}

.cart-close {
  font-size: 1.5rem;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  overflow: auto;
}

.cart-item,
.admin-product {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cart-item:hover,
.admin-product:hover {
  border-color: rgba(242, 207, 121, 0.42);
  box-shadow: 0 12px 28px rgba(214, 171, 69, 0.12);
  transform: translateY(-2px);
}

.cart-thumb,
.admin-thumb {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff0bf;
}

.cart-thumb img,
.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity button,
.mini-button {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 245, 215, 0.94);
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quantity button:hover,
.mini-button:hover {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(242, 207, 121, 0.24);
  transform: translateY(-1px);
}

.cart-empty {
  display: none;
  padding: 24px 18px;
  color: var(--muted);
}

.cart-empty.is-visible {
  display: block;
}

.cart-footer {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-methods span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 245, 215, 0.94);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--accent-strong);
  color: #fff8df;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 64px);
}

.login-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 460px);
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  background: rgba(255, 245, 215, 0.92);
  border: 1px solid rgba(242, 207, 121, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--glow);
  backdrop-filter: blur(16px);
  animation: riseIn 520ms ease both;
}

.login-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 207, 121, 0.14), transparent 42%, rgba(124, 85, 28, 0.2));
  pointer-events: none;
}

.login-card > * {
  position: relative;
  z-index: 1;
}

.login-card h1 {
  margin-bottom: 4px;
  font-size: 4.2rem;
}

.login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.login-error {
  min-height: 22px;
  margin: 0;
  color: var(--danger);
  font-weight: 800;
}

.admin-shell {
  padding: clamp(28px, 5vw, 64px);
}

.admin-intro {
  max-width: 780px;
  margin-bottom: 26px;
}

.admin-intro h1 {
  margin-bottom: 12px;
  font-size: 5.3rem;
}

.admin-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
}

.admin-form,
.admin-products {
  padding: 18px;
  box-shadow: 0 18px 50px rgba(91, 55, 5, 0.16);
}

.admin-form {
  display: grid;
  gap: 16px;
  align-self: start;
}

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

.file-input {
  padding: 8px;
}

.image-preview {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff0bf;
  color: var(--muted);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.image-preview:hover {
  border-color: var(--gold);
  box-shadow: inset 0 0 32px rgba(242, 207, 121, 0.08);
}

.image-preview img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.form-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-product {
  grid-template-columns: 82px 1fr auto;
}

.admin-product p {
  margin-bottom: 4px;
  color: var(--muted);
}

.danger {
  color: var(--danger);
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(0.001deg);
  }
  to {
    transform: translate3d(72px, 72px, 0) rotate(0.001deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawerIn {
  from {
    transform: translateX(24px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes floatBottle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.34;
    scale: 0.96;
  }
  50% {
    opacity: 0.82;
    scale: 1.04;
  }
}

@keyframes bottleGlow {
  from {
    box-shadow: var(--shadow), 0 0 28px rgba(242, 207, 121, 0.16);
  }
  to {
    box-shadow: var(--shadow), 0 0 44px rgba(214, 171, 69, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  h1,
  .admin-intro h1,
  .login-card h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .market-hero,
  .shop-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .bottle-scene {
    height: 320px;
  }

  .bottle.cap {
    width: 76px;
    height: 68px;
  }

  .bottle.body {
    width: 190px;
    height: 242px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-tools {
    position: static;
  }
}

@media (max-width: 640px) {
  h1,
  .admin-intro h1,
  .login-card h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .site-header,
  .shop-status,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .market-hero {
    min-height: auto;
  }

  .product-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-item,
  .admin-product {
    grid-template-columns: 64px 1fr;
  }

  .cart-item .quantity,
  .admin-actions {
    grid-column: 1 / -1;
  }
}

/* Retail fragrance storefront inspired by bold streetwear marketplace layouts. */
body {
  background: #ffffff;
  color: #050505;
}

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-banner {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px clamp(18px, 3vw, 44px);
  background: #050505;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.retail-header {
  position: sticky;
  top: 0;
  min-height: 108px;
  padding: 12px clamp(18px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dedede;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.retail-header .brand-logo {
  width: 148px;
  height: 70px;
  background: #050505;
  object-fit: contain;
}

.retail-nav {
  flex: 1;
  justify-content: center;
  color: #050505;
  font-size: clamp(0.78rem, 1vw, 1rem);
  text-transform: uppercase;
}

.retail-nav a,
.account-link {
  font-weight: 950;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(28vw, 280px);
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  font-weight: 900;
}

.header-search span {
  color: #050505;
}

.header-search {
  cursor: pointer;
  text-align: left;
}

.header-search strong {
  overflow: hidden;
  color: #444444;
  font-size: 0.9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-checkout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d8d8d8;
  color: #050505;
  font-weight: 950;
  text-transform: uppercase;
}

.drop-hero {
  position: relative;
  min-height: calc(100vh - 150px);
  overflow: hidden;
  background: #0a0603;
}

.hero-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-panel {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 20%, rgba(237, 190, 82, 0.36), transparent 34%),
    linear-gradient(135deg, #3b2106, #bd7421 48%, #160a04);
}

.hero-panel:nth-child(2) {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 229, 142, 0.32), transparent 30%),
    linear-gradient(135deg, #251003, #a55119 52%, #080403);
}

.hero-panel:nth-child(3) {
  background:
    radial-gradient(circle at 50% 24%, rgba(220, 167, 45, 0.28), transparent 32%),
    linear-gradient(135deg, #120805, #72330d 55%, #050505);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.hero-panel img,
.hero-panel .product-placeholder {
  width: min(72%, 360px);
  height: min(64vh, 520px);
  object-fit: cover;
  transform: translateY(28px);
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.45));
}

.hero-panel span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: end;
  min-height: calc(100vh - 150px);
  padding: clamp(160px, 24vh, 280px) clamp(18px, 5vw, 70px) clamp(44px, 7vh, 78px);
  color: #ffffff;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68));
}

.hero-mark {
  width: min(440px, 70vw);
  max-height: 190px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.5));
}

.hero-kicker {
  margin: 0 0 10px;
  color: #f4d47b;
  font-weight: 950;
  text-transform: uppercase;
}

.drop-hero h1 {
  width: min(100%, 900px);
  margin: 0;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.86;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.drop-hero p:not(.hero-kicker) {
  width: min(100%, 680px);
  margin: 16px 0 24px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-button:hover {
  background: #ffffff;
  color: #050505;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.retail-section,
.brand-band,
.support-band,
.vip-footer {
  padding: clamp(34px, 5vw, 70px) clamp(18px, 3vw, 44px);
}

.retail-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.retail-section-head h2,
.brand-band h2,
.support-band h2,
.vip-footer h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.6rem);
  line-height: 0.9;
}

.retail-section-head a {
  font-weight: 950;
  text-decoration: underline;
  text-transform: uppercase;
}

.featured-tiles,
.promo-grid,
.family-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.feature-tile,
.family-tile {
  display: grid;
  gap: 18px;
  min-width: 220px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.feature-tile,
.promo-card,
.family-tile,
.product-image {
  text-decoration: none;
}

.feature-tile img,
.feature-tile .product-placeholder,
.family-tile img,
.family-tile .product-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  background: #eeeeee;
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-tile:hover img,
.feature-tile:hover .product-placeholder,
.family-tile:hover img,
.family-tile:hover .product-placeholder {
  filter: contrast(1.05) saturate(1.1);
  transform: translateY(-5px);
}

.feature-tile span,
.family-tile strong {
  font-weight: 950;
  text-decoration: underline;
}

.promo-card {
  position: relative;
  min-width: 240px;
  min-height: 460px;
  overflow: hidden;
  background: #111111;
}

.promo-media,
.promo-media img,
.promo-media .product-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.promo-media img,
.promo-media .product-placeholder {
  object-fit: cover;
  filter: brightness(0.72) contrast(1.06);
  transition: transform 260ms ease, filter 260ms ease;
}

.promo-card:hover .promo-media img,
.promo-card:hover .promo-media .product-placeholder {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.05);
}

.promo-copy {
  position: absolute;
  inset: auto 18px 30px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.promo-copy span {
  padding: 2px 8px;
  border: 2px solid #ffffff;
  font-weight: 950;
}

.promo-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 0.9;
}

.product-section {
  background: #ffffff;
}

.section-count {
  margin: 8px 0 0;
  color: #555555;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.control-input {
  min-height: 46px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #050505;
  font-weight: 900;
  text-transform: uppercase;
}

.retail-product-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 28px;
}

.retail-product-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.retail-product-card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

.retail-product-card::before {
  display: none;
}

.retail-product-card .product-image {
  aspect-ratio: 1 / 1.33;
  background: #f0f0f0;
}

.retail-product-card .product-info {
  padding: 14px 0 0;
}

.retail-product-card h3 {
  min-height: 42px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.25;
}

.retail-product-card .primary-button {
  min-height: 48px;
  border-radius: 0;
  background: #050505;
  color: #ffffff;
  text-shadow: none;
  text-transform: uppercase;
}

.retail-product-card:hover .primary-button {
  background: #dca72d;
  color: #050505;
}

.brand-band {
  overflow: hidden;
  background: #211f20;
  color: #ffffff;
}

.family-tiles {
  grid-template-columns: repeat(5, minmax(240px, 1fr));
}

.family-tile {
  color: #ffffff;
}

.support-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: #050505;
  color: #ffffff;
  text-align: center;
}

.support-band article {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 24px;
}

.support-band span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-weight: 900;
}

.support-band p,
.vip-footer p {
  max-width: 420px;
  margin: 0 auto;
  color: #e2e2e2;
  font-weight: 850;
  text-transform: uppercase;
}

.support-band a,
.vip-footer a {
  color: #ffffff;
  font-weight: 950;
  text-decoration: underline;
  text-transform: uppercase;
}

.vip-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background: #050505;
  color: #ffffff;
  border-top: 1px solid #555555;
}

.vip-form {
  display: grid;
  width: min(100%, 520px);
  gap: 0;
  margin-top: 28px;
}

.vip-form .input {
  min-height: 62px;
  border-radius: 0;
  border-color: #ffffff;
  background: #050505;
  color: #ffffff;
}

.vip-form .primary-button {
  width: 170px;
  min-height: 58px;
  margin-top: 24px;
  border-radius: 0;
  background: #282828;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 30px;
}

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

.footer-links h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.cart-panel {
  background: #ffffff;
  color: #050505;
}

.search-lock {
  overflow: hidden;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(255, 255, 255, 0.98);
  color: #050505;
}

.site-search-overlay.is-open {
  display: block;
}

.site-search-panel {
  display: grid;
  align-content: start;
  gap: clamp(22px, 4vw, 44px);
  width: min(100%, 1160px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 70px);
}

.site-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-search-head h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
}

.site-search-close,
.checkout-search {
  min-height: 42px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #050505;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-close {
  padding: 0 16px;
}

.checkout-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 14px 0 0;
  padding: 0 14px;
}

.site-search-field {
  display: grid;
  gap: 8px;
}

.site-search-field span {
  color: #606060;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-field input {
  width: 100%;
  min-height: 74px;
  border: 0;
  border-bottom: 2px solid #050505;
  border-radius: 0;
  background: transparent;
  color: #050505;
  font-size: clamp(1.6rem, 4vw, 3.8rem);
  font-weight: 800;
  outline: 0;
}

.site-search-results {
  display: grid;
  gap: 10px;
}

.site-search-count {
  margin: 0 0 6px;
  color: #606060;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-result {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e4e4e4;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.site-search-result:hover {
  background: #f7f7f7;
  transform: translateX(4px);
}

.site-search-thumb {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  overflow: hidden;
  background: #efefef;
}

.site-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-search-thumb span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
}

.site-search-result div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.site-search-result strong {
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-result span,
.site-search-result small {
  color: #606060;
}

.site-search-result b {
  white-space: nowrap;
}

.site-search-empty {
  display: grid;
  gap: 18px;
  padding: 28px 0;
  color: #606060;
  font-weight: 850;
}

.site-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-search-suggestions a {
  padding: 9px 12px;
  border: 1px solid #d8d8d8;
  color: #050505;
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero {
  min-height: 42vh;
  padding: clamp(48px, 8vw, 110px) clamp(18px, 3vw, 44px);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 70% 25%, rgba(220, 167, 45, 0.34), transparent 30%),
    linear-gradient(135deg, #1b0c04, #9c4f15 48%, #050505);
}

.page-hero h1 {
  width: min(100%, 960px);
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 11rem);
  line-height: 0.82;
}

.page-hero p:not(.hero-kicker) {
  width: min(100%, 620px);
  margin: 16px 0 0;
  font-size: 1.16rem;
  font-weight: 850;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 5vw, 70px) clamp(18px, 3vw, 44px);
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 620px;
  background: #eeeeee;
  overflow: hidden;
}

.product-detail-media img,
.product-detail-media .product-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: 0.9;
}

.back-link,
.product-detail-brand {
  color: #555555;
  font-weight: 950;
  text-transform: uppercase;
}

.product-detail-price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 950;
}

.product-add,
.product-checkout {
  width: min(100%, 420px);
  border-radius: 0;
}

.checkout-page {
  background: #f5f5f5;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.74fr);
  min-height: 100vh;
}

.checkout-main {
  padding: clamp(28px, 5vw, 70px) clamp(22px, 7vw, 120px);
  background: #ffffff;
}

.checkout-brand img {
  width: 190px;
  height: 82px;
  object-fit: contain;
  background: #050505;
}

.checkout-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 22px;
  color: #6a6a6a;
  font-size: 0.82rem;
}

.checkout-crumbs > * + *::before {
  content: ">";
  margin-right: 10px;
  color: #a4a4a4;
}

.express-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  text-align: center;
}

.express-box p {
  margin: 0;
  color: #444444;
  font-size: 0.84rem;
  font-weight: 850;
}

.express-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.express-buttons button,
.discount-row button,
.checkout-continue {
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 950;
}

.shop-pay {
  background: #5a31f4;
}

.paypal-pay {
  background: #ffc439;
  color: #083c69 !important;
}

.google-pay {
  background: #050505;
}

.cash-pay {
  background: #00d632;
}

.link-pay {
  background: #00d4ff;
  color: #08111a !important;
}

.checkout-divider {
  position: relative;
  display: grid;
  place-items: center;
  margin: 28px 0;
  color: #888888;
  font-size: 0.78rem;
}

.checkout-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e1e1;
}

.checkout-divider span {
  position: relative;
  padding: 0 16px;
  background: #ffffff;
}

.shopify-checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
}

.checkout-section-head h1,
.shopify-checkout-form h2 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  text-transform: none;
}

.checkout-section-head a,
.checkout-actions a {
  color: #1773b0;
  font-size: 0.86rem;
}

.checkout-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #ffffff;
  color: #252525;
}

.checkout-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  font-size: 0.9rem;
}

.checkout-two,
.checkout-three {
  display: grid;
  gap: 10px;
}

.checkout-two {
  grid-template-columns: repeat(2, 1fr);
}

.checkout-three {
  grid-template-columns: 1.1fr 1fr 0.8fr;
}

.checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.checkout-continue {
  min-width: 190px;
  background: #1773b0;
}

.checkout-summary {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(28px, 5vw, 70px) clamp(20px, 4vw, 52px);
  border-left: 1px solid #dedede;
  background: #f3f3f3;
}

.checkout-items {
  display: grid;
  gap: 14px;
}

.checkout-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
}

.checkout-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background: #ffffff;
}

.checkout-thumb img,
.checkout-thumb .product-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-quantity {
  position: absolute;
  top: -8px;
  left: 52px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  background: #777777;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.checkout-item p {
  margin: 4px 0 0;
  color: #777777;
  font-size: 0.82rem;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
}

.discount-row button {
  background: #bdbdbd;
}

.summary-lines {
  display: grid;
  gap: 12px;
  border-top: 1px solid #dcdcdc;
  padding-top: 18px;
}

.summary-lines p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
}

.shipping-choice {
  display: grid;
  gap: 8px;
}

.shipping-choice label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
}

.shipping-choice label:has(input:checked) {
  border-color: #1773b0;
  box-shadow: 0 0 0 1px #1773b0;
}

.shipping-choice span {
  display: grid;
  gap: 2px;
}

.shipping-choice small {
  color: #777777;
}

.summary-lines small {
  color: #777777;
}

.summary-total {
  padding-top: 18px;
  border-top: 1px solid #dcdcdc;
  font-size: 1.22rem;
}

.site-editor {
  margin-bottom: 24px;
}

.site-form,
.promo-editor,
.promo-edit-card {
  display: grid;
  gap: 16px;
}

.promo-editor {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.promo-edit-card {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.promo-edit-card legend {
  padding: 0 6px;
  color: var(--muted);
  font-weight: 900;
}

.promo-preview {
  min-height: 150px;
}

@media (max-width: 1180px) {
  .retail-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .retail-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-tools {
    width: 100%;
  }

  .header-search {
    width: min(100%, 420px);
  }

  .retail-product-grid,
  .promo-editor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-panels {
    grid-template-columns: 1fr;
  }

  .hero-panel:nth-child(n + 2) {
    display: none;
  }

  .support-band,
  .vip-footer,
  .footer-links,
  .product-detail,
  .checkout-shell,
  .retail-product-grid,
  .promo-editor {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    border-left: 0;
    border-top: 1px solid #dedede;
  }

  .checkout-two,
  .checkout-three,
  .express-buttons {
    grid-template-columns: 1fr;
  }

  .retail-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-tools {
    align-items: stretch;
    flex-direction: column;
  }
}
