/* Styling Board — drag-and-drop specific styles */

/* SortableJS visual states */
.sortable-ghost {
  opacity: 0.35;
  border: 2px dashed var(--accent) !important;
}

.sortable-drag {
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg) scale(1.04);
  cursor: grabbing !important;
  border-color: var(--accent) !important;
  z-index: 999;
}

/* Slot filled state */
.slot.has-item {
  border-style: solid;
  border-color: var(--accent2);
  background: rgba(74, 103, 65, 0.03);
  min-height: 64px;
  padding: 0.4rem 0.5rem;
  align-items: center;
  gap: 0;
}

.slot.has-item .slot-label {
  display: none;
}

/* Item thumbnail in a filled slot */
.slot-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.slot-item-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-initial-sm {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}

.slot-item-info {
  flex: 1;
  min-width: 0;
  padding: 0 0.5rem;
}

.slot-item-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.slot-item-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent2);
  display: block;
  margin-top: 0.1rem;
}

/* Remove button */
.remove-btn {
  width: 26px;
  height: 26px;
  min-height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  padding: 0;
  line-height: 1;
}

.remove-btn:hover {
  background: var(--budget-over);
  color: white;
  border-color: var(--budget-over);
}

/* Drop zone highlight when something is being dragged over the board */
#outfit-slots.drop-active .slot:not(.has-item) {
  border-color: rgba(194, 133, 90, 0.4);
}

/* ── Mannequin Zones ─────────────────────────────────── */
.mannequin-zone {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.mannequin-zone.filled {
  opacity: 1;
}

/* Zone positions — % relative to SVG container height/width */
/* Accessory: head/neck area */
.mannequin-zone[data-zone="accessory"] {
  top: 0%;
  left: 22%;
  width: 56%;
  height: 14%;
}

/* Top: torso */
.mannequin-zone[data-zone="top"] {
  top: 14%;
  left: 14%;
  width: 72%;
  height: 25%;
}

/* Bottom: hips + legs */
.mannequin-zone[data-zone="bottom"] {
  top: 38%;
  left: 16%;
  width: 68%;
  height: 30%;
}

/* Shoes: feet */
.mannequin-zone[data-zone="shoes"] {
  top: 82%;
  left: 20%;
  width: 60%;
  height: 18%;
}

/* Bag: held at hip/side — extends slightly outside right of body */
.mannequin-zone[data-zone="bag"] {
  top: 28%;
  left: 65%;
  width: 42%;
  height: 22%;
}

.mannequin-zone.filled {
  opacity: 1;
  box-shadow: 0 2px 8px rgba(44, 33, 24, 0.15);
  border: 1.5px solid var(--border);
  background: var(--surface);
}

.mannequin-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
/* 1773974256 */
