
.product-detail { background: #FFFFFF; }
.product-detail__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; }


.product-viewer__frame {
  position: relative;
  background: #E9E1F0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 20px 60px rgba(42, 31, 54, 0.18);
}
.product-viewer__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-viewer__frame img.is-crop-lid { transform: scale(2.15); transform-origin: 38% 44%; }
.product-viewer__frame img.is-crop-label { transform: scale(2.3); transform-origin: 33% 70%; }
.product-viewer__frame img.is-crop-box { transform: scale(1.95); transform-origin: 73% 42%; }
.product-viewer__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #B3521A;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 2;
}
.product-viewer__strip { display: flex; gap: 0.75rem; margin-top: 0.9rem; flex-wrap: wrap; }
.product-viewer__pick {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  background: #E9E1F0;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.product-viewer__pick img { width: 100%; height: 100%; object-fit: cover; }
.product-viewer__pick img.is-crop-lid { transform: scale(2.15); transform-origin: 38% 44%; }
.product-viewer__pick img.is-crop-label { transform: scale(2.3); transform-origin: 33% 70%; }
.product-viewer__pick img.is-crop-box { transform: scale(1.95); transform-origin: 73% 42%; }
.product-viewer__pick:hover { box-shadow: 0 8px 26px rgba(142, 58, 98, 0.28); transform: translateY(-2px); }
.product-viewer__pick.is-chosen { border-color: #B3521A; box-shadow: 0 8px 26px rgba(179, 82, 26, 0.3); }
.product-viewer__caption { margin-top: 0.6rem; font-size: 0.8125rem; color: #6B5A7A; }


.buy-panel__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.85rem; }
.buy-panel__title { margin-bottom: 0.4rem; }
.buy-panel__sub { color: #6B5A7A; margin-bottom: 1.25rem; }
.buy-panel__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; font-size: 0.875rem; color: #574766; margin-bottom: 1.25rem; }
.buy-panel__meta b { color: #2A1F36; }
.buy-panel__stock { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: #2F6B3D; }
.buy-panel__stock::before { content: ''; width: 9px; height: 9px; border-radius: 999px; background: #3D8B52; }
.buy-panel__prices { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 0.35rem; }
.buy-panel__price { font-family: 'Merriweather', Georgia, serif; font-size: 2.5rem; font-weight: 900; }
.buy-panel__price-old { font-size: 1.15rem; color: #6B5A7A; text-decoration: line-through; }
.buy-panel__price-note { font-size: 0.875rem; color: #6B5A7A; margin-bottom: 1.35rem; }
.buy-panel__order { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid #D8C9E2; border-radius: 10px; overflow: hidden; background: #ffffff; }
.qty-stepper__btn { width: 46px; height: 48px; font-size: 1.25rem; cursor: pointer; color: #2A1F36; transition: background 0.3s ease; }
.qty-stepper__btn:hover { background: #EADFF0; }
.qty-stepper__input { width: 56px; height: 48px; text-align: center; font-weight: 700; border-left: 1px solid #D8C9E2; border-right: 1px solid #D8C9E2; }
.buy-panel__benefits { margin: 1.5rem 0; }
.buy-panel__benefits li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.7rem; font-size: 0.9375rem; color: #574766; }
.buy-panel__benefits svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 0.15rem; }
.buy-panel__added { display: none; font-size: 0.9375rem; color: #2F6B3D; font-weight: 600; margin-top: 0.5rem; }
.buy-panel__added.is-shown { display: block; }


.product-dossier { background: #F6F1F7; }
.product-dossier__tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; border-bottom: 1px solid #DCCBE6; margin-bottom: 1.75rem; }
.product-dossier__tab {
  padding: 0.8rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #6B5A7A;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.product-dossier__tab:hover { background: #EADFF0; color: #2A1F36; }
.product-dossier__tab.is-active { background: #FFFFFF; color: #B3521A; box-shadow: 0 -3px 0 #B3521A inset; }
.product-dossier__panel { display: none; }
.product-dossier__panel.is-active { display: block; }
.product-dossier__panel p { color: #574766; margin-bottom: 0.9rem; max-width: 78ch; }
.product-dossier__panel h3 { margin-bottom: 0.6rem; }
.ingredient-list { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1rem; }
.ingredient-list li {
  flex: 1 1 calc(33.333% - 0.6rem);
  min-width: 230px;
  background: #FFFFFF;
  border: 1px solid #EADFF0;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.9375rem;
  color: #574766;
}
.ingredient-list b { display: block; font-family: 'Merriweather', Georgia, serif; color: #2A1F36; margin-bottom: 0.2rem; }


.trust-strip { background: #FFFFFF; }
.trust-strip__row { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.trust-strip__item {
  flex: 1 1 calc(25% - 1rem);
  min-width: 220px;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border: 1px solid #EADFF0;
  border-radius: 14px;
  padding: 1.1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.trust-strip__item:hover { box-shadow: 0 8px 30px rgba(179, 82, 26, 0.2); transform: translateY(-3px); }
.trust-strip__item svg { width: 26px; height: 26px; flex: 0 0 auto; }
.trust-strip__item b { display: block; font-family: 'Merriweather', Georgia, serif; margin-bottom: 0.2rem; }
.trust-strip__item span { font-size: 0.875rem; color: #6B5A7A; }

@media (max-width: 1024px) {
  .product-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip__item { flex: 1 1 calc(50% - 0.65rem); }
  .ingredient-list li { flex: 1 1 calc(50% - 0.45rem); }
}

@media (max-width: 768px) {
  .product-viewer__pick { width: 66px; height: 66px; }
  .buy-panel__price { font-size: 2rem; }
  .trust-strip__item { flex: 1 1 100%; }
  .ingredient-list li { flex: 1 1 100%; }
  .product-dossier__tab { padding: 0.6rem 0.9rem; font-size: 0.875rem; }
}


.product-viewer { min-width: 0; }
.buy-panel { min-width: 0; }
