:root {
  --ink: #1b1714;
  --coffee: #33241c;
  --cream: #f7efe3;
  --paper: #fff9ef;
  --gold: #d9a43b;
  --rose: #b66a5b;
  --sage: #75806b;
  --shadow: 0 24px 70px rgba(24, 17, 12, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  z-index: 20;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 164, 59, 0.2), transparent 65%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--paper);
  transform: translateX(-50%);
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 249, 239, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(37, 26, 18, 0.16);
  backdrop-filter: blur(18px);
}

.hero-panel,
.cart,
.quick-view,
.scent-quiz {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: currentColor;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  max-width: 0;
  overflow: hidden;
  object-fit: contain;
  opacity: 0;
  margin-right: 0;
  transition: max-width 250ms ease, opacity 250ms ease, margin-right 250ms ease;
}

.site-header.scrolled .brand-logo,
.site-header.menu-active .brand-logo {
  max-width: 52px;
  opacity: 1;
  margin-right: 10px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(217, 164, 59, 0.22);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px max(24px, calc((100vw - 1120px) / 2)) 56px;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("images/Reception-52_Original.jpg")
    center 58%/cover;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 14, 10, 0.84), rgba(21, 14, 10, 0.4) 48%, rgba(21, 14, 10, 0.08)),
    linear-gradient(0deg, rgba(21, 14, 10, 0.7), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: 18vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.95;
  max-width: 850px;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 249, 239, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.card-actions,
.filters,
.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter,
.card button,
.quiz-options button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  padding: 0 20px;
}

.button:hover,
.filter:hover,
.card button:hover,
.quiz-options button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(217, 164, 59, 0.24);
}

.secondary {
  background: rgba(255, 249, 239, 0.12);
  color: var(--paper);
  outline: 1px solid rgba(255, 255, 255, 0.24);
}

.full {
  width: 100%;
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 58px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel p {
  color: rgba(255, 249, 239, 0.72);
}

.hero-panel strong {
  display: block;
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.section {
  padding: 110px max(24px, calc((100vw - 1120px) / 2));
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: 50px;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-grid article,
.product-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(45, 31, 20, 0.08);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rose);
  font-weight: 900;
}

.intro-grid p,
.story-content p,
.custom-copy p,
.custom-options p,
.studio-copy p,
.order-copy p,
.product-card p,
.quick-view p,
.quick-view dd {
  color: rgba(27, 23, 20, 0.68);
  line-height: 1.65;
}

.story {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) 1.22fr;
  gap: 56px;
  align-items: start;
  background: linear-gradient(135deg, #fff9ef 0%, #f4eadb 55%, #efe0c9 100%);
}

.story-heading {
  position: sticky;
  top: 120px;
}

.story-heading h2 {
  max-width: 420px;
}

.story-content {
  padding: 34px;
  border-left: 1px solid rgba(27, 23, 20, 0.14);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 46px rgba(45, 31, 20, 0.08);
}

.story-content p {
  margin-bottom: 18px;
  font-size: 1.03rem;
}

.story-content blockquote {
  margin: 30px 0 24px;
  padding: 24px 0 24px 26px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.story-content a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.story-content a:hover {
  background: var(--coffee);
  transform: translateY(-2px);
}

.collection {
  background: var(--paper);
}

.custom {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(27, 23, 20, 0.9), rgba(27, 23, 20, 0.72)),
    url("images/bridesmaid%20hamper.JPG") center/cover;
  color: var(--paper);
}

.custom-copy {
  max-width: 650px;
}

.custom-copy p {
  max-width: 560px;
  color: rgba(255, 249, 239, 0.74);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.custom-options {
  display: grid;
  gap: 14px;
}

.custom-options article {
  padding: 22px;
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.1);
  backdrop-filter: blur(14px);
}

.custom-options span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.custom-options h3 {
  color: var(--paper);
}

.custom-options p {
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.7);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  max-width: 720px;
}

.filters {
  margin: 22px 0 32px;
}

.filter {
  padding: 0 18px;
  background: #efe3d1;
  color: var(--coffee);
}

.filter.active {
  background: var(--ink);
  color: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 380ms ease, opacity 380ms ease, box-shadow 220ms ease;
}

.product-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newly-launched {
  background: var(--cream);
}

.mood-shop {
  background: var(--paper);
}

.mood-group {
  margin-top: 44px;
}

.mood-group-label {
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 23, 20, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--coffee);
}

.mood-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 24px;
  border: 1px solid rgba(27, 23, 20, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--coffee);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mood-show-more:hover {
  background: #efe3d1;
  border-color: rgba(27, 23, 20, 0.3);
  transform: translateY(-2px);
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  transition: transform 600ms ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-meta span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.product-count {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin: 12px 0 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(117, 128, 107, 0.12);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-count:empty {
  display: none;
}

.product-count.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-action {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid rgba(27, 23, 20, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.card-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.card-action:hover,
.card-action:focus-visible {
  transform: translateY(-2px);
}

.card-action:hover::before,
.card-action:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.card-action:focus-visible {
  outline: 2px solid rgba(217, 164, 59, 0.45);
  outline-offset: 3px;
}

.preview-action {
  background: rgba(255, 249, 239, 0.55);
  color: var(--coffee);
  backdrop-filter: blur(12px);
}

.preview-action::before {
  background: rgba(27, 23, 20, 0.07);
}

.preview-action:hover,
.preview-action:focus-visible {
  border-color: rgba(27, 23, 20, 0.22);
  box-shadow: 0 12px 26px rgba(45, 31, 20, 0.1);
}

.add-action {
  min-width: 112px;
  border-color: rgba(217, 164, 59, 0.44);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 26px rgba(27, 23, 20, 0.18);
}

.add-action::before {
  background: linear-gradient(135deg, var(--gold), #f0c96d);
}

.add-action:hover,
.add-action:focus-visible {
  border-color: transparent;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(217, 164, 59, 0.22);
}

.studio {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 64px;
  align-items: center;
  background: #f4eadb;
}

.studio-image {
  min-height: 580px;
  border-radius: 8px;
  background:
    url("images/Coffe%20Glass%20Large.PNG")
    center/cover;
  box-shadow: var(--shadow);
}

.studio-copy {
  max-width: 620px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stats div {
  padding: 18px;
  border-top: 1px solid rgba(27, 23, 20, 0.16);
}

.stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.stats span {
  color: rgba(27, 23, 20, 0.62);
  font-size: 0.9rem;
}

.order {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 44px;
  align-items: start;
  background: var(--ink);
  color: var(--paper);
}

.order-copy p {
  max-width: 560px;
  color: rgba(255, 249, 239, 0.7);
}

.cart {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.cart h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 249, 239, 0.16);
}

.cart-item button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.13);
  color: var(--paper);
  cursor: pointer;
}

.empty-cart {
  color: rgba(255, 249, 239, 0.62);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(24px, calc((100vw - 1120px) / 2));
  background: #120f0d;
  color: rgba(255, 249, 239, 0.75);
}

.footer p {
  margin: 0;
  font-weight: 900;
}

.footer-brand {
  color: var(--paper);
}

.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer div {
  display: flex;
  gap: 20px;
}

dialog {
  max-width: min(900px, calc(100% - 32px));
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(18, 15, 13, 0.68);
  backdrop-filter: blur(8px);
}

.quick-view,
.scent-quiz {
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-view[open] {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  padding: 18px;
}

.quick-view img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border-radius: 8px;
  object-fit: cover;
}

.quick-view > div {
  padding: 24px 18px 18px 0;
}

.quick-view h3,
.scent-quiz h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.quick-view dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.quick-view dt {
  font-weight: 900;
}

.quick-view dd {
  margin: 4px 0 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 23, 20, 0.72);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.4rem;
}

.scent-quiz {
  width: min(560px, calc(100% - 32px));
  padding: 34px;
}

.quiz-options {
  margin-top: 24px;
}

.quiz-options button {
  flex: 1 1 150px;
  padding: 0 16px;
  background: #efe3d1;
  color: var(--coffee);
}

.quiz-result {
  margin-top: 22px;
  color: rgba(27, 23, 20, 0.72);
  line-height: 1.6;
}

.quiz-result strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.38);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float-text {
  white-space: nowrap;
}

.whatsapp-float-badge {
  display: none;
  min-width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #25d366;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-float.has-items .whatsapp-float-badge {
  display: inline-flex;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1) translateY(0); }
  35%  { transform: scale(1.13) translateY(-4px); }
  65%  { transform: scale(0.97) translateY(-1px); }
  100% { transform: scale(1) translateY(0); }
}

.whatsapp-float.pulse {
  animation: whatsapp-pulse 420ms ease;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  min-height: 40px;
  border: 1px solid rgba(27, 23, 20, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--coffee);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slider-btn:hover:not(:disabled) {
  background: #efe3d1;
  border-color: rgba(27, 23, 20, 0.3);
  transform: translateY(-2px);
}

.slider-btn:disabled {
  opacity: 0.38;
  cursor: default;
}

.slider-btn svg {
  flex-shrink: 0;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 640ms ease var(--delay, 0ms), opacity 640ms ease var(--delay, 0ms);
}

.reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 249, 239, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-bottom: 180px;
  }

  .hero-panel {
    right: 24px;
    bottom: 32px;
  }

  .intro,
  .story,
  .custom,
  .studio,
  .order,
  .quick-view[open] {
    grid-template-columns: 1fr;
  }

  .story-heading {
    position: static;
  }

  .intro-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .studio-image {
    min-height: 420px;
  }

  .quick-view > div {
    padding: 0 6px 12px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 112px;
  }

  .hero {
    min-height: 96vh;
    padding-top: 110px;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-heading {
    display: block;
  }

  .story-content {
    padding: 24px;
  }

  .intro-grid,
  .product-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .product-card img {
    aspect-ratio: 1 / 0.86;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .add-action {
    width: 100%;
  }

  .cart {
    position: static;
  }

  .footer {
    display: grid;
  }

  .footer div {
    flex-wrap: wrap;
  }

  .quick-view img {
    min-height: 280px;
  }
}
