.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Image gallery thumbnails ── */
.thumb-btn {
  display: block;
  width: 80px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #ebdfd0;
  flex-shrink: 0;
  transition: border-color 0.18s ease;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-btn.active { border-color: #dd733f; }

/* ── Mobile image dots ── */
.img-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.img-dot.active {
  background: #dd733f;
  transform: scale(1.3);
}

/* ── Accordion ── */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.open .accordion-panel {
  max-height: 600px;
}
.accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.26s ease;
}
.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

/* ── Size selector ── */
.size-btn {
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1.5px solid #ebdfd0;
  font-size: 12px;
  font-weight: 600;
  color: #5a4535;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
}
.size-btn:hover {
  border-color: #dd733f;
  color: #dd733f;
}
.size-btn.active {
  border-color: #dd733f;
  background: #dd733f;
  color: #fff;
}

/* ── Product page capy swatches ── */
.prod-sw-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}
.prod-sw-wrap::after {
  content: '';
  width: 80%;
  height: 1.5px;
  border-radius: 1px;
  background: transparent;
  transition: background 0.18s ease;
}
.prod-sw-wrap.sw-sel::after { background: #dd733f; }
.prod-sw-wrap:hover .prod-sw { transform: scale(1.15); }
.prod-sw {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
  transition: transform 0.15s ease;
}

/* ── Product page wishlist button ── */
.wish-btn-prod .wish-icon {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
  transition: font-variation-settings 0.15s ease;
}
.wish-btn-prod.wished {
  border-color: #dd733f;
  color: #dd733f;
}
.wish-btn-prod.wished .wish-icon {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* ── Star icons ── */
.star-icon {
  font-size: 15px;
  color: #dd733f;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.star-icon.star-empty {
  color: #ebdfd0;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
}

/* ── Review cards ── */
.review-card {
  transition: box-shadow 0.2s ease;
}
.review-card:hover {
  box-shadow: 0 4px 16px rgba(38, 32, 21, 0.1);
}

/* ── Related product cards ── */

.wish-btn .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
  transition: color 0.15s ease, font-variation-settings 0.15s ease;
}
.wish-btn.liked .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  color: #dd733f;
}

/* ── Sticky add-to-cart bar ── */
.sticky-bar {
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-select {
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a08878' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 11px;
}

/* ── Capy swatches (related cards) ── */
.sw-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.sw-wrap::after {
  content: '';
  width: 80%;
  height: 1.5px;
  border-radius: 1px;
  background: transparent;
  transition: background 0.18s ease;
}
.sw-wrap.sw-sel::after { background: #dd733f; }
.sw-wrap:hover .sw { transform: scale(1.15); }
.sw {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
  transition: transform 0.15s ease;
}
