:root {
  --bg: #f8efe1;
  --bg-deep: #efd3a5;
  --surface: rgba(255, 250, 243, 0.88);
  --surface-strong: #fff6eb;
  --text: #4a2614;
  --text-soft: #805238;
  --accent: #8d3e12;
  --accent-deep: #66260d;
  --accent-gold: #d6862f;
  --accent-green: #7b8c38;
  --line: rgba(97, 56, 28, 0.14);
  --shadow: 0 22px 55px rgba(102, 38, 13, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 222, 158, 0.9), transparent 32%),
    radial-gradient(circle at bottom right, rgba(131, 154, 63, 0.22), transparent 28%),
    linear-gradient(180deg, #f7e2b8 0%, #f8efe1 35%, #fff8ef 100%);
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

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

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: -100px;
  left: -100px;
  background: rgba(255, 187, 79, 0.45);
}

.page-glow-right {
  right: -160px;
  top: 30%;
  background: rgba(126, 146, 44, 0.26);
}

.site-header,
.section,
.site-footer,
.trust-bar,
.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-top: 18px;
  background: rgba(255, 247, 236, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 24px;
}

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

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
}

.brand h1,
.site-footer h3,
.hero-copy h2,
.section-heading h2,
.story-card h2,
.modal-card h2 {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: 0.02em;
}

.brand-kicker,
.eyebrow,
.hero-card p,
.site-footer p,
.panel-header p,
.admin-hint,
.story-card p,
.testimonial-card p {
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent));
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  box-shadow: inset 0 0 0 1px rgba(139, 83, 38, 0.12);
  font-weight: 700;
}

.menu-toggle-box {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle-box span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ghost-button,
.cart-button,
.primary-button,
.secondary-button,
.icon-button,
.tab-button {
  border: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.ghost-button,
.secondary-button {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  box-shadow: inset 0 0 0 1px rgba(139, 83, 38, 0.12);
}

.ghost-button-dark {
  background: rgba(102, 38, 13, 0.08);
}

.cart-button,
.primary-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  color: #fff9ef;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(141, 62, 18, 0.24);
}

.secondary-button {
  font-weight: 700;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(102, 38, 13, 0.08);
  color: var(--accent-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.ghost-button:hover,
.cart-button:hover,
.primary-button:hover,
.secondary-button:hover,
.icon-button:hover,
.tab-button:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  margin-left: 10px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 54px 0 30px;
  align-items: center;
}

.hero-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin-top: 12px;
}

.hero-copy p {
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero-highlights,
.hero-actions,
.hero-stats,
.filter-chips,
.coupon-list,
.footer-links,
.tab-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-highlights span,
.filter-chip,
.hero-stats article,
.hero-card,
.category-card,
.product-card,
.testimonial-card,
.story-card,
.panel-card,
.metric-card,
.order-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-highlights span,
.filter-chip {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent-deep);
}

.hero-actions {
  margin-top: 26px;
}

.hero-stats {
  margin-top: 28px;
}

.hero-stats article {
  min-width: 160px;
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(251, 197, 95, 0.58), transparent 18%),
    linear-gradient(140deg, rgba(142, 62, 18, 0.16), rgba(255, 255, 255, 0.22)),
    linear-gradient(180deg, #f2c16a, #f3e0bb);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.hero-card-main {
  top: 72px;
  left: 34px;
  width: 250px;
  animation: floaty 7s ease-in-out infinite;
}

.hero-card-accent {
  right: 26px;
  bottom: 54px;
  width: 220px;
  animation: floaty 8s ease-in-out infinite reverse;
}

.hero-card h3 {
  margin: 6px 0;
  font-size: 1.6rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.95;
  filter: blur(0.3px);
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  right: 60px;
  top: 52px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.5), transparent 22%),
    radial-gradient(circle at 50% 50%, #ca7526 0 20%, #edaa53 21% 36%, #a34c18 37% 42%, transparent 43%),
    radial-gradient(circle at 50% 50%, rgba(246, 211, 144, 0.62), transparent 74%);
}

.hero-orb-2 {
  width: 180px;
  height: 180px;
  left: 150px;
  bottom: 34px;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.55), transparent 18%),
    radial-gradient(circle at 50% 50%, #7b8c38 0 28%, #f6d287 29% 47%, transparent 48%);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 8px;
}

.trust-bar div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--accent-deep);
  text-align: center;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(141, 62, 18, 0.08);
}

.section {
  padding: 42px 0;
}

.section-tint {
  position: relative;
}

.section-tint::before {
  content: "";
  position: absolute;
  inset: 16px -24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 243, 228, 0.72), rgba(255, 247, 239, 0.46));
  z-index: -1;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 10px;
}

.section-heading p {
  max-width: 62ch;
  color: var(--text-soft);
  line-height: 1.7;
}

.shop-tools {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.search-field input,
.shop-tools select,
.coupon-strip input,
.checkout-grid input,
.checkout-grid select,
.auth-form input,
.coupon-form input,
.coupon-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(118, 63, 27, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
}

.search-field {
  min-width: min(320px, 100%);
}

.shop-tools select {
  min-width: 190px;
}

.filter-chip {
  border: 0;
}

.filter-chip.active,
.tab-button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  color: #fff8f0;
}

.category-grid,
.product-grid,
.metrics-grid,
.testimonial-grid,
.order-grid {
  display: grid;
  gap: 20px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  min-height: 220px;
}

.category-visual {
  height: 118px;
  border-radius: 18px;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
}

.category-card h3,
.product-card h3,
.story-card h3,
.panel-card h3,
.cart-row h4,
.order-card h3,
.metric-card h3 {
  margin: 0 0 8px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.category-card p,
.product-card p,
.metric-card p,
.order-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.product-card {
  overflow: hidden;
  border-radius: 26px;
}

.product-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
}

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-content {
  padding: 20px;
}

.product-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.price-stack {
  text-align: right;
}

.price-stack strong {
  display: block;
  font-size: 1.4rem;
}

.price-stack span {
  color: var(--text-soft);
  text-decoration: line-through;
}

.variant-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 14px;
}

.variant-pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(102, 38, 13, 0.08);
  color: var(--accent-deep);
  cursor: pointer;
  font-weight: 700;
}

.variant-pill.active {
  background: rgba(123, 140, 56, 0.18);
  box-shadow: inset 0 0 0 1px rgba(123, 140, 56, 0.18);
}

.product-meta,
.cart-meta,
.summary-row,
.coupon-card,
.inventory-row,
.orders-row,
.customers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta {
  margin-bottom: 16px;
}

.product-card .primary-button {
  width: 100%;
  justify-content: center;
}

.story-layout,
.admin-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.story-card,
.panel-card,
.metric-card,
.testimonial-card,
.order-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.story-card-highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 238, 210, 0.92));
}

.contact-preview-card {
  display: grid;
  gap: 16px;
}

.location-mini-map,
.map-art {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.72), transparent 16%),
    radial-gradient(circle at 72% 42%, rgba(255, 213, 126, 0.72), transparent 20%),
    linear-gradient(140deg, rgba(122, 140, 56, 0.24), rgba(255, 245, 230, 0.3)),
    linear-gradient(180deg, #f4d296, #f8edd9);
  box-shadow: inset 0 0 0 1px rgba(113, 72, 38, 0.08);
}

.location-mini-map {
  min-height: 180px;
}

.location-mini-map::before,
.map-art::before {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border-radius: 28px;
  border: 10px solid rgba(141, 62, 18, 0.18);
  transform: rotate(-8deg);
}

.location-mini-map::after,
.map-art::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  transform: rotate(-45deg);
  left: calc(50% - 26px);
  top: calc(50% - 40px);
  box-shadow: 0 10px 24px rgba(141, 62, 18, 0.2);
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 1.8;
  color: var(--text-soft);
}

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

.account-panel {
  padding-top: 10px;
}

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

.order-card small {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
}

.table-shell {
  display: grid;
  gap: 10px;
}

.inventory-row,
.orders-row,
.customers-row,
.coupon-card,
.cart-row {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid rgba(128, 82, 56, 0.09);
}

.inventory-row input,
.orders-row select {
  max-width: 96px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(118, 63, 27, 0.12);
}

.coupon-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.coupon-list {
  align-items: stretch;
}

.coupon-card {
  flex: 1 1 220px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100vh;
  padding: 22px;
  background: linear-gradient(180deg, #fff7ed, #fff1df);
  box-shadow: -20px 0 60px rgba(74, 38, 20, 0.18);
  transform: translateX(102%);
  transition: transform 220ms ease;
  z-index: 30;
  overflow-y: auto;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(55, 24, 10, 0.32);
  backdrop-filter: blur(3px);
  z-index: 20;
}

.cart-header,
.coupon-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

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

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
}

.cart-thumb {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.cart-meta {
  align-items: start;
  margin-top: 8px;
}

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

.qty-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: rgba(102, 38, 13, 0.1);
  cursor: pointer;
}

.coupon-message,
.form-message {
  min-height: 24px;
  margin: 12px 0;
  color: var(--accent-deep);
  font-weight: 700;
}

.billing-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin: 18px 0 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.summary-row strong {
  font-size: 1.22rem;
}

.checkout-form {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

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

.checkout-button {
  width: 100%;
}

.contact-hero {
  padding-bottom: 12px;
}

.contact-visual {
  display: grid;
  place-items: center;
}

.contact-address-badge,
.contact-card,
.contact-form-shell {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
}

.contact-address-badge {
  max-width: 330px;
  padding: 24px;
}

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

.contact-card,
.contact-form-shell {
  padding: 24px;
}

.contact-address {
  font-size: 1.24rem;
  line-height: 1.7;
  color: var(--accent-deep);
}

.contact-points {
  display: grid;
  gap: 14px;
}

.contact-point {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.8);
}

.map-art {
  min-height: 280px;
  margin: 16px 0;
}

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

.contact-form-grid textarea {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 150px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(118, 63, 27, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
  resize: vertical;
  font: inherit;
}

.contact-form-grid button {
  width: fit-content;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(48, 21, 8, 0.42);
  backdrop-filter: blur(8px);
  padding: 18px;
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffaf2, #fff2e1);
  box-shadow: 0 24px 60px rgba(74, 38, 20, 0.26);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.tab-button {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(102, 38, 13, 0.08);
  color: var(--accent-deep);
  font-weight: 700;
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 42px;
}

.footer-links {
  font-weight: 700;
}

.reveal {
  animation: riseIn 800ms ease both;
}

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

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

@media (max-width: 1080px) {
  .hero,
  .story-layout,
  .admin-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .brand {
    justify-content: flex-start;
    text-align: left;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 6px;
  }

  .site-header.menu-open .header-menu {
    display: grid;
    gap: 14px;
  }

  .main-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .main-nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px rgba(139, 83, 38, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions > * {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-card-main {
    top: 28px;
    left: 20px;
  }

  .hero-card-accent {
    right: 18px;
    bottom: 18px;
  }

  .product-grid,
  .category-grid,
  .metrics-grid,
  .testimonial-grid,
  .order-grid,
  .checkout-grid,
  .coupon-form,
  .contact-form-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .product-topline,
  .inventory-row,
  .orders-row,
  .customers-row,
  .site-footer,
  .section-heading-inline {
    flex-direction: column;
    align-items: start;
  }

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

  .cart-thumb {
    width: 100%;
    height: 180px;
  }
}
