/* Princess salon extras */
.princess-body { background: #ffd6ea; }
.princess-body .title-pill { color: #fff; }
.pcard {
  flex: none; width: 104px; height: 112px; border-radius: 22px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff; letter-spacing: .01em;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.12), 0 6px 14px -6px rgba(43,33,80,.5);
  transition: transform .25s cubic-bezier(.3,1.6,.5,1);
}
.pcard:hover { transform: translateY(-3px) scale(1.04); }
.pcard.on { transform: translateY(-5px) scale(1.07); box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--ink), 0 10px 20px -6px rgba(43,33,80,.5); }
.pcard .face {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.08);
}
.pcard .face::before { /* hair cap */
  content: ""; position: absolute; inset: -6px -6px 24px -6px; border-radius: 50% 50% 40% 40%; background: var(--hair);
}
.pcard .face::after { /* eyes + smile */
  content: ""; position: absolute; left: 14px; top: 28px; width: 6px; height: 7px; border-radius: 50%;
  background: #2b2150; box-shadow: 20px 0 0 #2b2150;
}
.pcard .emb { position: absolute; top: 4px; right: 6px; font-size: 20px; }
.swatch.none { background: #fff !important; }
.swatch.none::before {
  content: ""; position: absolute; left: 50%; top: 12%; width: 5px; height: 76%; background: #ff4d6d;
  transform: translateX(-50%) rotate(45deg); border-radius: 3px;
}
.swatch.metal { background-image: linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,0) 45%, rgba(255,255,255,.5) 60%, rgba(0,0,0,.1)) !important; }
.action-btn {
  flex: none; height: 60px; padding: 0 20px; border-radius: 18px; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  background: linear-gradient(180deg, #ff7aa4, #ff4f86); box-shadow: inset 0 -5px 0 rgba(0,0,0,.15);
}
.photo-dlg { border: 0; border-radius: 28px; padding: 16px; background: #fff; box-shadow: var(--shadow-toy); max-width: min(92vw, 900px); }
.photo-dlg::backdrop { background: rgba(43,33,80,.55); backdrop-filter: blur(4px); }
.photo-dlg img { border-radius: 18px; max-height: 70vh; width: 100%; object-fit: contain; background: #ffe3f1; }
.photo-actions { display: flex; gap: 10px; justify-content: center; margin-top: 12px; }
