html, body { height: 100%; }
.photo-preview { display: none; }

/* Скругления картинок стилей — БЕЗ окантовки, только галочка */
.style-item {
  border-radius: 12px;
  overflow: hidden;
}
.style-item img {
  border-radius: 12px;
}
.style-item.active::after {
  content: '✓';
  position: absolute;
  top: 6px; right: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.pack.active::after {
  content: '✓'; position: absolute; top: -8px; right: 14px;
  width: 20px; height: 20px; border-radius: 50%; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.selected-style:empty::before {
  content: '— не выбран';
  font-weight: 400; font-size: 12px; opacity: 0.7;
}

/* ===== РОМАШКА-СПИННЕР ===== */
.daisy-wrap { display: flex; align-items: center; justify-content: center; }
.daisy {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.daisy-color {
  -webkit-mask-image: conic-gradient(from 0deg, #000 var(--fill, 0%), transparent 0);
  mask-image:         conic-gradient(from 0deg, #000 var(--fill, 0%), transparent 0);
}
.daisy-percent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  font-weight: 800;
  color: #b45309;
  z-index: 5;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.dark .daisy-percent {
  color: #fde68a;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}