/* ═══════════ Ailsa's Plate — Barbie, but well-made ═══════════ */

:root {
  --barbie:    #E0218A;
  --hot-pink:  #FF4FA3;
  --bubblegum: #FF85C0;
  --blush:     #FFD1E8;
  --cotton:    #FFF0F7;
  --cream:     #FFFAFC;
  --lilac:     #D9B8F0;
  --champagne: #F5D9A8;
  --mint:      #B8EFD8;
  --plum:      #5C1A3A;
  --plum-soft: #8A5570;

  --shadow: 0 4px 20px rgba(224,33,138,.12);
  --shadow-lift: 0 8px 28px rgba(224,33,138,.18);
  --radius: 20px;
  --font-head: "Baloo 2", system-ui, sans-serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-quote: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html, body { height: 100%; }

body {
  font-family: var(--font-ui);
  color: var(--plum);
  background: var(--cotton);
  transition: background 1.2s ease;
  overscroll-behavior-y: contain;
}

/* time-aware skin (Jakarta clock) */
body[data-skin="dawn"]  { background: linear-gradient(180deg, #FFE3EE 0%, #FFF0F7 45%, #FFF6E8 100%); }
body[data-skin="day"]   { background: linear-gradient(180deg, #FFF0F7 0%, #FFFAFC 60%, #FFE9F4 100%); }
body[data-skin="dusk"]  { background: linear-gradient(180deg, #FBD8EC 0%, #EED2F2 55%, #D9B8F0 100%); }
body[data-skin="night"] { background: linear-gradient(180deg, #3A1030 0%, #4C1440 60%, #5C1A3A 100%); }
body[data-skin="night"] .greeting,
body[data-skin="night"] .today-date { color: #FFD1E8; }
body[data-skin="night"]::before {
  content: "✦ ✧ ✦ ✧ ✦";
  position: fixed; top: 8px; left: 0; right: 0;
  text-align: center; letter-spacing: 3em; padding-left: 3em;
  color: var(--bubblegum); font-size: 10px; opacity: .7; pointer-events: none;
}

.hidden { display: none !important; }

button { font-family: inherit; cursor: pointer; border: none; color: inherit; background: none; }
input {
  font-family: var(--font-ui); font-size: 16px; color: var(--plum);
  background: var(--cream); border: 2px solid var(--blush);
  border-radius: 14px; padding: 12px 14px; width: 100%; outline: none;
}
input:focus { border-color: var(--hot-pink); }
input::placeholder { color: var(--plum-soft); opacity: .7; }

:focus-visible { outline: 3px solid var(--hot-pink); outline-offset: 2px; }

/* ═══════════ GATE ═══════════ */
.gate {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #FFD1E8 0%, #FFF0F7 45%, #F3DCFA 100%);
  padding: 24px;
}
.gate-card {
  width: min(380px, 100%);
  background: var(--cream); border-radius: 28px;
  box-shadow: var(--shadow-lift);
  padding: 34px 26px 30px; text-align: center; position: relative;
}
.gate-sparkles { color: var(--bubblegum); letter-spacing: .8em; padding-left: .8em; font-size: 14px; margin-bottom: 12px; animation: twinkle 2.4s infinite ease-in-out; }
@keyframes twinkle { 0%,100% { opacity: .5 } 50% { opacity: 1 } }
.gate-photo-wrap { width: 130px; height: 130px; margin: 0 auto 14px; border-radius: 50%; padding: 5px; background: linear-gradient(135deg, var(--barbie), var(--lilac)); }
.gate-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; background: var(--blush); }
.gate-title {
  font-family: var(--font-head); font-weight: 800; font-size: 34px;
  color: var(--barbie); margin-bottom: 4px;
}
.gate-q { color: var(--plum-soft); font-size: 17px; margin: 10px 0 18px; }
.gate-options { display: grid; gap: 10px; }
.gate-btn {
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  background: var(--blush); color: var(--plum);
  border-radius: 16px; padding: 14px; transition: transform .12s, background .12s;
}
.gate-btn:active { transform: scale(.96); }
.gate-btn.wrong { animation: wiggle .45s; }
@keyframes wiggle { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-7px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(3px)} }
.gate-hint { min-height: 22px; margin-top: 14px; color: var(--hot-pink); font-style: italic; }

.gate.unlocking .gate-card { animation: gateAway .8s ease forwards; }
@keyframes gateAway { to { transform: translateY(-30px) scale(1.05); opacity: 0; } }

/* ═══════════ LAYOUT ═══════════ */
.app { max-width: 480px; margin: 0 auto; padding: 18px 16px 110px; }
.view { display: flex; flex-direction: column; gap: 16px; }

/* header */
.today-header { display: flex; align-items: center; gap: 14px; padding: 6px 2px; }
.header-photo-ring { width: 58px; height: 58px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--barbie), var(--bubblegum)); flex-shrink: 0; }
.header-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; background: var(--blush); }
.greeting { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--barbie); }
.today-date { color: var(--plum-soft); font-size: 14px; }

/* cards */
.card {
  background: var(--cream); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--plum); margin-bottom: 10px; }

/* hero card */
.hero-card {
  background: var(--cream); border-radius: 24px; box-shadow: var(--shadow);
  padding: 20px; display: flex; align-items: center; gap: 16px;
}
.heart-wrap { position: relative; width: 150px; flex-shrink: 0; }
.heart-svg { width: 100%; display: block; }
#heartFill { transition: y 1s cubic-bezier(.4,0,.2,1); }
.heart-numbers { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 12px; }
.kcal-big { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--plum); text-shadow: 0 1px 0 rgba(255,255,255,.6); }
.kcal-of { font-size: 12px; color: var(--plum-soft); }
.hero-side { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.over-note { background: var(--blush); border-radius: 12px; padding: 8px 10px; font-size: 13px; color: var(--plum); }
.protein-line { font-size: 14px; color: var(--plum-soft); }
.protein-line strong { color: var(--plum); background: var(--mint); border-radius: 8px; padding: 1px 6px; }
.quote-today { font-family: var(--font-quote); font-style: italic; font-size: 15px; color: var(--plum-soft); line-height: 1.45; }

/* tip + a2hs cards */
.tip-card, .a2hs-card {
  background: var(--blush); border-radius: var(--radius); padding: 14px 16px;
  font-size: 14px; line-height: 1.5; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow);
}
.ios-share { background: var(--cream); border-radius: 6px; padding: 1px 6px; font-weight: 600; }

/* ═══════════ MEAL CARDS ═══════════ */
.meal-list { display: flex; flex-direction: column; gap: 14px; }
.slot-group-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--plum-soft); margin: 4px 2px -6px; }
.meal-card {
  background: var(--cream); border-radius: 18px; box-shadow: var(--shadow);
  padding: 14px 16px; position: relative;
  transition: transform .15s ease, box-shadow .15s ease, opacity .3s;
}
.meal-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.meal-card:nth-child(even) { transform: rotate(1deg); }
.meal-card:active { transform: rotate(0deg) scale(.99); }
.meal-card::after { content: "♡"; position: absolute; top: 8px; right: 10px; color: var(--bubblegum); font-size: 12px; opacity: .6; }
.meal-card .doodle-line { position: absolute; left: 14px; right: 40%; bottom: 8px; height: 3px; }
.meal-top { display: flex; align-items: baseline; gap: 8px; }
.meal-emoji { font-size: 18px; }
.meal-name { font-weight: 700; font-size: 16px; color: var(--plum); flex: 1; }
.meal-kcal { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--barbie); }
.meal-portion { font-size: 13px; color: var(--plum-soft); margin-top: 2px; }
.meal-expand { margin-top: 10px; font-size: 13px; color: var(--plum-soft); line-height: 1.5; border-top: 2px dashed var(--blush); padding-top: 8px; }
.macro-chips { display: flex; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.macro-chip { background: var(--cotton); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 600; }
.macro-chip.p { background: var(--mint); }
.meal-delete { margin-top: 8px; color: var(--hot-pink); font-size: 13px; font-weight: 600; }

/* empty state */
.empty-state { text-align: center; padding: 24px 16px; color: var(--plum-soft); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty-photo { width: 110px; height: 110px; border-radius: 30% 70% 65% 35% / 40% 45% 55% 60%; object-fit: cover; box-shadow: var(--shadow); background: var(--blush); }

/* ═══════════ FAB ═══════════ */
.fab {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(76px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, var(--hot-pink), var(--barbie));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 19px;
  padding: 15px 34px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(224,33,138,.4), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .12s cubic-bezier(.34,1.56,.64,1);
  z-index: 20;
}
.fab:active { transform: translateX(-50%) scale(.92); }

/* ═══════════ BOTTOM NAV ═══════════ */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 25;
  display: flex; justify-content: space-around;
  background: rgba(255,250,252,.92); backdrop-filter: blur(12px);
  border-top: 2px solid var(--blush);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.nav-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 18px; color: var(--plum-soft); padding: 4px 22px; border-radius: 14px; }
.nav-btn span { font-size: 11px; font-weight: 600; font-family: var(--font-ui); }
.nav-btn.active { color: var(--barbie); background: var(--blush); }

/* ═══════════ STREAK PAGE ═══════════ */
.streak-header { display: flex; justify-content: center; padding-top: 6px; }
.polaroid {
  background: #fff; padding: 10px 10px 30px; box-shadow: var(--shadow-lift);
  transform: rotate(-2.5deg); position: relative; border-radius: 4px;
}
.hero-polaroid { width: 210px; }
.polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--blush); }
.polaroid-caption { position: absolute; bottom: 6px; left: 0; right: 0; text-align: center; font-family: var(--font-quote); font-style: italic; font-size: 13px; color: var(--plum-soft); }
.tape { position: absolute; width: 44px; height: 16px; background: rgba(245,217,168,.8); top: -8px; }
.tape-l { left: 12px; transform: rotate(-8deg); }
.tape-r { right: 12px; transform: rotate(7deg); }

.streak-card { text-align: center; }
.streak-object { font-size: 0; margin-bottom: 6px; }
.streak-object svg { width: 110px; height: 110px; }
.streak-count { font-family: var(--font-head); font-size: 20px; }
.streak-count strong { color: var(--barbie); font-size: 26px; }
.streak-msg { color: var(--plum-soft); font-size: 14px; margin-top: 4px; }

.weekly-avg { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--barbie); }
.weekly-avg small { font-size: 13px; color: var(--plum-soft); font-family: var(--font-ui); font-weight: 500; }
.avg-note { font-size: 13px; color: var(--plum-soft); margin-top: 4px; }

/* milestone */
.milestone-line { font-size: 15px; margin-bottom: 8px; }
.milestone-bar { height: 14px; background: var(--blush); border-radius: 999px; overflow: hidden; }
.milestone-fill { height: 100%; background: linear-gradient(90deg, var(--bubblegum), var(--barbie)); border-radius: 999px; transition: width 1s ease; position: relative; }
.milestone-fill.shimmer::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  animation: shimmer 2.2s infinite;
}
@keyframes shimmer { from { transform: translateX(-100%);} to { transform: translateX(100%);} }
.milestone-sub { font-size: 13px; color: var(--plum-soft); margin-top: 6px; }

/* calendar */
.cal-head { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-size: 11px; color: var(--plum-soft); font-weight: 600; margin-bottom: 4px; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 20px; border-radius: 10px; position: relative; }
.cal-day.today-ring { outline: 2px solid var(--hot-pink); outline-offset: -2px; }
.cal-day .dnum { position: absolute; bottom: 1px; right: 3px; font-size: 8px; color: var(--plum-soft); }
.cal-detail { margin-top: 10px; font-size: 13px; color: var(--plum-soft); min-height: 18px; }

/* polaroid album */
.polaroid-album { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-polaroid { background: #fff; padding: 5px 5px 16px; box-shadow: var(--shadow); border-radius: 3px; position: relative; text-align: center; }
.mini-polaroid:nth-child(3n+1) { transform: rotate(-2deg); }
.mini-polaroid:nth-child(3n+2) { transform: rotate(1.5deg); }
.mini-polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--blush); }
.mini-polaroid.locked img { filter: blur(9px) saturate(.7); }
.mini-polaroid .mini-cap { position: absolute; bottom: 2px; left: 0; right: 0; font-size: 10px; color: var(--plum-soft); }
.mini-polaroid.unlocked-new { animation: popIn .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from { transform: scale(.6); opacity: 0; } }

/* weigh-in */
.weight-history { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.weight-pill { background: var(--cotton); border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 600; }
.weight-pill.latest { background: var(--champagne); }
.weighin-form { display: flex; gap: 8px; margin-top: 10px; }
.weighin-msg { margin-top: 10px; font-size: 14px; color: var(--plum); line-height: 1.5; }

.backup-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.backup-msg { margin-top: 8px; font-size: 13px; color: var(--plum-soft); }

.bmi-card { text-align: center; }
.bmi-line { font-size: 13px; color: var(--plum-soft); }
.bmi-line strong { color: var(--plum); font-weight: 600; }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
  background: linear-gradient(180deg, var(--hot-pink), var(--barbie));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 17px;
  border-radius: 16px; padding: 14px 22px; width: 100%;
  box-shadow: 0 6px 18px rgba(224,33,138,.3), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .12s cubic-bezier(.34,1.56,.64,1);
}
.btn-primary:active { transform: scale(.95); }
.btn-primary.small { width: auto; padding: 12px 18px; font-size: 15px; }
.chip-btn {
  background: var(--blush); color: var(--plum); font-weight: 700; font-size: 14px;
  border-radius: 999px; padding: 9px 16px; transition: transform .12s;
  display: inline-block;
}
.chip-btn:active { transform: scale(.93); }

/* ═══════════ LOG SHEET ═══════════ */
.sheet-backdrop { position: fixed; inset: 0; background: rgba(92,26,58,.35); z-index: 30; }
.log-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  background: var(--cream); border-radius: 26px 26px 0 0;
  box-shadow: 0 -8px 40px rgba(224,33,138,.25);
  padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
  max-width: 480px; margin: 0 auto;
  animation: sheetUp .35s cubic-bezier(.34,1.3,.64,1);
  max-height: 88vh; overflow-y: auto;
}
@keyframes sheetUp { from { transform: translateY(100%);} }
.sheet-handle { width: 44px; height: 5px; background: var(--blush); border-radius: 99px; margin: 0 auto 14px; }
.sheet-title { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--barbie); margin-bottom: 14px; text-align: center; }
.log-step { display: flex; flex-direction: column; gap: 12px; }

.photo-drop {
  border: 3px dashed var(--bubblegum); border-radius: 18px;
  padding: 26px 16px; text-align: center; font-weight: 600; color: var(--plum-soft);
  background: var(--cotton); cursor: pointer; transition: background .15s;
}
.photo-drop.has-photo { border-style: solid; border-color: var(--barbie); color: var(--barbie); background: var(--blush); }
.sheet-row { display: flex; gap: 10px; align-items: center; }
.sheet-row .btn-primary { flex: 1; }

.library-suggest { background: var(--champagne); border-radius: 14px; padding: 10px 14px; font-size: 14px; font-weight: 600; cursor: pointer; }

.loading-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 8px auto 0; display: block; border: 4px solid var(--blush); animation: gentleBob 1.6s infinite ease-in-out; background: var(--blush); }
@keyframes gentleBob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-7px);} }
.loading-line { text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--plum); }
.loading-quote { text-align: center; font-family: var(--font-quote); font-style: italic; font-size: 14px; color: var(--plum-soft); }

.confidence-line { text-align: center; font-size: 14px; color: var(--plum-soft); }
.result-items { display: flex; flex-direction: column; gap: 8px; }
.result-item { background: var(--cotton); border-radius: 14px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.result-item .ri-name { font-weight: 700; flex: 1; min-width: 120px; }
.ri-chip {
  background: var(--blush); border-radius: 999px; padding: 5px 12px;
  font-weight: 700; font-size: 14px; color: var(--plum); border: none;
  transition: transform .1s;
}
.ri-chip:active { transform: scale(.92); }
.ri-chip.kcal { background: var(--bubblegum); color: #fff; }
.hidden-note, .model-note { font-size: 13px; color: var(--plum-soft); font-style: italic; }
.clarify-box { background: var(--blush); border-radius: 14px; padding: 12px 14px; font-size: 14px; display: flex; flex-direction: column; gap: 8px; }

.slot-row { display: flex; gap: 6px; flex-wrap: wrap; }
.slot-pill { background: var(--cotton); border: 2px solid var(--blush); border-radius: 999px; padding: 6px 14px; font-weight: 700; font-size: 13px; color: var(--plum-soft); }
.slot-pill.active { background: var(--barbie); border-color: var(--barbie); color: #fff; }

.manual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.meal-text { margin-top: 2px; }

/* ═══════════ CELEBRATE ═══════════ */
.celebrate {
  position: fixed; inset: 0; z-index: 50; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.celebrate img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 4px solid var(--cream); box-shadow: var(--shadow-lift); animation: popIn .4s cubic-bezier(.34,1.56,.64,1); background: var(--blush); }
.heart-stamp { font-size: 54px; animation: stamp .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes stamp { 0% { transform: scale(3); opacity: 0; } 60% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1); } }
.celebrate p { font-family: var(--font-quote); font-style: italic; color: var(--barbie); background: var(--cream); border-radius: 14px; padding: 8px 16px; box-shadow: var(--shadow); max-width: 280px; text-align: center; }

.confetti-layer { position: fixed; inset: 0; pointer-events: none; z-index: 55; overflow: hidden; }
.confetti-bit { position: absolute; width: 9px; height: 9px; border-radius: 2px; top: -12px; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(105vh) rotate(540deg); opacity: .7; } }

.toast {
  position: fixed; bottom: calc(140px + env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%);
  background: var(--plum); color: var(--blush); font-weight: 600; font-size: 14px;
  border-radius: 999px; padding: 10px 20px; z-index: 58; box-shadow: var(--shadow-lift);
  max-width: 90vw; text-align: center;
}

/* milestone celebration full-screen */
.milestone-splash {
  position: fixed; inset: 0; z-index: 52;
  background: linear-gradient(160deg, var(--blush), var(--champagne));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 30px; text-align: center;
}
.milestone-splash img { width: 200px; height: 200px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-lift); transform: rotate(-2deg); background: var(--cotton); }
.milestone-splash h2 { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--barbie); }
.milestone-splash p { font-family: var(--font-quote); font-style: italic; font-size: 18px; color: var(--plum); max-width: 320px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── fixes: photo row, error state, day detail ── */
.photo-row { display: flex; gap: 10px; }
.photo-row .photo-drop { flex: 1; padding: 20px 10px; }
.photo-status { text-align: center; font-weight: 700; color: var(--barbie); background: var(--blush); border-radius: 12px; padding: 8px; }
.analyze-error { background: #FFF4E8; border: 2px solid var(--champagne); border-radius: 12px; padding: 10px 12px; font-size: 13px; line-height: 1.5; color: var(--plum); }
.day-detail { margin-top: 12px; background: var(--cotton); border-radius: 14px; padding: 12px 14px; }
.day-detail h4 { font-family: var(--font-head); font-size: 15px; color: var(--barbie); margin-bottom: 6px; }
.dd-slot { margin-bottom: 8px; }
.dd-slot-name { font-weight: 700; font-size: 13px; color: var(--plum); }
.dd-item { display: flex; justify-content: space-between; font-size: 13px; color: var(--plum-soft); padding: 2px 0 2px 22px; }
.dd-item b { color: var(--barbie); font-weight: 700; }
.dd-total { border-top: 2px dashed var(--blush); margin-top: 8px; padding-top: 6px; display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; }

/* ── gate typed input + builder card ── */
.gate-form { display: flex; flex-direction: column; gap: 10px; }
.gate-form input { text-align: center; font-size: 17px; }
.builder-card { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.builder-polaroid { width: 150px; transform: rotate(2deg); }
.builder-note { font-size: 14px; line-height: 1.6; color: var(--plum-soft); }
.builder-note strong { color: var(--barbie); }
