.authentic {
  display: inline-block;
  margin: 4px 0 0;
  padding: 9px 14px;
  border-right: 4px solid var(--gold);
  background: #ffffff0d;
  color: #fff2b5;
  font-weight: 800;
}

.original-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
  padding: 14px 16px;
  background: #fff8dc;
  border: 1px solid #eed87e;
  border-radius: 12px;
}

.original-note b {
  white-space: nowrap;
  color: #7b5b00;
}

.original-note span { font-size: .9rem; }

@media (max-width: 600px) {
  .original-note { align-items: flex-start; flex-direction: column; }
}

.tap-feature {
  background: #eef4ef;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tap-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 60px #082d1b1e;
}

.tap-image img { width: 100%; height: auto; }
.tap-copy { max-width: 570px; }
.tap-copy h2 { font-size: clamp(1.8rem,3vw,3rem); line-height: 1.35; margin: .25em 0; }
.tap-copy > p:not(.eyebrow) { font-size: 1.06rem; line-height: 2; }
.tap-copy ul { padding: 0; list-style: none; margin: 26px 0 0; }
.tap-copy li { margin: 12px 0; padding: 13px 48px 13px 12px; background: #fff; border-radius: 10px; position: relative; font-weight: 700; }
.tap-copy li:before { content: "✓"; position: absolute; right: 16px; color: var(--green); font-weight: 900; }

@media (max-width: 980px) {
  .tap-feature { grid-template-columns: 1fr; }
  .tap-copy { max-width: none; }
}
.wholesale-caption {
  margin: 0;
  padding: 16px 20px 18px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
}

/* Product image sliders */
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  border-color: #dfe5d9;
}

.product-gallery {
  position: relative;
  margin: 14px 14px 0;
  overflow: hidden;
  border: 1px solid #dfe5d9;
  border-radius: 17px;
  background: #fff;
  direction: ltr;
  touch-action: pan-y;
}

.product-gallery .product-image {
  aspect-ratio: 1 / 1;
  padding: 12px;
}

.product-gallery .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .18s ease;
}

.product-gallery .product-image img.is-changing { opacity: .25; }

.slider-arrow,
.zoom-btn,
.slider-dot {
  font: inherit;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #d7ddcf;
  border-radius: 50%;
  background: #fffffff2;
  box-shadow: 0 5px 16px #0d291a1f;
  color: #102016;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .2s;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: var(--green);
  outline: none;
  background: var(--green);
  color: #fff;
}

.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8cbc7;
  cursor: pointer;
}

.slider-dot.active {
  width: 25px;
  border-radius: 999px;
  background: var(--green2);
}

.slider-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.zoom-btn {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d7ddcf;
  border-radius: 50%;
  background: #fffffff2;
  color: #1d3023;
  cursor: pointer;
}

.zoom-btn:hover,
.zoom-btn:focus-visible {
  border-color: var(--gold);
  outline: none;
  background: #fff8dc;
}

.zoom-btn svg { width: 22px; height: 22px; }

.slide-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-info { border-top: 0; }

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #061b11dc;
}

.image-modal.open { display: flex; }

.image-modal-content {
  position: relative;
  display: flex;
  width: min(920px, 96vw);
  height: min(88vh, 920px);
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px #0008;
}

.image-modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 18px;
  }

  .product-gallery { margin: 10px 10px 0; }
  .product-gallery .product-image { aspect-ratio: 1 / 1; padding: 7px; }
  .slider-arrow { width: 46px; height: 46px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .zoom-btn { left: 8px; width: 44px; height: 44px; }
  .product-size { display: flex; }
  .product-size h3 { font-size: 1.15rem; }
  .price { font-size: 1.35rem; }
  .card-btn { padding: 10px; font-size: .9rem; }
}
