@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ===== TOKENS ===== */
:root {
  --ivory:      #FDFAF7;
  --blush:      #F0E0DA;
  --rose:       #C47F78;
  --rose-dark:  #a6615a;
  --berry:      #7D3651;
  --berry-dark: #5e2840;
  --gold:       #C9A46A;
  --charcoal:   #292929;
  --gray:       #9E9390;
  --gray-light: #e8e2df;
  --white:      #ffffff;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 2px 20px rgba(41,41,41,.08);
  --shadow-md: 0 4px 32px rgba(41,41,41,.12);
  --shadow-lg: 0 8px 48px rgba(41,41,41,.18);
  --transition: .22s ease;

  --header-h: 68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg  { display: block; max-width: 100%; }
button    { cursor: pointer; font: inherit; border: none; background: none; }
a         { color: inherit; text-decoration: none; }
ul, ol    { list-style: none; }

/* ===== BASE ===== */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--ivory);
  min-height: 100dvh;
}

h1,h2,h3,h4 { font-family: var(--ff-serif); line-height: 1.2; }

/* ===== PUBLIC HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--ivory);
  border-bottom: 1px solid var(--gray-light);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img { height: 40px; width: auto; }

.site-tagline {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gray);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== PUBLIC MAIN ===== */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

/* ===== LOOKS GRID ===== */
.looks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 560px)  { .looks-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .looks-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (min-width: 1200px) { .looks-grid { grid-template-columns: repeat(5, 1fr); } }

/* ===== LOOK CARD ===== */
.look-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  outline: none;
}

.look-card:hover,
.look-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.look-card:active { transform: scale(.98); }

.look-card__thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
}

.look-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.look-card:hover .look-card__thumb img { transform: scale(1.04); }

.look-card__info {
  padding: 10px 12px 14px;
}

.look-card__title {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.look-card__cta {
  font-size: 12px;
  color: var(--rose);
  letter-spacing: .04em;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,10,14,.88);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.lightbox__container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #111;
}

@media (min-width: 700px) {
  .lightbox__container {
    width: auto;
    max-width: min(90vw, 600px);
    height: auto;
    max-height: 92vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #1a1a1a;
  }
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }

.lightbox__header {
  padding: 14px 56px 10px 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}

.lightbox__title {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  flex: 1;
}

.lightbox__counter {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

.lightbox__body {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 0;
}

.lightbox__photo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  padding: 0 8px;
}

/* Shrink-to-image wrapper so dots are % of actual image */
.photo-with-dots {
  position: relative;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
}

.lightbox__photo {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 160px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

@media (min-width: 700px) {
  .lightbox__photo { max-height: calc(92vh - 160px); }
}

/* Dots layer sits exactly over the image */
.dots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== DOT MARKERS (public) ===== */
.dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 2px solid var(--rose);
  pointer-events: all;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dotPulse 2.4s ease-in-out infinite;
  transition: transform var(--transition), background var(--transition);
  touch-action: manipulation;
}

.dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  transition: background var(--transition);
}

.dot:hover,
.dot:focus-visible {
  animation: none;
  background: var(--rose);
  transform: translate(-50%, -50%) scale(1.2);
}
.dot:hover::after,
.dot:focus-visible::after { background: var(--white); }

.dot:active { transform: translate(-50%, -50%) scale(.95); }

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,127,120,.5); }
  50%       { box-shadow: 0 0 0 9px rgba(196,127,120,0); }
}

/* ===== DOT TOOLTIP ===== */
.dot-tooltip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--ivory);
  border-top: 1px solid var(--gray-light);
  border-radius: 16px 16px 0 0;
  padding: 20px 24px 28px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slideUp .22s ease;
}
.dot-tooltip[hidden] { display: none; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.dot-tooltip__label {
  font-family: var(--ff-serif);
  font-size: 18px;
  color: var(--charcoal);
  flex: 1;
}

.dot-tooltip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--berry);
  color: var(--white);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition);
}
.dot-tooltip__link:hover { background: var(--berry-dark); }

/* ===== LIGHTBOX NAV ===== */
.lightbox__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
  transition: background var(--transition);
}
.lightbox__nav:hover   { background: rgba(255,255,255,.2); }
.lightbox__nav:disabled { opacity: .25; pointer-events: none; }

.lightbox__hint {
  text-align: center;
  padding: 8px 20px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  flex-shrink: 0;
}

.lightbox__dots-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px 16px;
  flex-shrink: 0;
}

.lb-dot-nav {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.lb-dot-nav.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ===== LIGHTBOX LOADING ===== */
.lightbox__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
}
.lightbox__loading[hidden] { display: none; }

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SITE FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 12px;
  color: var(--gray);
  border-top: 1px solid var(--gray-light);
}

/* ==============================================
   ADMIN STYLES
   ============================================== */

/* ===== ADMIN LOGIN ===== */
.admin-login-body {
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px;
}

.login-wrap {
  width: 100%;
  max-width: 420px;
}

.login-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.login-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.login-form { display: flex; flex-direction: column; gap: 18px; }

/* ===== ADMIN LAYOUT ===== */
.admin-body { background: #f5f4f2; }

.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100dvh;
}

@media (max-width: 768px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-sidebar.is-open { display: flex; }
}

/* ===== ADMIN SIDEBAR ===== */
.admin-sidebar {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.sidebar-brand img { height: 32px; width: auto; filter: brightness(0) invert(1); }

.sidebar-nav { padding: 16px 12px; flex: 1; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 2px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.sidebar-nav a svg { opacity: .7; flex-shrink: 0; }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  transition: color var(--transition);
}
.sidebar-footer a:hover { color: rgba(255,255,255,.7); }

/* ===== ADMIN CONTENT ===== */
.admin-content { display: flex; flex-direction: column; min-height: 100dvh; }

.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar h1 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
}

.admin-main { flex: 1; padding: 28px; }

/* ===== FORMS ===== */
.field { display: flex; flex-direction: column; gap: 6px; }

.field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .02em;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,127,120,.15);
}

.field__textarea { resize: vertical; min-height: 90px; }

.field__hint {
  font-size: 12px;
  color: var(--gray);
}

.field__error {
  font-size: 12px;
  color: #c0392b;
}

/* ===== FILE INPUT ===== */
.file-input-wrap {
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.file-input-wrap:hover,
.file-input-wrap.drag-over {
  border-color: var(--rose);
  background: rgba(196,127,120,.04);
}
.file-input-wrap input[type=file] { display: none; }
.file-input-wrap p { color: var(--gray); font-size: 13px; }
.file-input-wrap strong { color: var(--rose); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn:active { transform: scale(.97); }
.btn--full  { width: 100%; }
.btn--sm    { padding: 7px 14px; font-size: 13px; }

.btn--primary {
  background: var(--berry);
  color: var(--white);
}
.btn--primary:hover { background: var(--berry-dark); }

.btn--rose {
  background: var(--rose);
  color: var(--white);
}
.btn--rose:hover { background: var(--rose-dark); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-light);
}
.btn--ghost:hover { border-color: var(--charcoal); }

.btn--danger {
  background: transparent;
  color: #c0392b;
  border: 1.5px solid #f5c6c2;
}
.btn--danger:hover { background: #fdf0ef; }

/* ===== CARDS ===== */
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

/* ===== LOOKS LIST ===== */
.looks-list { display: flex; flex-direction: column; gap: 12px; }

.look-row {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.look-row__thumb {
  width: 56px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
}

.look-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.look-row__info { flex: 1; min-width: 0; }

.look-row__title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.look-row__meta {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

.look-row__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ===== PHOTOS GRID (admin) ===== */
.photos-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.photo-admin-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.photo-admin-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
}

.photo-admin-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-admin-card__order {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--berry);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-admin-card__actions {
  padding: 8px;
  display: flex;
  gap: 6px;
}

.photo-admin-card__actions .btn {
  flex: 1;
  font-size: 12px;
  padding: 6px 8px;
}

/* ===== PHOTO EDITOR ===== */
.photo-editor-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .photo-editor-wrap { grid-template-columns: 1fr; }
}

.photo-editor {
  position: relative;
  display: inline-block;
  line-height: 0;
  cursor: crosshair;
  user-select: none;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.photo-editor img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  pointer-events: none;
}

/* Admin dot markers */
.dot-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid var(--berry);
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--berry);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  z-index: 10;
}

.dot-marker:hover { background: var(--berry); color: var(--white); transform: translate(-50%,-50%) scale(1.2); }
.dot-marker--pending { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,.7); }

/* Dot form panel */
.dot-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot-panel__title {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.dot-list { display: flex; flex-direction: column; gap: 8px; }

.dot-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  border: 1px solid var(--gray-light);
}

.dot-list-item__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--berry);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dot-list-item__info { flex: 1; min-width: 0; }
.dot-list-item__label { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.dot-list-item__url   { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== INLINE DOT FORM (bottom panel) ===== */
.dot-form-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.dot-form-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 201;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-radius: 16px 16px 0 0;
  padding: 20px 20px 28px;
  box-shadow: 0 -4px 32px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideUp .22s ease;
}
.dot-form-panel[hidden] { display: none; }

.dot-form-panel h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 2px;
}

.dot-form-panel .form-row {
  display: flex;
  gap: 10px;
}

.dot-form-panel .form-row .btn { flex-shrink: 0; }

/* ===== ALERTS ===== */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert--error   { background: #fdf0ef; color: #c0392b; border: 1px solid #f5c6c2; }
.alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ===== STAT CARDS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card__num {
  font-family: var(--ff-serif);
  font-size: 40px;
  line-height: 1;
  color: var(--berry);
  display: block;
}

.stat-card__label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  display: block;
}

/* ===== UTILS ===== */
.flex         { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.flex-center  { display: flex; align-items: center; gap: 8px; }
.mt-auto      { margin-top: auto; }
.mt-4         { margin-top: 16px; }
.mt-6         { margin-top: 24px; }
.gap-2        { gap: 8px; }
.text-gray    { color: var(--gray); }
.text-sm      { font-size: 13px; }
.w-full       { width: 100%; }
.breadcrumb   { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--rose); }
.section-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 24px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
  background: var(--blush);
  color: var(--berry);
}

/* Reorder arrows */
.order-btns { display: flex; gap: 4px; }
.order-btns button {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--ivory);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}
.order-btns button:hover { background: var(--blush); color: var(--charcoal); }
.order-btns button:disabled { opacity: .3; pointer-events: none; }

/* Setup page */
.setup-wrap {
  max-width: 560px;
  margin: 60px auto;
  padding: 0 20px;
}
