:root {
  color-scheme: light;
  --brown: #6f4e37;
  --brown-deep: #493526;
  --gold: #c5a16d;
  --berry: #cc2554;
  --sand: #e3dac9;
  --paper: #fffefa;
  --ink: #29251f;
  --muted: #746c61;
  --line: #e9e3d9;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  font-size: var(--base-font-size, 1rem);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.65;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip-link {
  position: absolute;
  z-index: 20;
  top: -60px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brown-deep);
}
.skip-link:focus {
  top: 12px;
}

.announcement {
  min-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 5px 16px;
  background: var(--brown);
  color: white;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.announcement span {
  color: var(--gold);
}
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(22px, 6vw, 92px);
  background: rgb(255 254 250 / 96%);
  border-bottom: 1px solid rgb(111 78 55 / 10%);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.brand span {
  display: grid;
  line-height: 1.2;
}
.brand strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}
.brand small {
  color: var(--muted);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}
.main-nav a {
  color: #51473b;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.footer-links a:hover {
  color: var(--berry);
}
.header-order {
  justify-self: end;
  padding: 10px 15px;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-size: 0.6875rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.header-order:hover {
  color: white;
  background: var(--brown);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 610px;
  padding: 50px clamp(22px, 8.8vw, 136px) 72px;
  gap: clamp(32px, 7vw, 108px);
  align-items: center;
  overflow: hidden;
}
.hero-copy {
  max-width: 550px;
  padding: 12px 0 18px;
  animation: rise-in 0.65s both;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: var(--brown);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--berry);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6vw, 5.125rem);
  font-weight: 500;
  line-height: 1.04;
}
h1 em,
h2 em {
  color: var(--brown);
  font-weight: 500;
}
.hero-description {
  max-width: 420px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 0.9375rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.75rem;
  font-weight: 600;
}
.button-dark {
  color: white;
  background: var(--brown);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.button-dark:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
}
.text-link span {
  color: var(--berry);
  transition: transform 0.2s ease;
}
.text-link:hover span {
  transform: translateX(4px);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 53px;
  color: var(--muted);
  font-size: 0.625rem;
  line-height: 1.55;
}
.note-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 0.625rem;
}
.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
  animation: rise-in 0.75s 0.1s both;
}
.hero-visual > img {
  width: 100%;
  aspect-ratio: 0.91;
  object-fit: cover;
  object-position: center;
}
.image-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  color: var(--muted);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-seal {
  position: absolute;
  top: 24px;
  left: -30px;
  display: grid;
  place-content: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: var(--berry);
  font-size: 0.5625rem;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-9deg);
}
.hero-seal b {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.category-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  min-height: 106px;
  padding: 19px clamp(22px, 8.8vw, 136px);
  color: white;
  background: var(--brown);
}
.category-strip > p {
  margin: 0;
  color: #e5d6c0;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.category-strip > a {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 46px;
  padding-left: 24px;
  border-left: 1px solid rgb(255 255 255 / 24%);
  font-size: 0.625rem;
}
.category-strip > a > span {
  font-family: var(--serif);
  font-size: 1.125rem;
}
.category-strip > a > b {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
}
.category-strip > a:hover > span {
  color: #f0d1d1;
}

.products-section {
  padding: 96px clamp(22px, 8.8vw, 136px) 93px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}
.section-heading h2,
.story-copy h2,
.contact-heading h2,
.policies-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1875rem, 4.4vw, 3.375rem);
  font-weight: 500;
  line-height: 1.13;
}
.section-intro {
  max-width: 300px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.75rem;
}
.category-tabs {
  display: flex;
  gap: 8px;
  margin: 34px 0 23px;
  overflow-x: auto;
}
.category-tab {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.6875rem;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border 0.2s ease;
}
.category-tab:hover,
.category-tab.is-active {
  border-color: var(--brown);
  color: white;
  background: var(--brown);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  min-height: 200px;
}
.product-card {
  min-width: 0;
  animation: rise-in 0.45s both;
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f3eee6;
}
.product-image-wrap > img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-image-wrap > img {
  transform: scale(1.035);
}
.product-image-link {
  display: block;
}
.product-category {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: var(--brown);
  background: rgb(255 254 250 / 92%);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-details {
  padding: 16px 2px 0;
}
.product-details h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 500;
}
.product-details h3 a:hover {
  color: var(--berry);
}
.product-details > p {
  min-height: 56px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.6875rem;
  line-height: 1.65;
}
.product-details .product-ingredients {
  min-height: unset;
  margin-bottom: 12px;
  color: var(--brown);
  font-size: 0.625rem;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-detail-link {
  color: var(--brown);
  font-size: 0.625rem;
  font-weight: 600;
  white-space: nowrap;
}
.product-detail-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.product-price {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.1875rem;
}
.product-order {
  padding: 8px 0 8px 8px;
  border: 0;
  color: var(--berry);
  background: transparent;
  font-size: 0.625rem;
  font-weight: 700;
  cursor: pointer;
}
.product-order:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.catalog-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.625rem;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 44px 28px;
  border: 1px solid var(--line);
  background: #faf7f1;
  text-align: center;
}
.empty-state h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.5625rem;
  font-weight: 500;
}
.empty-state p {
  max-width: 400px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 0.75rem;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 9vw, 130px);
  padding: 72px clamp(22px, 8.8vw, 136px);
  background: #f6f2eb;
}
.story-image {
  position: relative;
}
.story-image img {
  width: 100%;
  max-height: 440px;
  aspect-ratio: 1.18;
  object-fit: cover;
}
.story-image > span {
  position: absolute;
  right: -1px;
  bottom: 0;
  padding: 12px 18px;
  color: white;
  background: var(--brown);
  font-family: var(--serif);
  font-size: 0.875rem;
}
.story-copy {
  max-width: 490px;
  padding: 20px 0;
}
.story-copy > p:not(.eyebrow) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}
.story-copy .text-link {
  margin-top: 23px;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 62px clamp(22px, 8.8vw, 136px);
  border-bottom: 1px solid var(--line);
}
.promise-row > div {
  position: relative;
  padding-left: 43px;
}
.promise-number {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--berry);
  font-family: var(--serif);
  font-size: 0.8125rem;
}
.promise-row h3 {
  margin-bottom: 5px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 500;
}
.promise-row p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 0.6875rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(45px, 10vw, 150px);
  padding: 91px clamp(22px, 8.8vw, 136px);
}
.contact-heading > p:not(.eyebrow) {
  max-width: 330px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.75rem;
}
.shop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}
.shop-item {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.shop-item h3 {
  margin-bottom: 3px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}
.shop-item p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.625rem;
}
.shop-item > a {
  display: block;
  width: fit-content;
  color: var(--brown);
  font-size: 0.6875rem;
}
.shop-item > .shop-whatsapp {
  margin-top: 8px;
  color: var(--berry);
  font-size: 0.625rem;
  font-weight: 700;
}

.policies-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(35px, 8vw, 110px);
  padding: 68px clamp(22px, 8.8vw, 136px) 82px;
  background: #f6f2eb;
}
.policies-heading h2 {
  font-size: clamp(2.125rem, 4vw, 3rem);
}
.policy-list details {
  border-bottom: 1px solid #dcd3c5;
}
.policy-list details:first-child {
  border-top: 1px solid #dcd3c5;
}
.policy-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 59px;
  color: var(--brown-deep);
  font-family: var(--serif);
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
}
.policy-list summary::-webkit-details-marker {
  display: none;
}
.policy-list summary span {
  color: var(--berry);
  font-family: var(--sans);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}
.policy-list details[open] summary span {
  transform: rotate(45deg);
}
.policy-list details > p {
  max-width: 670px;
  margin: 0 30px 20px 0;
  color: var(--muted);
  font-size: 0.6875rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 13px 30px;
  padding: 31px clamp(22px, 8.8vw, 136px);
  color: white;
  background: var(--brown-deep);
}
.footer-brand strong {
  color: white;
}
.footer-brand small {
  color: #d8c7b0;
}
.site-footer > p {
  margin: 0;
  color: #e1d5c7;
  font-size: 0.625rem;
}
.footer-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  grid-column: 2;
  grid-row: 1;
  color: #f3eadf;
  font-size: 0.625rem;
}
.copyright {
  color: #c8b6a1;
  font-size: 0.5625rem;
  grid-column: 1 / -1;
}

.order-dialog {
  position: fixed;
  z-index: 31;
  top: 50%;
  left: 50%;
  width: min(440px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  margin: 0;
  padding: 32px;
  border: 0;
  background: var(--paper);
  box-shadow: 0 20px 80px rgb(41 37 31 / 28%);
  transform: translate(-50%, -50%);
}
.order-dialog::backdrop {
  background: transparent;
}
.dialog-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  background: rgb(41 37 31 / 58%);
}
.dialog-backdrop.is-visible {
  display: block;
}
.dialog-close {
  position: absolute;
  top: 11px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  color: var(--brown);
  font-size: 1.625rem;
  cursor: pointer;
}
.order-dialog .eyebrow {
  margin-bottom: 8px;
}
.order-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.dialog-product {
  margin: 3px 0 17px;
  color: var(--muted);
  font-size: 0.75rem;
}
.dialog-shops {
  display: grid;
}
.dialog-shop {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.0625rem;
}
.dialog-shop span {
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.625rem;
}
.dialog-shop:hover {
  color: var(--berry);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 73px;
    padding-inline: 22px;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0 2px;
    overflow-x: auto;
  }
  .header-order {
    grid-column: 2;
    grid-row: 1;
  }
  .hero {
    min-height: 540px;
    padding: 55px 7vw 60px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(3rem, 7vw, 4.25rem);
  }
  .category-strip {
    padding-inline: 7vw;
  }
  .products-section,
  .story-section,
  .promise-row,
  .contact-section,
  .policies-section {
    padding-inline: 7vw;
  }
  .section-heading {
    align-items: start;
  }
  .section-intro {
    max-width: 250px;
  }
  .product-grid {
    gap: 15px;
  }
  .product-details h3 {
    font-size: 1.125rem;
  }
  .product-footer {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
  .product-order {
    padding-left: 0;
  }
  .contact-section {
    gap: 45px;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 116px;
  }
  .announcement {
    font-size: 0.5625rem;
  }
  .site-header {
    min-height: 0;
    padding: 10px 18px 0;
  }
  .brand img {
    width: 39px;
    height: 39px;
  }
  .brand strong {
    font-size: 0.875rem;
  }
  .header-order {
    padding: 8px 10px;
    font-size: 0.625rem;
  }
  .main-nav {
    margin-top: 7px;
    gap: 22px;
  }
  .main-nav a {
    flex: 0 0 auto;
    padding-bottom: 10px;
    font-size: 0.6875rem;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 43px 22px 48px;
    gap: 30px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(3.0625rem, 13vw, 4.375rem);
  }
  .hero-description {
    max-width: 350px;
    font-size: 0.8125rem;
  }
  .hero-note {
    margin-top: 29px;
  }
  .hero-visual {
    justify-self: center;
    width: calc(100% - 16px);
  }
  .hero-visual > img {
    aspect-ratio: 1.06;
  }
  .hero-seal {
    left: -16px;
    width: 66px;
  }
  .category-strip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 22px 14px;
  }
  .category-strip > p {
    margin-bottom: 8px;
    font-size: 1.125rem;
  }
  .category-strip > a {
    min-height: 45px;
    padding: 0;
    border-top: 1px solid rgb(255 255 255 / 22%);
    border-left: 0;
  }
  .category-strip > a > b {
    margin-left: auto;
  }
  .products-section {
    padding: 63px 22px 58px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2,
  .story-copy h2,
  .contact-heading h2 {
    font-size: 2.4375rem;
  }
  .section-intro {
    max-width: 360px;
    margin-top: 16px;
  }
  .category-tabs {
    margin-top: 24px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-image-wrap > img {
    aspect-ratio: 1.13;
  }
  .product-details h3 {
    font-size: 1.375rem;
  }
  .product-details > p {
    min-height: unset;
    font-size: 0.75rem;
  }
  .product-footer {
    flex-direction: row;
    align-items: center;
  }
  .product-order {
    padding: 8px 0 8px 8px;
    font-size: 0.6875rem;
  }
  .story-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 22px;
  }
  .story-image img {
    aspect-ratio: 1.1;
  }
  .story-copy {
    padding: 0;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 0.75rem;
  }
  .promise-row {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 43px 22px;
  }
  .promise-row p {
    max-width: 300px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 60px 22px;
  }
  .shop-list {
    grid-template-columns: 1fr;
  }
  .shop-item {
    padding: 15px 0;
  }
  .policies-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 47px 22px 55px;
  }
  .policies-heading h2 {
    font-size: 2.375rem;
  }
  .policy-list summary {
    font-size: 1rem;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 27px 22px;
  }
  .site-footer > p {
    grid-row: 2;
  }
  .footer-links {
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px 20px;
    grid-column: 1;
    grid-row: 3;
  }
  .copyright {
    grid-column: 1;
    grid-row: 4;
  }
  .order-dialog {
    padding: 28px 23px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.pdp-main {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.625rem;
}
.breadcrumbs a:hover {
  color: var(--berry);
}
.breadcrumbs [aria-current="page"] {
  color: var(--brown);
}
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
  padding: 5px 0 88px;
}
.pdp-main-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f4f0e8;
}
.pdp-main-image-wrap > img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}
.pdp-main-image-wrap .product-category {
  pointer-events: none;
}
.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.pdp-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #f4f0e8;
  cursor: pointer;
}
.pdp-thumb.is-selected,
.pdp-thumb:focus-visible {
  border-color: var(--berry);
}
.pdp-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.pdp-copy {
  padding: 10px 0;
}
.pdp-copy .eyebrow {
  margin-bottom: 12px;
}
.pdp-copy h1 {
  margin: 0 0 17px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.375rem, 4.5vw, 3.5625rem);
  font-weight: 500;
  line-height: 1.1;
}
.pdp-description {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.8;
}
.pdp-price-row {
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.625rem;
}
.pdp-price {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.6875rem;
}
.pdp-order {
  width: 100%;
  margin-top: 17px;
  justify-content: space-between;
}
.pdp-contact-note {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: 0.625rem;
  text-align: center;
}
.pdp-highlights h2,
.pdp-facts dt {
  color: var(--brown-deep);
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 500;
}
.pdp-highlights ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.pdp-highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.6875rem;
}
.pdp-highlights li::before {
  position: absolute;
  left: 0;
  color: var(--berry);
  content: "✓";
}
.pdp-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}
.pdp-facts > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.pdp-facts dt {
  font-size: 0.8125rem;
}
.pdp-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.625rem;
}
.pdp-story {
  max-width: 760px;
  margin: 0 auto;
  padding: 55px 0 66px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.pdp-story h2,
.pdp-related h2 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: clamp(1.9375rem, 4vw, 2.8125rem);
  font-weight: 500;
}
.pdp-story > p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
}
.pdp-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 38px 0 70px;
  border-top: 1px solid var(--line);
}
.pdp-related h2 {
  margin: 0;
  font-size: 2.0625rem;
}
.pdp-related-links {
  display: grid;
}
.pdp-related-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.0625rem;
}
.pdp-related-link:first-child {
  border-top: 1px solid var(--line);
}
.pdp-related-link span {
  color: var(--berry);
}
@media (max-width: 760px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 54px;
  }
  .pdp-copy {
    padding: 0;
  }
  .pdp-copy h1 {
    font-size: 2.6875rem;
  }
  .pdp-related {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .pdp-main {
    width: calc(100% - 36px);
  }
  .breadcrumbs {
    gap: 7px;
    padding: 17px 0;
    font-size: 0.5625rem;
  }
  .pdp-thumbnails {
    gap: 6px;
  }
  .pdp-facts > div {
    grid-template-columns: 80px 1fr;
    gap: 10px;
  }
}
