/* ==========================================================================
   Base
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.legal-content h2 {
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 1rem;
}

.legal-content h3 {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ==========================================================================
   Product overview section (under the marquee)
   ========================================================================== */

.product-overview {
  padding: 3.5rem 0;
  background-color: var(--pink-frosting);
  position: relative;
  z-index: 2;
}

.product-overview__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3em;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 3rem;
}

.product-overview__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.10rem;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.product-overview__heading {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-transform: capitalize;
  width: 85%;
}

.product-overview__intro {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.product-overview__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 0.65rem;
}

.product-overview__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.product-overview__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.8rem;
  color: var(--prunus-avium);
}

.product-overview__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-overview__feature {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--super-silver);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.product-overview__feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.product-overview__feature-caption {
  position: absolute;
  font-weight: 500;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  line-height: 1.4;
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 9px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  color: var(--super-silver);
}

.product-overview__meta-block {
  background: var(--super-silver);
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.product-overview__meta-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.9rem;
}

.product-overview__meta-list {
  margin: 0;
  padding: 0;
}

.product-overview__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-overview__meta-row:last-child {
  border-bottom: none;
}

.product-overview__meta-row dt {
  font-weight: 500;
}

.product-overview__meta-row dd {
  margin: 0;
  text-align: right;
}

/* Tags / chips */
.product-overview__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-overview__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: var(--alternative-black);
  color: var(--super-silver);
  font-weight: 500;
}


/* ==========================================================================
   Product card badge
   ========================================================================== */

.pc-review-badge{
  display:inline-flex;
  align-items:center;
  gap:.2rem;
  line-height:1;
}

.pc-review-badge__star{
  display:inline-flex;
  line-height:0;
}

.pc-review-badge__count{
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pc-review-badge__star svg {
  width: 16px;
  height: 16px;
}

.product-card-title-wrapper {
  display: flex;
  gap: .5rem;
}

/* ==========================================================================
   Product page review section
   ========================================================================== */

   .product-review-summary {
  display: flex;
  flex-direction: row;
  gap: .2rem;
  font-weight: 500;
}

.reviews {
  position: relative;
  z-index: 2;
  margin: 4em 4em 1em;
}

.product-review-summary__stars .star-wrap svg {
 color: var(--prunus-avium);
 height: 15px;
 width: 15px;
}

.product-review-summary__stars .star-wrap.is-filled {
  color: var(--prunus-avium);
}

.product-review-summary__stars {
  color: var(--prunus-avium);
}

/* Optional: empty state layout */
.reviews-empty {
  padding: 1.4rem 1.5rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--super-silver);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-empty__text {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.9;
  text-transform: capitalize;
}

.reviews__open {
  border: 1.5px solid var(--alternative-black);
  background: var(--alternative-black);
  color: var(--super-silver);
  border-radius: 9px;
  padding: 0.85rem 1.05rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}


.reviews__open:hover {
  transform: translateY(-1px);
  color: var(--alternative-black);
  background: var(--super-silver);

}

.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.reviews__note {
  background-color: var(--pink-frosting);
  padding: 1rem;
  border-radius: .5rem;
  line-height: 1.35;
  font-size: .9rem;
}

.review__stars {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.review__stars .star {
  display: block;
}

.review__stars .star-wrap.is-filled {
  color: var(--prunus-avium);
}

.review__stars .star-wrap.is-empty {
  color: #f2b2d3;
}

.reviews-modal[aria-hidden="false"] {
  display: block;
}

.reviews-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.2s ease;
  backdrop-filter: blur(2px);
}

.reviews-modal__panel {
  position: relative;
  width: min(640px, calc(100% - 40px));
  margin: 5vh auto 0;
  max-height: 90vh;
  border-radius: 0.7rem;
  background: var(--super-silver);
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column; 
}

.reviews-modal__close {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--super-silver);
  background: var(--alternative-black);
  border: 1.5px solid var(--alternative-black);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.reviews-modal__close:hover {
  background: var(--super-silver);
  color: var(--alternative-black);
}

.reviews-modal .reviews__form {
  margin: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 1.25rem;
}

.reviews-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.reviews__title-row {
  font-family: "Bodonimoda 9 Pt", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.reviews__title-row h2 {
  font-size: 3rem;
  line-height: .9;
}

.reviews__global-score {
  font-size: 1.45rem;
  font-weight: 500;  
}

.reviews__global-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: .8rem;
  text-transform: capitalize;
}

.reviews__global {
  display: flex;
  gap: .2rem;
  margin-top: .7rem;
}

.reviews__global-star svg {
 height: 20px;
 width: 20px;
 color: var(--prunus-avium);
}

#reviews-modal-title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
}

.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 2.25rem;
  align-items: start;
}

.reviews__list {
  display: grid;
  gap: 1rem;
}

.reviews__list > p {
  margin: 0;
  padding: 1.25rem 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--super-silver);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Review card */
.review {
  padding-top: 1.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: .25fr 1fr;
  align-items: start;
  position: relative;
}

.reviews__items {
  background: var(--super-silver);
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 1.5rem 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: .2rem;
}

.review__who {
  gap: .5rem;
  display: flex;
  flex-direction: column;
}

.review__badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .25rem;
}
.review__name {
  font-size: 1.1rem;
  font-weight: 500;
}

.review__title {
  margin: 1.2rem 0 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.review__date {
  font-style: italic;
  position: absolute;
  right: 0;
  font-size: .8rem;
  color: #464646;
  top: 1.5rem;
}

.review__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--alternative-black);
  color: var(--super-silver);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.review__body {
  margin: 0 0 2.5rem 0rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--alternative-black);
  width: 90%;
}

.review__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: baseline;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.95rem;
}

.review__meta span:first-child {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

/* Review photos */
.review-photos {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.review-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6f6f6;
}

/* Form */
.reviews__form {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 0.9rem;
  overflow-y: scroll;
}

.reviews__form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.78);
}

.reviews__form input,
.reviews__form select,
.reviews__form textarea {
  width: 100%;
  border-radius: 9px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  padding: 0.85rem 0.95rem;
  font-size: 1rem;
  background: var(--super-silver);
  color: var(--alternative-black);
}

.reviews__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23242424' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
}

.reviews__form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.reviews__form input:focus-visible,
.reviews__form select:focus-visible,
.reviews__form textarea:focus-visible {
  outline: 1.8px solid var(--pink-macaroon);
  outline-offset: 2px;
}

/* Submit button */
.reviews__form button[type="submit"] {
  border: 1.5px solid var(--alternative-black);
  background: var(--alternative-black);
  color: var(--super-silver);
  border-radius: 9px;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.reviews__form button[type="submit"]:hover {
  transform: translateY(-1px);
  background: #2a2a2a;
}

.reviews__form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Message */
.reviews__msg {
  min-height: 1.2em;
  font-size: 0.95rem;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.75);
}

.reviews__msg:empty {
  display: none;
}

.reviews__msg.is-success {
  background: #e9f5ee;
  border: 1.5px solid #2e7d32;
  color: #1b5e20;
  padding: 0.85rem 0.95rem;
  border-radius: 9px;
}

.reviews__msg.is-error {
  background: #ffebee;
  border: 1.5px solid #d32f2f;
  color: #b71c1c;
  padding: 0.85rem 0.95rem;
  border-radius: 9px;
}

/* ==========================================================================
   Product page infinite banner
   ========================================================================== */

.product-marquee {
  width: 100%;
  border-block: 1px solid var(--super-silver);
  background-color: var(--alternative-black);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.product-marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: .75rem;
  animation: product-marquee-track 60s linear infinite;
  will-change: transform;
}

.product-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--super-silver);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.product-marquee__item,
.product-marquee__separator {
  flex-shrink: 0;
}

.product-marquee__item {
  white-space: nowrap;
}

.product-marquee__separator {
  opacity: 1;
  color: var(--prunus-avium);
}

@keyframes product-marquee-track {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .product-marquee__track {
    animation: none;
  }
}

/* ==========================================================================
   Shop header
   ========================================================================== */

.shop-header {
  text-align: left;
  margin-bottom: 2rem;
}

.shop-header h1 {
  font-family: "Bodonimoda 9 Pt", sans-serif;
  font-size: 4.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 2rem;
}

.shop-header p {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

/* ==========================================================================
   Shop toolbar (desktop)
   ========================================================================== */

.shop-toolbar {
  margin-bottom: 2.5rem;
  position: relative;
}

.shop-toolbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.shop-toolbar__filters,
.shop-toolbar__sort {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shop-toolbar__select-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-select {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shop-toolbar__title {
  font-family: "Bodonimoda 9 Pt";
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.shop-select__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 600;
}

.shop-select__field {
  padding: 0.65rem 0.9rem;
  padding-right: 4rem;
  border-radius: 9px;
  font-size: 0.95rem;
  color: var(--super-silver);
  background-color: var(--alternative-black);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f5f5f5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  text-transform: capitalize;
  cursor: pointer;
  line-height: 1.2;
}

.shop-select__field:focus-visible {
  outline: 1.8px solid var(--pink-macaroon);
  outline-offset: 2px;
}

/* Sort select has less right padding */
.js-sort-by {
  padding-right: 2.2rem;
}

/* Mobile trigger + close hidden by default */
.shop-toolbar__mobile-toggle,
.shop-toolbar__close {
  display: none;
}

/* Overlay base */
.shop-toolbar__overlay {
  display: block;
}

/* ==========================================================================
   Shop toolbar (tablet + mobile off-canvas)
   ========================================================================== */

@media (max-width: 991px) {
  .shop-toolbar {
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .shop-toolbar__mobile-toggle {
    margin-top: 1rem;
    width: 100%;
    border-radius: 9px;
    border: 1.5px solid var(--alternative-black);
    padding: 1rem 1.1rem;
    font-size: 1.2rem;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: capitalize;
    font-weight: 500;
  }

  .shop-toolbar__mobile-icon {
    font-size: 1.1rem;
  }

  /* Panel (closed by default) */
  .shop-toolbar__inner {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(92vw, 440px);
    background-color: var(--super-silver);
    padding: 1.75rem 1.5rem 2rem;
    z-index: 1200;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;

    transform: translate3d(110%, 0, 0);
    pointer-events: none;
    transition: transform 0.3s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shop-toolbar__inner.shop-toolbar__inner--open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .shop-toolbar__close {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .shop-toolbar__overlay {
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(2px);
  }

  .reviews {
    margin: 4em 3em 1em;
  }

  .shop-toolbar__overlay.shop-toolbar__overlay--visible {
    opacity: 1;
    pointer-events: auto;
  }

  .shop-toolbar__filters,
  .shop-toolbar__sort {
    width: 100%;
    align-items: stretch;
  }

  .shop-toolbar__select-group {
    flex-direction: column;
  }

  .shop-select__field {
    min-width: 180px;
    padding: 0.85rem 0.9rem; /* fixed units */
  }

  .product-overview__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .product-overview {
    padding: 3rem 0 2.75rem;
  }

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

  .reviews > h2 {
    font-size: 2.6rem;
  }

  .reviews > h3 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Cart page layout
   ========================================================================== */

.cart-page {
  margin-top: 3rem;
}

.cart-page-content[hidden] {
  display: none !important;
}

.cart-page-error:empty {
  display: none;
  padding: 0;
  border: none;
  background: transparent;
}

.cart-page-empty {
  text-align: center;
  padding: 4rem 0 5rem;
  text-transform: capitalize;
}

.cart-page-empty p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* main content: lines + summary */
.cart-page-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  column-gap: 3.5rem;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: flex-start;
}

.cart-page-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-line__price-block {
  display: flex;
  gap: 0.6rem;
}

/* Cart line */
.cart-line {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-line__media {
  flex: 0 0 110px;
  height: 8.5rem;
  border-radius: 9px;
  overflow: hidden;
  background: var(--super-silver);
}

.cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-line__name {
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--alternative-black) !important;
  line-height: 1.25;
}

.cart-line__name:hover {
  text-decoration: underline;
}

.cart-line__variant-note {
  font-size: 0.92rem;
  text-transform: capitalize;
  opacity: 0.75;
}

.cart-line__price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) auto auto;
  align-items: center;
  column-gap: 1.2rem;
  row-gap: 0.4rem;
  margin-top: 0.25rem;
}

.cart-line__price-each,
.cart-line__price-each--sale {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.cart-line__price-each--sale {
  color: var(--alternative-black);
}

.cart-line__line-total,
.cart-line__line-total--sale {
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.cart-line__price-each--original,
.cart-line__line-total--original {
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 400;
}

/* quantity controls */
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.cart-line__qty-btn {
  border: none;
  background: var(--alternative-black);
  color: var(--super-silver);
  border: 1.2px solid var(--alternative-black);
  width: 2rem;
  height: 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cart-line__qty-btn:hover {
  background: var(--super-silver);
  color: var(--alternative-black);
  border-color: var(--alternative-black);
}

.cart-line__qty-input {
  width: 40px;
  padding: 3px;
  font-size: 0.9rem;
  text-align: center;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: 0.5rem;
}

.cart-line__remove {
  border: none;
  background: transparent;
  font-size: 0.75rem;
  color: var(--prunus-avium);
  cursor: pointer;
  padding: 0;
  margin-top: 0.4rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: underline;
  align-self: flex-start;
}

/* Summary panel */
.cart-page-summary {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #f7f7f7;
  padding: 1.6rem 1.7rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.cart-title {
  font-family: "Bodonimoda 9 Pt";
  text-transform: uppercase;
  font-style: italic;
  font-size: 3rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.25rem;
  font-weight: 500;
}

.cart-summary-row span:first-child {
  text-transform: capitalize;
}

#cart-page-subtotal {
  font-size: 1.3rem;
  font-weight: 600;
}

.cart-summary-note {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.8;
}

.cart-page-error {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 9px;
  border: 1.5px solid #d32f2f;
  padding: 0.9rem 1.1rem;
  line-height: 1;
  text-align: center;
}

/* ==========================================================================
   Product page: variants + cross-sell
   ========================================================================== */

.product-variants {
  margin: 2rem 0 1.5rem;
}

.product-variants__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-variant-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9px;
  border: 1px solid var(--alternative-black);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.product-variant-option input {
  accent-color: var(--alternative-black);
}

.cross-sell {
  margin-top: 32px;
  border-radius: 0.9rem;
  border: 0.5px solid var(--prunus-avium);
  background-color: var(--pink-frosting);
  height: 9rem;
}

.cross-sell__pill {
  background-color: var(--alternative-black);
  border-radius: 999px;
  color: var(--super-silver);
  display: flex;
  font-size: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.cross-sell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 0;
}

.cross-sell__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cross-sell__arrow {
  border: none;
  background: transparent;
  color: var(--alternative-black);
  cursor: pointer;
  padding: 1px 8px;
  font-size: 0.9rem;
  border-radius: 15px;
  border: 1.5px solid var(--alternative-black);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cross-sell__arrow:hover {
  color: var(--super-silver);
  background: var(--alternative-black);
}

.cross-sell__track {
  position: relative;
  overflow-x: clip;
}

.cross-sell__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cross-sell__item.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.cross-sell__track[data-cross-sell-static="true"] .cross-sell__item {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cross-sell__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.cross-sell__eyebrow {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  margin: 0;
}

.cross-sell__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 18px 16px;
}

.cross-sell__media {
  flex: 0 0 80px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.cross-sell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cross-sell__meta {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cross-sell__title {
  font-size: 1.1rem;
  font-weight: 600 !important;
  text-decoration: none;
  line-height: 1;
  color: var(--alternative-black) !important;
}

.cross-sell__title:hover {
  text-decoration: underline;
}

.cross-sell__price {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.cross-sell__quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  font-weight: 600 !important;
  background-color: var(--prunus-avium);
  color: var(--super-silver) !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 1.5px solid var(--prunus-avium);
}

.cross-sell__quick-add:hover {
  transform: translateY(-1px);
  background-color: var(--super-silver);
  color: var(--prunus-avium) !important;
}

.cross-sell__price--strikethrough {
  color: var(--prunus-avium);
}

/* ==========================================================================
   Products grid (shop listing)
   ========================================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--super-silver);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.product-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.45s ease;
}

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

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 130%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.product-card-info {
  padding: 1.5rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-card-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}

.product-card-description {
  font-size: 0.98rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 500;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--super-silver);
  background-color: var(--prunus-avium);
  border: 1.8px solid var(--prunus-avium);
}

.product-pill--secondary {
  background-color: var(--super-silver);
  color: var(--alternative-black);
  border: 1.8px solid var(--alternative-black);
}

.product-pill.product-pill--sale {
  position: absolute;
  margin: 1rem;
  z-index: 2;
  background-color: var(--alternative-black);
  border-radius: 9px;
  border-color: var(--alternative-black);
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  top: 0;
}

.product-type {
  background-color: var(--prunus-avium);
  color: var(--super-silver);
  white-space: nowrap;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  padding: 0.4em 1em;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}

.product-type-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.product-type.product-pill--secondary {
  background-color: var(--super-silver);
  color: var(--alternative-black);
  border: 1.8px solid var(--alternative-black);
}

.product-type.product-pill--sale {
  background-color: var(--alternative-black);
}

.view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  background-color: var(--alternative-black);
  color: var(--super-silver);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid var(--alternative-black);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.view-button::after {
  content: "";
  margin-left: 8px;
  height: 0.8rem;
  width: 0.8rem;
  transform: translateX(0);
  transition: transform 0.25s ease;
  background-image: url(/assets/images/arrow-right_supersilver.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-card:hover .view-button {
  background-color: #2a2a2a;
  transform: translateY(-1px);
}

.product-card:hover .view-button::after {
  transform: translateX(4px);
}

.shop-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--pink-frosting);
  border-radius: 15px;
  width: 100%;
}

.shop-empty-state h2 {
  font-family: "Bodonimoda 9 Pt";
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.shop-empty-state p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.empty-state h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: #474747;
}

.empty-state p {
  font-size: 1.05rem;
  color: #999999;
}

/* ==========================================================================
   Legal + layout helpers
   ========================================================================== */

.legal-h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.legal-h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.last-updated {
  white-space: nowrap;
  margin-top: 0.5em;
  margin-bottom: 2em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5em 3em;
  position: relative;
  z-index: 2;
}

.container.smaller-width {
  padding: 4rem 12rem;
}

.container a {
  color: var(--prunus-avium);
  font-weight: 500;
}

/* ==========================================================================
   Product page layout
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.product-details {
  margin-bottom: 2rem;
}

.product-image-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-top: 2rem;
  position: sticky;
  top: 0;
}

.product-page-info {
  margin-top: 2rem;
}

.product-image-container {
  position: relative;
}

.product-media-main {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding-top: 115%;
  overflow: hidden;
}

.product-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(0) scale(1);
  opacity: 1;
  border-radius: 0.5rem;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.45s ease;
}

.product-main-image.is-leaving {
  transform: scale(0.98);
  opacity: 0;
}

.product-main-image.is-entering {
  transform: scale(1.02);
  opacity: 0;
}

.product-media-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 0 0 80px;
}

.product-thumb {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb.is-active img,
.product-thumb:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.product-thumb.is-active {
  outline-color: var(--alternative-black);
  outline-offset: 0.1rem;
  outline-style: solid;
  outline-width: 1.8px;
}

.back-link-product {
  align-self: start;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.product-title {
  text-transform: capitalize;
  margin: 0;
  font-size: 2.5rem;
  line-height: 100%;
  font-weight: 600;
}

.container-button-product {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: nowrap;
}

strong {
  font-weight: 600;
}

ul {
  margin-left: 1rem;
  font-size: 1.2rem;
  gap: 0.25rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

#buyButton {
  width: 100%;
  margin-bottom: 0;
}

#buyButton:disabled {
  opacity: 70%;
  cursor: not-allowed;
  transform: none;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}

.product-price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.2rem 0 0.2rem;
}

.product-description {
  margin: 1.5em 0;
  font-family: Jost, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.product-details ul {
  list-style: none;
  padding-left: 0;
}

.product-details h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.product-details li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
}

.product-details li:before {
  content: "";
  margin-right: 12px;
  height: 0.8rem;
  width: 0.8rem;
  background-image: url("/assets/images/handdrawntick_pink.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.loading {
  display: none;
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
}

.error {
  display: none;
  color: #d32f2f;
  margin-top: 15px;
  padding: 15px;
  background-color: #ffebee;
  border-radius: 9px;
  border: #d32f2f solid 1.5px;
  font-size: 1.1rem;
}

.highlight {
  background-color: var(--pink-frosting);
  border-left: 4px solid var(--prunus-avium);
  padding: 20px;
  margin: 30px 0;
}

/* ==========================================================================
   Misc headings used elsewhere
   ========================================================================== */

.shop-gallery_title {
  font-family: "Bodonimoda 9 Pt";
  text-transform: uppercase;
  font-size: 4.5rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.8rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
   .product-details {
    margin-bottom: .5rem;
    }
}
@media (max-width: 968px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .container.smaller-width {
    padding: 4rem 4rem;
  }

  .product-image-wrapper {
    position: relative;
  }

  .product-card-footer {
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    flex-direction: column;
  }

  .cart-page-content {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .cart-page-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .press-section .container {
    padding-inline: 20px;
  }

  .product-image-wrapper {
    flex-direction: column;
  }

  .product-media-thumbs {
    flex-direction: row;
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-line {
    align-items: flex-start;
  }

  .cart-line__media {
    flex: 0 0 90px;
    height: 7rem;
  }

  .container.smaller-width {
    padding: 4rem 3rem;
  }

  .cart-line__price-row {
    grid-template-columns: minmax(0, 1.6fr) 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: row;
  }

  .cart-line__line-total,
  .cart-line__line-total--sale,
  .cart-line__line-total--original {
    justify-self: flex-start;
    text-align: left;
  }

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

  .review__header {
    margin-bottom: 1rem;
  }

  .reviews__global {
    margin-top: 0;
  }

  .reviews__title-row {
    margin: 0 0 1.5rem;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
  }

  .reviews__global-count {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .product-overview__inner {
    padding: 0 1.25rem;
  }

  .reviews {
    margin: 4em 1.25em 1em;
  }

  .product-overview__heading {
    width: 95%;
  }
}

@media (max-width: 479px) {
  .shop-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .shop-header h1 {
    font-size: 4rem;
  }

  .container.smaller-width {
    padding: 4rem 1.8rem;
  }

  .last-updated {
    font-size: 1.2rem;
  }

  ul {
    margin-left: 0;
  }

  .product-card-price {
    display: flex;
    gap: 0.7rem;
  }

  .legal-h3 {
    font-size: 1.4rem;
  }

  .legal-h2 {
    font-size: 1.8rem;
  }

  .product-card-title-wrapper {
    flex-direction: column;
  }

  .cart-line__price-block {
    gap: 0.4rem;
    flex-direction: column;
  }

  .product-card-footer {
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
  }

  .product-card-image-wrapper {
    padding-top: 115%;
  }

  .cross-sell__quick-add {
    white-space: break-spaces;
    text-align: center;
    width: 7em;
  }

  .legal-content h2 {
    font-size: 1.8rem;
  }

  .legal-content h3 {
    font-size: 1.5rem;
  }

  .cross-sell__title {
    font-size: 1rem;
  }

  .reviews__title-row {
    margin: 0 0 1.8rem;
  }

  .cross-sell__price {
    font-size: 0.7rem;
  }

  .cross-sell__text {
    gap: 0.2rem;
  }

  .cross-sell__card {
    gap: 1rem;
  }

  .product-variants {
    margin: 2rem 0 1.2rem;
  }

  .reviews__title-row {
    gap: .2rem;
  }

  .reviews__global-score {
    font-size: 1.85rem;
  }
}

@media (width: 1024px) and (height: 1366px) and (pointer: coarse) {
  .container.smaller-width {
    padding: 4rem 8rem;
  }

  .product-overview__heading {
    width: 100%;
  }
}
