/*
 * Roselle Store presentation layer.
 */

:root {
  --cream: #f8f2ed;
  --paper: #fffdf9;
  --peach: #ebb0a3;
  --coral: #d96257;
  --wine: #6d1b2b;
  --ink: #2a1918;
  --muted: #796664;
  --line: rgba(42, 25, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.announcement {
  display: grid;
  min-height: 35px;
  place-items: center;
  color: white;
  background: var(--wine);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement span {
  padding: 0 9px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(42, 25, 24, 0.1);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Italiana", serif;
  font-size: 20px;
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  gap: 38px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.language-select {
  position: relative;
  display: flex;
  align-items: center;
}

.language-select::after {
  position: absolute;
  right: 11px;
  color: var(--wine);
  content: "⌄";
  font-size: 12px;
  pointer-events: none;
}

.language-select select {
  min-height: 36px;
  padding: 0 29px 0 13px;
  border: 1px solid rgba(109, 27, 43, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.78);
  cursor: pointer;
  appearance: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  outline: 0;
}

.language-select select:hover,
.language-select select:focus {
  border-color: var(--wine);
  color: var(--wine);
}

.bag-button {
  justify-self: end;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag-count {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-left: 8px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--wine);
}

.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 690px;
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 70px 8vw;
}

.eyebrow,
.mini-label {
  margin: 0 0 19px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  font-family: "Italiana", serif;
  font-weight: 400;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(58px, 5.6vw, 93px);
  line-height: 0.91;
  letter-spacing: -0.04em;
}

h1 em {
  color: var(--coral);
  font-weight: inherit;
}

.hero-description {
  max-width: 515px;
  margin: 34px 0 31px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--wine);
}

.button-primary:hover {
  background: #861f34;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-proof {
  display: flex;
  gap: 22px;
  margin-top: 55px;
}

.hero-proof div {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border: 0;
}

.hero-proof strong {
  font-family: "Italiana", serif;
  font-size: 17px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(109, 27, 43, 0.04), rgba(235, 176, 163, 0.36)),
    #efd0c9;
}

.hero-arch {
  position: absolute;
  width: 67%;
  height: 78%;
  bottom: 0;
  border-radius: 48% 48% 0 0;
  background: rgba(255, 247, 242, 0.48);
}

.image-frame {
  position: relative;
  z-index: 2;
  width: min(73%, 580px);
  box-shadow: 0 30px 80px rgba(109, 27, 43, 0.12);
  transform: rotate(1.5deg);
}

.image-frame::before {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  content: "";
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 15%;
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: white;
  background: var(--wine);
  box-shadow: 0 10px 30px rgba(109, 27, 43, 0.2);
  transform: rotate(-8deg);
}

.floating-note span {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.floating-note strong {
  font-family: "Italiana", serif;
  font-size: 22px;
  font-weight: 400;
}

.seal {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 8%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(109, 27, 43, 0.38);
  border-radius: 50%;
  color: var(--wine);
  transform: rotate(-11deg);
}

.seal span {
  position: absolute;
  top: 14px;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.seal b {
  font-size: 26px;
  font-weight: 400;
}

.occasion-strip {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: space-around;
  padding: 0 5vw;
  color: white;
  background: var(--wine);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.occasion-strip i {
  color: var(--peach);
  font-style: normal;
}

.section {
  padding: 120px 8vw;
}

.collections {
  background: var(--paper);
}

.collections-heading,
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.collections-heading > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--muted);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ead1ca;
  cursor: pointer;
  text-align: left;
}

.category-card::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(36, 20, 21, 0.78));
  content: "";
}

.category-card img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card > span {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  color: white;
  flex-direction: column;
}

.category-card small {
  color: #f0b8aa;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.category-card strong {
  font-family: "Italiana", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.15;
}

.category-card em {
  margin-top: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 9vw;
  align-items: center;
}

.story-image-wrap {
  position: relative;
  min-height: 570px;
  background: #edcdc4;
}

.story-image-wrap > img {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 80%;
  box-shadow: 0 22px 45px rgba(55, 25, 24, 0.15);
}

.story-card {
  position: absolute;
  z-index: 2;
  top: 13%;
  left: -5%;
  width: 245px;
  padding: 35px;
  color: white;
  background: var(--wine);
}

.story-card .mini-label {
  margin-bottom: 13px;
  color: var(--peach);
}

.story-card p:last-child {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: 25px;
  line-height: 1.25;
}

h2 {
  margin: 0;
  font-size: clamp(46px, 4.5vw, 69px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.story-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: var(--muted);
}

.story-copy .text-link {
  margin-top: 34px;
}

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

.classic-showcase {
  background: var(--paper);
}

.classic-showcase-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 52px;
}

.classic-showcase-heading > p {
  max-width: 620px;
  margin: 0 0 8px;
  color: var(--muted);
}

.classic-gallery {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.7fr));
  gap: 18px;
}

.classic-gallery article {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  background: var(--cream);
}

.classic-gallery-main {
  grid-row: span 2;
}

.classic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.classic-gallery article > span,
.classic-gallery-main div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.88);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.classic-gallery-main div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.classic-gallery-main strong {
  font-family: "Italiana", serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.included-gifts {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.72fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.included-gifts > div,
.included-gifts article {
  min-height: 230px;
  padding: 28px;
  background: var(--cream);
}

.included-gifts > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.included-gifts h3 {
  max-width: 380px;
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
}

.included-gifts article {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 18px;
}

.included-gifts img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.included-gifts strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-gifts small {
  display: block;
  margin-top: -10px;
  color: var(--muted);
  font-size: 11px;
}

.details {
  background: var(--cream);
}

.catalog {
  background: var(--cream);
}

.catalog-heading {
  margin-bottom: 34px;
}

.product-count {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-count strong {
  color: var(--ink);
  font-family: "Italiana", serif;
  font-size: 24px;
  font-weight: 400;
}

.catalog-filters {
  display: flex;
  gap: 9px;
  margin-bottom: 42px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.catalog-filters::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 41px;
  padding: 0 20px;
  border: 1px solid rgba(109, 27, 43, 0.25);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--wine);
  color: white;
  background: var(--wine);
}

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

.product-card[hidden] {
  display: none;
}

.product-card-image {
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 450ms ease;
}

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

.peach-bg {
  background: #f0d2ca;
}

.blush-bg {
  background: #f1dcd8;
}

.wine-bg {
  background: #d7bebc;
}

.ivory-bg {
  background: #f0eae2;
}

.lilac-bg {
  background: #e7dce9;
}

.violet-bg {
  background: #ded3e6;
}

.panda-bg {
  background: #e5e2dd;
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: white;
  background: var(--wine);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.quick-add {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-height: 45px;
  border: 0;
  color: white;
  background: rgba(109, 27, 43, 0.94);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: 180ms ease;
}

.product-card-copy .quick-add {
  position: static;
  display: inline-flex;
  width: 100%;
  min-height: 45px;
  margin-top: 14px;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: none;
}

.woocommerce-price {
  display: block;
  min-height: 24px;
  color: var(--wine) !important;
  font-weight: 600;
}

.empty-catalog {
  grid-column: 1 / -1;
  padding: 60px;
  color: var(--muted);
  background: var(--paper);
  text-align: center;
}

.wp-content,
.woocommerce-shell {
  min-height: 60vh;
}

.wp-content h1,
.woocommerce-shell h1 {
  font-family: "Italiana", serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
}

.woocommerce-shell .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 0;
  color: white;
  background: var(--wine);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--wine);
}

.single-product .woocommerce-shell,
.woocommerce-checkout .woocommerce-shell,
.woocommerce-cart .woocommerce-shell {
  width: min(1180px, calc(100% - 40px));
  padding-top: 58px;
  padding-bottom: 86px;
}

.single-product .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(360px, 0.8fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.single-product .woocommerce div.product div.images {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
}

.single-product .woocommerce-product-gallery__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 16px;
  align-items: start;
  margin: 0;
}

.single-product .woocommerce-product-gallery__image {
  margin: 0;
  background: #f7efec;
}

.single-product .woocommerce-product-gallery__image:first-child {
  grid-row: 1 / span 8;
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 34px;
}

.single-product .woocommerce-product-gallery__image:not(:first-child) {
  width: 92px !important;
  height: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.single-product .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.single-product .woocommerce-product-gallery__image img {
  object-fit: contain;
}

.single-product .woocommerce-product-gallery__image:first-child img {
  max-height: 520px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
  display: none;
}

.single-product .woocommerce-product-gallery__trigger {
  top: 18px !important;
  right: 124px !important;
}

.single-product .entry-summary {
  padding: 18px 0 0;
}

.single-product .product_title {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Italiana", serif;
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
}

.single-product .woocommerce-product-details__short-description {
  max-width: 540px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.single-product .summary .price {
  margin: 0 0 22px;
  color: var(--wine);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.roselle-product-includes {
  margin: 0 0 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: #fbf6f1;
}

.roselle-product-includes p {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roselle-product-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roselle-product-includes li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}

.roselle-product-includes li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.single-product form.variations_form {
  max-width: 560px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(69, 39, 36, 0.08);
}

.single-product table.variations {
  margin: 0 0 16px;
}

.single-product table.variations tr {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.single-product table.variations th,
.single-product table.variations td {
  display: block;
  padding: 0;
  line-height: 1.3;
}

.single-product table.variations label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.single-product table.variations select,
.woocommerce-checkout .select2-container .select2-selection--single,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 44px;
  border: 1px solid #e3d8d3;
  border-radius: 0;
  background: #fffdf9;
  color: var(--ink);
  font-size: 13px;
}

.single-product .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-product .single_variation {
  margin: 12px 0 18px;
}

.single-product .woocommerce-variation-price .price {
  margin: 0;
  font-size: 20px;
}

.single-product .woocommerce-variation-availability {
  color: var(--muted);
  font-size: 12px;
}

.single-product .woocommerce div.product form.cart div.quantity {
  margin-right: 12px;
}

.single-product .quantity .qty {
  width: 72px;
  min-height: 48px;
  border: 1px solid #e3d8d3;
  background: #fffdf9;
}

.single-product .single_add_to_cart_button,
.woocommerce-checkout #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 48px;
  padding: 0 28px !important;
  border-radius: 0 !important;
  background: var(--wine) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-product .product_meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.single-product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 34px;
}

.single-product .woocommerce-tabs ul.tabs {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--line);
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.single-product .woocommerce-tabs .panel {
  max-width: 780px;
  padding: 32px 0 0;
}

.single-product .woocommerce-tabs .panel h2,
.roselle-product-story h2,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout h3#order_review_heading {
  margin: 0 0 20px;
  font-family: "Italiana", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

.roselle-product-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  margin: 46px 0 28px;
  padding: 54px;
  background: #fbf6f1;
}

.roselle-product-story > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.roselle-story-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 0.82fr;
  gap: 14px;
}

.roselle-story-grid img {
  width: 100%;
  height: 180px;
  border: 1px solid #eadfda;
  object-fit: contain;
  object-position: center;
  background: #fffdf9;
}

.roselle-story-grid img:first-child {
  grid-row: span 2;
  grid-column: span 1;
  height: 374px;
  padding: 18px;
  object-fit: contain;
}

/* Product page refinement */
.single-product .woocommerce-shell {
  width: min(1240px, calc(100% - 48px));
  padding-top: 46px;
}

.single-product .woocommerce div.product {
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 0.82fr);
  gap: clamp(42px, 5vw, 72px);
}

.single-product .woocommerce div.product div.images {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid #eadfda;
  background: #f8f0ec;
}

.single-product .woocommerce-product-gallery {
  display: flex;
  flex-direction: column;
  opacity: 1 !important;
}

.single-product .woocommerce-product-gallery__wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.single-product .woocommerce-product-gallery__image {
  border: 1px solid #eadfda;
  background: #fffdf9;
}

.single-product .woocommerce-product-gallery__image:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 26px;
}

.single-product .woocommerce-product-gallery__image:not(:first-child) {
  display: none;
}

.single-product .woocommerce-product-gallery__image:not(:first-child):hover {
  border-color: var(--wine);
  opacity: 1;
  transform: translateY(-2px);
}

.single-product .woocommerce-product-gallery__image:first-child img {
  max-height: 560px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
  display: none !important;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  width: 72px !important;
  margin: 0 !important;
}

.single-product .roselle-gallery-enhanced .woocommerce-product-gallery__wrapper {
  display: block !important;
  order: 1;
}

.single-product .roselle-gallery-enhanced .woocommerce-product-gallery__image:not(:first-child) {
  display: none;
}

.single-product .roselle-gallery-thumbs {
  display: grid;
  order: 2;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #eadfda;
  border-radius: 5px;
  background: #fffaf6;
}

.single-product .roselle-gallery-thumbs button {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 6px;
  border: 1px solid #eadfda;
  border-radius: 4px;
  background: #fffdf9;
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.single-product .roselle-gallery-thumbs button:hover,
.single-product .roselle-gallery-thumbs button.active {
  border-color: var(--wine);
  opacity: 1;
}

.single-product .roselle-gallery-thumbs button:hover {
  transform: translateY(-2px);
}

.single-product .roselle-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-product .woocommerce-product-gallery__trigger {
  display: none !important;
}

.single-product .woocommerce-product-gallery__image:first-child a {
  cursor: default;
}

.single-product .entry-summary {
  max-width: 520px;
  padding: 8px 0 0;
}

.single-product .product_title {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1;
}

.single-product .summary .price {
  margin-bottom: 16px;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.single-product .woocommerce-product-details__short-description {
  margin: 18px 0 18px;
  color: #74615d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.single-product .entry-summary > #payment-method-message,
.single-product .entry-summary > .woocommerce-product-details__short-description,
.single-product .entry-summary > .roselle-product-includes,
.single-product form.variations_form {
  max-width: 500px;
}

.roselle-product-includes {
  padding: 18px 20px;
  background: #fffaf6;
}

.roselle-product-includes ul {
  gap: 9px 16px;
}

.single-product form.variations_form {
  padding: 28px;
  border: 1px solid #eadfda;
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf6 100%);
  box-shadow: 0 18px 48px rgba(69, 39, 36, 0.09);
}

.single-product table.variations {
  display: block;
  margin: 0 0 18px;
}

.single-product table.variations tbody,
.single-product table.variations tr,
.single-product table.variations th,
.single-product table.variations td {
  display: block;
}

.single-product table.variations tr {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.single-product table.variations label {
  display: block;
  margin-bottom: 9px;
  color: #5b3b3a;
  font-size: 10.5px;
  letter-spacing: 0.16em;
}

.single-product table.variations select {
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 15px;
  border-color: #e4d6d1;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.single-product .reset_variations {
  margin-top: 2px;
  color: #7d6662;
  font-size: 12px;
  font-weight: 500;
}

.single-product .single_variation {
  margin: 14px 0 18px;
}

.single-product .woocommerce-variation-price .price {
  font-size: 22px;
  letter-spacing: 0;
}

.single-product .woocommerce div.product form.cart .variations_button {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.single-product .woocommerce div.product form.cart div.quantity {
  margin: 0;
}

.single-product .quantity .qty {
  width: 68px;
  min-height: 50px;
  border-radius: 4px;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.single-product .single_add_to_cart_button {
  flex: 1;
  min-height: 50px;
  border-radius: 4px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.16em;
}

.single-product .product_meta {
  max-width: 500px;
  color: #8a7772;
  line-height: 1.6;
}

.single-product .entry-summary iframe,
.single-product .entry-summary [id*="express"],
.single-product .entry-summary [class*="express"],
.single-product .entry-summary [id*="wcpay"],
.single-product .entry-summary [class*="wcpay"] {
  max-width: 500px;
}

.single-product .entry-summary [class*="express"],
.single-product .entry-summary [class*="wcpay"] {
  border-radius: 5px;
}

.single-product .entry-summary > div:not(.woocommerce-product-details__short-description):not(.roselle-product-includes):not(#payment-method-message) {
  max-width: 500px;
}

.single-product .woocommerce-tabs {
  margin-top: 62px;
}

.single-product .woocommerce-tabs .panel {
  max-width: 880px;
}

.single-product .related.products {
  grid-column: 1 / -1;
  margin-top: 54px;
}


.woocommerce-checkout .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  grid-column: 1 / -1;
}

.woocommerce-checkout form.checkout {
  display: contents;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(69, 39, 36, 0.06);
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: 92px;
  background: #fbf6f1;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100%;
  float: none;
}

.woocommerce-checkout .col2-set .col-2 {
  margin-top: 28px;
}

.woocommerce-checkout .form-row {
  margin-bottom: 16px !important;
}

.woocommerce-checkout label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-checkout table.shop_table {
  border: 0;
  border-collapse: collapse;
  background: transparent;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  border-top: 1px solid #e3d8d3;
  padding: 14px 0;
  font-size: 13px;
}

.woocommerce-checkout #payment {
  border-radius: 0;
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid #e3d8d3;
  padding: 18px 0;
}

.woocommerce-checkout #payment div.payment_box {
  background: #fffdf9;
  color: var(--muted);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fffdf9;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card-copy {
  padding-top: 18px;
}

.product-card-copy p {
  margin: 0 0 5px;
  color: var(--coral);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.product-card-copy h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.25;
}

.product-card-copy span {
  color: var(--muted);
  font-size: 12px;
}

.catalog-note {
  margin: 55px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.commerce-note {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 20px 26px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 253, 249, 0.6);
  font-size: 12px;
  text-align: center;
}

.commerce-note p {
  margin: 0;
}

.markets {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
  background: var(--paper);
}

.markets-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
}

.market-grid {
  display: grid;
  gap: 12px;
}

.market-grid article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.market-grid strong {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--wine);
  font-family: "Italiana", serif;
  font-size: 22px;
  font-weight: 400;
}

.market-grid span {
  color: var(--muted);
  font-size: 13px;
}

.details-heading {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.details-heading > p:last-child {
  color: var(--muted);
}

.product-layout {
  display: grid;
  max-width: 1160px;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(69, 39, 36, 0.08);
}

.product-gallery {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  background: #edcec6;
}

.product-gallery::after {
  position: absolute;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
}

.product-gallery img {
  position: relative;
  z-index: 2;
  width: 79%;
  box-shadow: 0 24px 60px rgba(84, 38, 40, 0.12);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  color: white;
  background: var(--wine);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.product-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 58px;
}

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

.product-title-row .mini-label {
  margin-bottom: 3px;
}

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

.price {
  margin: 0 0 7px;
  font-family: "Italiana", serif;
  font-size: 30px;
}

.rating {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  font-size: 11px;
}

.rating span,
.stars {
  color: var(--coral);
  letter-spacing: 0.12em;
}

.rating a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-description {
  margin: 28px 0;
  color: var(--muted);
}

.feature-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  margin-right: 16px;
  color: var(--coral);
  font-size: 10px;
}

.option-group p {
  margin: 0 0 11px;
  font-size: 12px;
}

.color-swatch {
  width: 38px;
  height: 38px;
  padding: 4px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: transparent;
}

.color-swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--peach);
}

.add-to-bag {
  width: 100%;
  margin-top: 25px;
}

.add-to-bag span {
  margin: 0 8px;
  color: var(--peach);
}

.microcopy {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.promise {
  padding: 110px 8vw;
  text-align: center;
}

.promise-grid {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 65px auto 0;
}

.promise-grid article {
  padding: 0 35px;
  border-right: 1px solid var(--line);
}

.promise-grid article:last-child {
  border: 0;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid var(--peach);
  border-radius: 50%;
  color: var(--wine);
  font-size: 20px;
}

.promise-grid h3 {
  margin: 0;
  font-size: 25px;
}

.promise-grid p {
  color: var(--muted);
  font-size: 13px;
}

.reviews {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  color: white;
  background: var(--wine);
}

.reviews .eyebrow {
  color: var(--peach);
}

.review-total {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
}

.review-total strong {
  font-family: "Italiana", serif;
  font-size: 48px;
  font-weight: 400;
}

.review-total span {
  color: var(--peach);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  align-self: start;
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
}

.review-card.offset {
  margin-top: 65px;
}

.review-card blockquote {
  margin: 24px 0 45px;
  font-size: 25px;
  line-height: 1.35;
}

.review-card p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.11em;
}

.review-card p span {
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
}

.accordion details {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.accordion details:first-child {
  border-top: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Italiana", serif;
  font-size: 24px;
  list-style: none;
}

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

.accordion summary span {
  color: var(--coral);
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 300;
  transition: transform 200ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  min-height: 510px;
  place-items: center;
  padding: 80px 20px;
  color: white;
  background:
    linear-gradient(rgba(69, 12, 27, 0.79), rgba(69, 12, 27, 0.84)),
    url("../images/peach-rose-bear.jpg") center 49% / cover;
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--peach);
}

.final-cta .button {
  margin-top: 38px;
}

.button-light {
  color: var(--wine);
  background: white;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 75px 8vw 28px;
  color: white;
  background: #241415;
}

.brand.light {
  color: white;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 25px;
  color: #b7a6a5;
  font-size: 13px;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--peach);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.footer-links a {
  color: #d6cac8;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8e7a79;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(360px, calc(100vw - 48px));
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: white;
  background: var(--wine);
  box-shadow: 0 18px 50px rgba(42, 25, 24, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 220ms ease;
}

.toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast > span {
  font-size: 23px;
}

.toast div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.toast strong {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.toast small {
  color: var(--peach);
}

.toast button {
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    gap: 14px;
  }

  .language-select {
    display: none;
  }

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

  .hero-copy {
    padding: 80px 8vw;
  }

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

  .story,
  .classic-showcase-heading,
  .markets,
  .reviews,
  .faq {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 100px;
  }

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

  .single-product .woocommerce div.product,
  .woocommerce-checkout .woocommerce {
    grid-template-columns: 1fr;
  }

  .single-product .woocommerce div.product div.images,
  .woocommerce-checkout #order_review {
    position: static;
  }

  .single-product .woocommerce-product-gallery__wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .single-product .woocommerce-product-gallery__image:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 460px;
  }

  .single-product .woocommerce-product-gallery__image:not(:first-child) {
    width: auto !important;
    height: auto;
    margin-right: 0;
  }

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

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

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

  .product-gallery {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .announcement {
    padding: 7px 15px;
  }

  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand {
    font-size: 11px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 70px 24px 58px;
  }

  h1 {
    font-size: 51px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 45px;
  }

  .hero-proof div {
    border: 0;
  }

  .single-product .woocommerce-shell,
  .woocommerce-checkout .woocommerce-shell,
  .woocommerce-cart .woocommerce-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .single-product .product_title {
    font-size: 42px;
  }

  .single-product .woocommerce-product-gallery__image:first-child {
    min-height: 360px;
    padding: 20px;
  }

  .single-product .woocommerce-product-gallery__image:first-child img {
    max-height: 330px;
  }

  .single-product .woocommerce-product-gallery__image:not(:first-child) {
    width: auto !important;
    height: auto;
    margin-right: 7px;
  }

  .single-product .woocommerce div.product div.images {
    padding: 14px;
  }

  .single-product form.variations_form,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 20px;
  }

  .single-product .woocommerce div.product form.cart .variations_button {
    flex-direction: column;
  }

  .single-product .quantity .qty,
  .single-product .single_add_to_cart_button {
    width: 100%;
  }

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

  .roselle-product-story {
    margin-top: 44px;
    padding: 28px 20px;
  }

  .roselle-story-grid {
    grid-template-columns: 1fr;
  }

  .roselle-story-grid img,
  .roselle-story-grid img:first-child {
    height: 220px;
  }

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

  .image-frame {
    width: 78%;
  }

  .floating-note {
    right: 3%;
    bottom: 9%;
    width: 98px;
    height: 98px;
  }

  .seal {
    top: 6%;
    left: 4%;
  }

  .occasion-strip {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 18px;
  }

  .occasion-strip span:nth-of-type(n + 3),
  .occasion-strip i:nth-of-type(n + 3) {
    display: none;
  }

  .section {
    padding: 85px 24px;
  }

  .collections-heading,
  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .category-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .classic-gallery,
  .included-gifts {
    grid-template-columns: 1fr;
  }

  .classic-gallery-main {
    grid-row: span 1;
  }

  .classic-gallery article {
    min-height: 285px;
  }

  .category-card > span {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .category-card strong {
    font-size: 23px;
  }

  .category-card em {
    display: none;
  }

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

  .market-grid article {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .market-grid strong {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .quick-add {
    opacity: 1;
    transform: none;
  }

  h2 {
    font-size: 45px;
  }

  .story-image-wrap {
    min-height: 390px;
  }

  .story-card {
    top: 6%;
    left: -8px;
    width: 195px;
    padding: 24px;
  }

  .story-card p:last-child {
    font-size: 20px;
  }

  .story-image-wrap > img {
    right: 0;
    width: 85%;
  }

  .product-gallery {
    min-height: 390px;
  }

  .product-gallery img {
    width: 78%;
  }

  .product-info {
    padding: 38px 25px;
  }

  .product-title-row h3 {
    font-size: 39px;
  }

  .promise {
    padding: 85px 24px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 50px;
  }

  .promise-grid article {
    padding: 0 25px 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card.offset {
    margin-top: 0;
  }

  .review-card blockquote {
    font-size: 23px;
  }

  .accordion summary {
    gap: 20px;
    font-size: 21px;
  }

  .final-cta {
    min-height: 470px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 60px 24px 25px;
  }

  .footer-links {
    margin-top: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
