:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f5f7fb;
  --surface: #ffffff;
  --soft: #fff7cc;
  --brand: #0b1f5f;
  --brand-dark: #06143f;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --gold: #ffd600;
  --shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
}

body.cart-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 214, 0, 0.22);
  background: rgba(11, 31, 95, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 158px;
  height: 58px;
  display: block;
  border: 1px solid rgba(255, 214, 0, 0.38);
  border-radius: var(--radius);
  background: #ffd600;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--gold);
}

.icon-button,
.cart-toggle {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--surface);
  color: var(--ink);
}

.icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}

.account-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 214, 0, 0.55);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--brand-dark);
  padding: 0 14px;
  font-weight: 850;
}

.account-button svg {
  width: 18px;
  height: 18px;
}

.icon-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.hero {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--brand);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 63, 0.96) 0%, rgba(6, 20, 63, 0.88) 42%, rgba(6, 20, 63, 0.40) 100%),
    url("assets/dog-mania-capa-1600x1000.jpg") right center / auto 100% no-repeat;
  opacity: 0.92;
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 58px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe468;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.45);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.hero-actions,
.section-heading,
.cart-header,
.contact-section {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
}

.button svg,
button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--brand-dark);
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.trust-strip div {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 700;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip svg {
  color: var(--accent);
}

.catalog-section,
.order-section,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.catalog-section {
  padding: 56px 0 28px;
}

.section-heading {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.search-box {
  width: min(100%, 360px);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0 14px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 102px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.sidebar-title {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: var(--brand);
  color: #fff;
}

.sidebar-title span {
  font-size: 18px;
  font-weight: 900;
}

.sidebar-title small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.category-tabs {
  display: grid;
  gap: 6px;
  padding: 10px;
}

.category-tabs button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 10px 0 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.category-tabs button span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-tabs button small {
  min-width: 30px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.category-tabs button[aria-selected="true"] {
  border-color: rgba(249, 115, 22, 0.36);
  background: var(--soft);
  color: var(--brand-dark);
  box-shadow: inset 4px 0 0 var(--accent);
}

.category-tabs button[aria-selected="true"] small {
  background: var(--accent);
  color: #fff;
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 14px;
  margin-bottom: 14px;
  color: var(--muted);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.catalog-toolbar strong {
  color: var(--brand);
  font-size: 16px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--soft);
  overflow: hidden;
}

.product-image.product-packshot {
  background: linear-gradient(180deg, #ffffff 0%, #fff8d0 100%);
  padding: 16px;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-image.product-packshot img {
  object-fit: contain;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card.product-unavailable {
  opacity: 0.72;
}

.product-card.product-unavailable .product-image img {
  filter: grayscale(0.7);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.product-status {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: var(--radius);
  background: #991b1b;
  color: #ffffff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.product-title-row h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.product-price {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.product-description {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.add-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
  margin-top: 4px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-control button {
  width: 32px;
  height: 42px;
  border: 0;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.quantity-control output {
  text-align: center;
  font-weight: 900;
}

.add-cart {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 850;
}

.add-cart:hover {
  background: var(--brand-dark);
}

.quantity-control button:disabled,
.add-cart:disabled {
  cursor: not-allowed;
  background: #cbd5e1;
  color: #475569;
}

.add-cart:disabled:hover {
  background: #cbd5e1;
}

.order-section {
  padding: 52px 0;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.customer-form,
.cart-panel,
.contact-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

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

.form-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 4px;
  color: var(--ink);
}

.form-block-title:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.form-block-title span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.form-block-title strong {
  font-size: 17px;
}

.customer-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.customer-form .full {
  grid-column: 1 / -1;
}

.customer-form input,
.customer-form select,
.customer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px;
  outline-color: var(--brand);
}

.delivery-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
  padding: 14px;
}

.delivery-details[hidden] {
  display: none;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.delivery-rate-preview {
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: #eff6ff;
  color: #1e3a8a;
  padding: 12px;
  font-size: 14px;
  font-weight: 750;
}

.delivery-rate-preview.is-ok {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.delivery-rate-preview.is-warning {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #9a3412;
}

.customer-save-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 14px;
}

.customer-save-actions .button,
.customer-save-actions .text-button {
  min-height: 42px;
}

.customer-save-actions strong {
  display: block;
  color: var(--ink);
}

.customer-save-actions small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 4px;
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.ghost:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.account-modal[hidden] {
  display: none;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 31, 0.58);
  backdrop-filter: blur(8px);
}

.account-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(21, 24, 31, 0.24);
  padding: 22px;
}

.account-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.account-card-header h2 {
  margin: 3px 0 0;
}

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

.account-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.account-form .full {
  grid-column: 1 / -1;
}

.account-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  outline-color: var(--brand);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.account-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.cart-panel {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.cart-header {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cart-header h3 {
  margin: 0;
  font-size: 22px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 850;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.cart-line strong {
  display: block;
  margin-bottom: 3px;
}

.cart-line small {
  color: var(--muted);
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-line-actions button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 146px;
  color: var(--muted);
  text-align: center;
}

.cart-empty p {
  margin: 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.cart-total strong {
  font-size: 24px;
}

.full-button {
  width: 100%;
  margin-top: 16px;
}

.contact-section {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding: 28px;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.55;
}

.floating-cart {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.mobile-action-bar {
  display: none;
}

.mobile-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(24, 32, 28, 0.42);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .main-nav {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 118px;
    height: 46px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 12px;
  }

  .hero {
    min-height: 390px;
    align-items: center;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(6, 20, 63, 0.98) 0%, rgba(6, 20, 63, 0.86) 55%, rgba(6, 20, 63, 0.58) 100%),
      url("assets/dog-mania-capa-1600x1000.jpg") center top / cover;
  }

  .hero-content {
    padding: 46px 0 52px;
  }

  .hero h1 {
    max-width: 420px;
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero p:not(.eyebrow) {
    max-width: 460px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 12px;
    text-align: center;
  }

  .trust-strip,
  .catalog-layout,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .sidebar-title {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .category-tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
  }

  .category-tabs button {
    min-width: 160px;
    flex: 0 0 auto;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

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

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .cart-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    top: auto;
    z-index: 35;
    max-height: min(72vh, 620px);
    overflow: auto;
    transform: translateY(calc(100% + 24px));
    transition: transform 180ms ease;
  }

  body.cart-open .cart-panel {
    transform: translateY(0);
  }

  .floating-cart {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 34;
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid rgba(11, 31, 95, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(23, 23, 23, 0.18);
    padding: 8px;
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    min-width: 0;
    border: 0;
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
    display: grid;
    place-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 850;
  }

  .mobile-action-bar a:last-child {
    background: var(--accent);
    color: #fff;
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .catalog-section,
  .order-section,
  .contact-section,
  .trust-strip,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .icon-button {
    display: none;
  }

  .account-button {
    padding: 0 11px;
  }

  .account-button span {
    display: none;
  }

  .account-card .icon-button {
    display: grid;
  }

  .hero {
    min-height: 420px;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-content {
    padding-top: 48px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .customer-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .delivery-details {
    grid-template-columns: 1fr;
  }

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

  .add-row {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    border-radius: 6px;
  }

  .product-title-row {
    align-items: start;
    flex-direction: column;
  }

  .product-price {
    font-size: 22px;
  }
}
