/* ── HEADER ────────────────────────────────────────────── */
.site-header { text-align: center; margin-bottom: 52px; animation: riseIn .7s ease both; }

.hero-inner { display: flex; justify-content: center; margin-bottom: 1rem; }
.hero-logo  { width: 110px; height: auto; }

.brand-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--caramel); font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.brand-eyebrow::before, .brand-eyebrow::after {
  content: ''; display: block; height: 1px; width: 40px; background: var(--caramel-soft);
}

.site-header h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--brown-dark); line-height: 1.1; margin-bottom: 14px;
}
.site-header h1 em { font-style: italic; color: var(--caramel); }
.site-header p { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.65; max-width: 480px; margin: 0 auto; }

.hero-characters {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 1.5rem; margin-top: 2.5rem; position: relative; z-index: 1; flex-wrap: wrap;
}
.char { font-size: clamp(2.8rem, 6vw, 4.2rem); animation: bobble 2.4s ease-in-out infinite; display: inline-block; filter: drop-shadow(0 4px 8px rgba(0,0,0,.12)); }
.char:nth-child(2) { animation-delay: .3s; }
.char:nth-child(3) { animation-delay: .6s; }
.char:nth-child(4) { animation-delay: .9s; }
.char:nth-child(5) { animation-delay: 1.2s; }

/* ── REVIEWS — STAR RATING ──────────────────────────────────── */
.rating-section { margin-bottom: 32px; }
.rating-section-header { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius-md) var(--radius-md) 0 0; background: var(--parchment); border: 1.5px solid var(--border); border-bottom: none; }
.rating-section-icon { font-size: 20px; }
.rating-section-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--brown-dark); font-weight: 600; }
.rating-section-body { border: 1.5px solid var(--border); border-radius: 0 0 var(--radius-md) var(--radius-md); overflow: hidden; }

.rating-row           { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border); gap: 16px; transition: background var(--t); }
.rating-row:last-child{ border-bottom: none; }
.rating-row:hover     { background: rgba(181,131,74,.03); }
.rating-row-name      { font-size: 13.5px; color: var(--brown-mid); flex: 1; min-width: 120px; }

.star-group { display: flex; gap: 3px; flex-direction: row-reverse; }
.star-group input[type=radio] { display: none; }
.star-group label { font-size: 26px; cursor: pointer; color: var(--star-empty); transition: color var(--t), transform var(--t); line-height: 1; }
.star-group label:hover,
.star-group label:hover ~ label,
.star-group input:checked ~ label { color: var(--star); }
.star-group label:hover           { transform: scale(1.2); }
.star-group input:checked + label { transform: scale(1.15); }
.star-value-display { font-size: 11.5px; color: var(--muted); min-width: 56px; text-align: right; font-weight: 500; transition: color var(--t); }
.rating-error         { font-size: 11.5px; color: #c0392b; padding: 6px 18px 10px; display: none; }
.rating-error.visible { display: block; }


/* ── REVIEWS — PRODUCT CHIPS ────────────────────────────────── */
.product-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.product-chip  { position: relative; }
.product-chip input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.product-chip label { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--parchment); font-size: 13px; color: var(--brown-mid); cursor: pointer; transition: all var(--t); }
.product-chip label:hover              { border-color: var(--caramel-soft); background: #fff; }
.product-chip input:checked + label   { border-color: var(--caramel); background: #fff; color: var(--caramel); box-shadow: 0 0 0 3px rgba(181,131,74,.15); font-weight: 500; }


/* ── REVIEWS — RECOMMEND TOGGLE ─────────────────────────────── */
.recommend-wrap { display: flex; gap: 10px; }
.recommend-opt  { position: relative; flex: 1; }
.recommend-opt input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.recommend-opt label { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: var(--radius-md); border: 1.5px solid var(--border); background: var(--parchment); font-size: 14px; color: var(--brown-mid); cursor: pointer; transition: all var(--t); text-align: center; }
.recommend-opt label:hover                  { border-color: var(--caramel-soft); background: #fff; }
.recommend-opt.yes input:checked + label   { border-color: var(--sage);  color: var(--sage);  background: #fff; box-shadow: 0 0 0 3px rgba(110,148,120,.15); font-weight: 500; }
.recommend-opt.no  input:checked + label   { border-color: var(--rose);  color: var(--rose);  background: #fff; box-shadow: 0 0 0 3px rgba(196,128,110,.15); font-weight: 500; }


/* ── REVIEWS — PERMISSION CHECKBOX ─────────────────────────── */
.permission-wrap { background: var(--parchment); border-radius: var(--radius-md); border: 1.5px solid var(--border); padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; cursor: pointer; transition: all var(--t); }
.permission-wrap:hover { border-color: var(--caramel-soft); }
.permission-wrap input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--caramel); cursor: pointer; }
.permission-text        { font-size: 13.5px; color: var(--brown-mid); line-height: 1.6; }
.permission-text strong { color: var(--brown-dark); font-weight: 500; }


/* ── REVIEWS — PHOTO UPLOAD ─────────────────────────────────── */
.photo-upload-area { border: 2px dashed var(--border); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; cursor: pointer; transition: all var(--t); background: var(--parchment); position: relative; }
.photo-upload-area:hover { border-color: var(--caramel-soft); background: #fff; }
.photo-upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-icon   { font-size: 28px; margin-bottom: 8px; display: block; }
.upload-text   { font-size: 14px; color: var(--brown-mid); margin-bottom: 3px; font-weight: 500; }
.upload-hint   { font-size: 12px; color: var(--muted); }
.photo-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.photo-thumb   { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; border: 1.5px solid var(--border); animation: pop .3s cubic-bezier(.34,1.56,.64,1) both; }


/* ── REVIEWS — SUMMARY BLOCKS ───────────────────────────────── */
.summary-block        { background: var(--parchment); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; margin-bottom: 14px; }
.summary-block-header { padding: 14px 20px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; }
.summary-block-header span { font-size: 18px; }
.summary-block-header h4   { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--brown-dark); }
.summary-block-body   { padding: 16px 20px; }
.summary-star-row     { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
.summary-star-row:last-child { border-bottom: none; }
.summary-star-name    { color: var(--muted); }
.summary-stars        { color: var(--star); font-size: 14px; letter-spacing: 1px; }
.summary-avg          { font-size: 11px; color: var(--muted); margin-left: 6px; }
.summary-recommend    { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; }
.summary-recommend.yes{ background: rgba(110,148,120,.12); color: var(--sage); border: 1px solid rgba(110,148,120,.25); }
.summary-recommend.no { background: rgba(196,128,110,.12); color: var(--rose); border: 1px solid rgba(196,128,110,.25); }
