/* ═══════════════════════════════════════════
   LOVE LINK STORE — CSS
   ═══════════════════════════════════════════ */

/* ── Variables & Reset ── */
:root {
  --bg: #07060d;
  --bg2: #0e0c18;
  --surface: #141220;
  --surface2: #1b1830;
  --surface3: #231f3a;
  --border: rgba(255,255,255,.06);
  --border2: rgba(255,255,255,.1);
  --border3: rgba(255,255,255,.16);
  --text: #ede8ff;
  --text2: #c4bcdf;
  --muted: #7a7290;
  --accent: #c9a0ff;
  --accent2: #8bb8ff;
  --accent3: #ff8ec4;
  --success: #5ddcb0;
  --danger: #ff6b8a;
  --warn: #ffc062;
  --galaxy: #b57bff;
  --meteor: #60b0ff;
  --birthday: #ff69b4;
  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
  --font: 'Be Vietnam Pro', sans-serif;
  --font-display: 'Playfair Display', serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 15px; line-height: 1.6; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { min-height: 100vh; overflow-x: hidden; }
a { color: var(--accent2); text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }


/* ── Animations ── */
@keyframes viewIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(.5); opacity: .3; }
  40% { transform: scale(1); opacity: 1; }
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(.5); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .1; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}


/* ── View System ── */
.view { display: none; animation: viewIn .4s var(--ease); }
.view.active { display: block; }


/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 2rem;
  background: rgba(7,6,13,.7);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.navbar.scrolled { background: rgba(7,6,13,.92); }

.nav-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.nav-center { display: flex; gap: 1.5rem; }

.nav-link {
  background: none; border: none; color: var(--text2);
  font-size: 14px; font-weight: 500; padding: .4rem .1rem;
  position: relative; transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
}

.nav-right { display: flex; align-items: center; gap: .75rem; }

.btn-nav {
  background: none; border: 1px solid var(--border2); border-radius: var(--r);
  padding: .5rem 1.1rem; color: var(--text2); font-size: 13px; font-weight: 500;
  transition: all .2s;
}
.btn-nav:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav.primary {
  background: var(--accent); border-color: var(--accent);
  color: #0a0a0f; font-weight: 600;
}
.btn-nav.primary:hover { opacity: .88; }

.nav-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--accent); cursor: pointer;
  transition: transform .2s;
}
.nav-avatar:hover { transform: scale(1.08); }

.nav-user { display: flex; align-items: center; gap: .6rem; }
.nav-user-name { font-size: 13px; color: var(--text2); font-weight: 500; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 180px;
  background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--r);
  padding: .4rem; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s; box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  padding: .6rem .8rem; border-radius: var(--r-sm); border: none; background: none;
  color: var(--text2); font-size: 13px; text-align: left; transition: all .15s;
}
.nav-dropdown-item:hover { background: var(--surface3); color: var(--text); }
.nav-dropdown-item.danger:hover { color: var(--danger); }


/* ═══════════════════════════════════════════
   LANDING — HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 6rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(181,123,255,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 70% 60%, rgba(96,176,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 30% 70%, rgba(255,105,180,.06) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: particleFloat var(--dur,12s) var(--delay,0s) ease-in-out infinite;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,160,255,.1); border: 1px solid rgba(201,160,255,.2);
  border-radius: 999px; padding: .4rem 1rem; font-size: 12px; font-weight: 500;
  color: var(--accent); letter-spacing: .04em; margin-bottom: 1.5rem;
  animation: fadeUp .8s var(--ease) backwards;
}
.hero-badge::before { content: '✦'; font-size: 10px; }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 1.25rem; animation: fadeUp .8s .1s var(--ease) backwards;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent3), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.05rem; color: var(--text2); font-weight: 300; line-height: 1.7;
  margin-bottom: 2.5rem; animation: fadeUp .8s .2s var(--ease) backwards;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--accent), #a87bff);
  color: #0a0a0f; border: none; border-radius: var(--r);
  padding: .85rem 2rem; font-size: 1rem; font-weight: 600;
  transition: all .25s; animation: fadeUp .8s .3s var(--ease) backwards;
  box-shadow: 0 0 30px rgba(201,160,255,.3);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(201,160,255,.45); }
.hero-cta svg { width: 18px; height: 18px; }


/* ── Features ── */
.features { padding: 3rem 2rem 5rem; max-width: 950px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.feature-item {
  padding: 1.25rem; border-radius: var(--r); border: 1px solid var(--border);
  background: var(--surface); transition: all .25s; text-align: center;
}
.feature-item:hover { border-color: var(--border2); background: var(--surface2); }
.feature-icon { font-size: 1.5rem; margin-bottom: .6rem; }
.feature-name { font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.feature-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── Contact Section ── */
.contact-section {
  padding: 2rem 2rem 3rem; max-width: 680px; margin: 0 auto;
}
.contact-inner {
  padding: 2rem 2rem 2.25rem; border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(201,160,255,.04), rgba(139,184,255,.04));
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.contact-inner::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-heading { text-align: center; margin-bottom: 1.5rem; position: relative; }
.contact-sparkle {
  display: inline-block; font-size: 12px; color: var(--accent);
  margin-bottom: .5rem; opacity: .7; letter-spacing: .3em;
}
.contact-heading h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  margin-bottom: .4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-heading p { font-size: 15px; color: var(--muted); }

.contact-cards { display: flex; flex-direction: column; gap: .75rem; }

.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 1.1rem; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--surface);
  text-decoration: none; color: var(--text); transition: all .25s;
}
.contact-card:hover {
  border-color: var(--border3); background: var(--surface2);
  transform: translateX(4px);
}
.contact-card:hover .contact-arrow { opacity: 1; transform: translateX(0); }

.contact-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; overflow: hidden; }
.contact-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-info { flex: 1; min-width: 0; }
.contact-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .1rem; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text); }

.contact-zalo:hover .contact-label { color: #5ba6ff; }
.contact-tiktok:hover .contact-label { color: #fe2c55; }

.contact-arrow {
  flex-shrink: 0; color: var(--accent); opacity: 0;
  transform: translateX(-6px); transition: all .25s;
}

.landing-footer {
  text-align: center; padding: 2.5rem 2rem;
  border-top: 1px solid var(--border); font-size: 13px; color: var(--muted);
}


/* ═══════════════════════════════════════════
   GALLERY — Template Cards
   ═══════════════════════════════════════════ */
.gallery { padding: 5.5rem 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.gallery-header { margin-bottom: 2.5rem; }
.gallery-header h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-bottom: .35rem; }
.gallery-header p { color: var(--muted); font-size: .95rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }

.tpl-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  transition: all .3s;
}
.tpl-card:hover {
  border-color: var(--border3); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

.tpl-img {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: var(--surface2); cursor: pointer;
}
.tpl-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tpl-card:hover .tpl-img img { transform: scale(1.04); }

.tpl-hot {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ff3e7a); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  box-shadow: 0 3px 12px rgba(255,62,122,.4);
}

.tpl-play-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.tpl-card:hover .tpl-play-overlay { opacity: 1; }
.tpl-play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.tpl-card:hover .tpl-play-btn { transform: scale(1.05); }
.tpl-play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 2px; }

.tpl-body { padding: 1.25rem; }
.tpl-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .4rem; }
.tpl-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: .85rem; }

.tpl-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tpl-tag {
  font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 999px;
  background: var(--surface2); color: var(--text2); border: 1px solid var(--border);
}
.tpl-tag.hot { background: rgba(255,62,122,.12); color: #ff6b8a; border-color: rgba(255,62,122,.2); }

.tpl-footer { display: flex; align-items: center; justify-content: space-between; }
.tpl-stats { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.tpl-price { font-size: 1rem; font-weight: 700; color: var(--accent); }

.tpl-actions { display: flex; gap: .5rem; margin-top: 1rem; }
.btn-tpl {
  flex: 1; padding: .65rem; border-radius: var(--r-sm); font-size: 14px; font-weight: 500;
  border: 1px solid var(--border2); background: none; color: var(--text2);
  transition: all .2s; text-align: center;
}
.btn-tpl:hover { border-color: var(--accent); color: var(--accent); }
.btn-tpl.primary {
  background: linear-gradient(135deg, var(--accent), #a87bff);
  border-color: transparent; color: #0a0a0f; font-weight: 600;
}
.btn-tpl.primary:hover { opacity: .9; transform: translateY(-1px); }


/* ═══════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s; padding: 1.5rem;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  width: 100%; max-width: 400px; background: var(--surface);
  border: 1px solid var(--border2); border-radius: var(--r-lg);
  padding: 2.5rem; text-align: center; position: relative;
  transform: translateY(12px) scale(.97); transition: transform .35s var(--ease-spring);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--muted); font-size: 18px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all .2s; z-index: 2;
}
.modal-close:hover { background: var(--surface2); color: var(--text); }

.modal-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--accent); margin-bottom: .35rem; }
.modal-sub { color: var(--muted); font-size: 13px; margin-bottom: 2rem; }

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  width: 100%; padding: .8rem; border-radius: var(--r);
  background: #fff; color: #333; border: none; font-size: 15px; font-weight: 500;
  transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.btn-google:hover { box-shadow: 0 4px 16px rgba(0,0,0,.25); transform: translateY(-1px); }
.btn-google svg { width: 20px; height: 20px; }
.auth-note { font-size: 12px; color: var(--muted); margin-top: 1.25rem; line-height: 1.5; }


/* ═══════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════ */
.dashboard { padding: 5.5rem 2rem 3rem; max-width: 1000px; margin: 0 auto; }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.dash-header h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }

.btn-create {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: #0a0a0f; border: none; border-radius: var(--r);
  padding: .65rem 1.3rem; font-size: 14px; font-weight: 600; transition: all .2s;
}
.btn-create:hover { opacity: .88; }
.btn-create svg { width: 16px; height: 16px; }

.order-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.order-card {
  border: 1px solid var(--border); border-radius: var(--r); background: var(--surface);
  padding: 1.25rem; transition: all .25s; cursor: pointer;
}
.order-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.order-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.order-theme-badge, .order-status { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }

.status-draft   { background: rgba(255,192,98,.12);  color: var(--warn); }
.status-pending { background: rgba(139,184,255,.12); color: var(--accent2); }
.status-paid    { background: rgba(93,220,176,.12);  color: var(--success); }

.badge-galaxy   { background: rgba(181,123,255,.15); color: var(--galaxy); }
.badge-meteor   { background: rgba(96,176,255,.15);  color: var(--meteor); }
.badge-birthday { background: rgba(255,105,180,.15); color: var(--birthday); }

.order-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: .25rem; }
.order-date { font-size: 12px; color: var(--muted); margin-bottom: .75rem; }
.order-link {
  font-size: 12px; color: var(--accent2); background: var(--surface2);
  padding: .4rem .7rem; border-radius: var(--r-sm); word-break: break-all;
  border: 1px solid var(--border);
}

.empty-dash { text-align: center; padding: 5rem 2rem; color: var(--muted); }
.empty-dash-icon { font-size: 3.5rem; opacity: .25; margin-bottom: 1rem; }
.empty-dash h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text); opacity: .5; margin-bottom: .5rem; }
.empty-dash p { font-size: 14px; margin-bottom: 1.5rem; }


/* ═══════════════════════════════════════════
   EDITOR
   ═══════════════════════════════════════════ */
.editor { padding: 5.5rem 2rem 3rem; max-width: 750px; margin: 0 auto; }

.editor-back {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--muted); font-size: 13px; font-weight: 500; margin-bottom: 1.5rem;
  background: none; border: none; transition: color .2s;
}
.editor-back:hover { color: var(--accent); }
.editor-back svg { width: 16px; height: 16px; }

.editor-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: .35rem; }
.editor-title em { color: var(--accent); font-style: italic; }
.editor-sub { font-size: 14px; color: var(--muted); margin-bottom: 2rem; }


/* ── Form ── */
.form-section { margin-bottom: 2rem; }
.form-section-title {
  font-size: 11px; font-weight: 600; color: var(--accent);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.form-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-size: 12px; font-weight: 500; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: .45rem;
}
.field label .hint { font-weight: 400; text-transform: none; opacity: .7; font-size: 11px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-sm); padding: .7rem 1rem; color: var(--text);
  font-size: 15px; outline: none; transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input:disabled, .field select:disabled, .field textarea:disabled {
  opacity: .55; cursor: not-allowed; background: var(--surface2);
}

.theme-fields-box {
  padding: 1rem; border-radius: var(--r); margin-bottom: 1rem;
  border: 1px solid var(--border); background: var(--surface);
}
.theme-fields-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding-bottom: .5rem; margin-bottom: .75rem; border-bottom: 1px solid var(--border);
}


/* ── Song Picker ── */
.song-list { display: flex; flex-direction: column; gap: .4rem; max-height: 240px; overflow-y: auto; }
.song-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem .85rem; border-radius: var(--r-sm);
  border: 1px solid var(--border); cursor: pointer; transition: all .15s;
}
.song-item:hover { background: var(--surface2); border-color: var(--border2); }
.song-item.selected { background: rgba(201,160,255,.06); border-color: rgba(201,160,255,.25); }
.song-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--muted); flex-shrink: 0; transition: all .15s; }
.song-item.selected .song-dot { background: var(--accent); border-color: var(--accent); }
.song-name { font-size: 14px; flex: 1; }
.song-play {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border2); background: none; color: var(--muted);
  font-size: 11px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s;
}
.song-play:hover { border-color: var(--accent2); color: var(--accent2); }

.song-upload-row { display: flex; align-items: center; gap: .6rem; margin-top: .6rem; }
.btn-upload-song {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem .85rem; background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--r-sm); color: var(--muted); font-size: 13px; transition: all .2s;
}
.btn-upload-song:hover { border-color: var(--accent2); color: var(--accent2); }

/* Custom song inline indicator (next to upload button) */
.song-custom-inline {
  display: flex; align-items: center; gap: .5rem; flex: 1; min-width: 0;
  padding: .4rem .7rem; border-radius: var(--r-sm);
  border: 1px solid var(--border); cursor: pointer; transition: all .15s;
  font-size: 13px;
}
.song-custom-inline:hover { background: var(--surface2); border-color: var(--border2); }
.song-custom-inline.selected { background: rgba(201,160,255,.06); border-color: rgba(201,160,255,.25); }
.song-custom-inline .song-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--muted); flex-shrink: 0; transition: all .15s; }
.song-custom-inline.selected .song-dot { background: var(--accent); border-color: var(--accent); }
.song-custom-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text2); }
.song-custom-inline.selected .song-custom-label { color: var(--text); }
.song-custom-inline .song-play { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border2); background: none; color: var(--muted); font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .15s; }
.song-custom-inline .song-play:hover { border-color: var(--accent2); color: var(--accent2); }


/* ── Image Upload ── */
.drop-zone {
  border: 2px dashed var(--border2); border-radius: var(--r);
  padding: 2.5rem 1.5rem; text-align: center; cursor: pointer;
  transition: all .25s; position: relative;
}
.drop-zone:hover, .drop-zone.drag-over { border-color: var(--accent); background: rgba(201,160,255,.03); }
.drop-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop-icon { font-size: 2.2rem; opacity: .4; margin-bottom: .5rem; }
.drop-text { font-size: 14px; color: var(--muted); }
.drop-text strong { color: var(--accent2); }
.drop-hint { font-size: 12px; color: var(--muted); margin-top: .3rem; opacity: .6; }

.image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); gap: .5rem; margin-top: 1rem; }
.img-thumb { position: relative; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; background: var(--surface2); }
.img-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-thumb .img-del {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(0,0,0,.75); border: none; color: #fff;
  cursor: pointer; font-size: 11px; display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: opacity .2s;
}
.img-thumb:hover .img-del { opacity: 1; }
.img-progress {
  position: absolute; inset: 0; background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--accent);
}


/* ── Preview & Payment ── */
.preview-pay-box { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.preview-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; align-items: center; }

.btn-preview {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: var(--r); font-size: 14px; font-weight: 600;
  border: 1px solid var(--accent); background: none; color: var(--accent); transition: all .2s;
}
.btn-preview:hover { background: rgba(201,160,255,.08); }
.btn-preview svg { width: 16px; height: 16px; }

.btn-save-draft {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: var(--r); font-size: 14px; font-weight: 500;
  border: 1px solid var(--border2); background: none; color: var(--text2); transition: all .2s;
}
.btn-save-draft:hover { border-color: var(--accent2); color: var(--accent2); }
.save-status { font-size: 13px; }

.pay-box {
  background: var(--surface); border: 1px solid var(--border2); border-radius: var(--r);
  padding: 1.5rem; margin-top: 1rem;
}
.pay-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .25rem; }
.pay-price { font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.pay-price small { font-size: .8rem; font-weight: 400; color: var(--muted); }

.btn-pay {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .8rem; border-radius: var(--r); font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, var(--success), #3dc99a); color: #0a0a0f; border: none;
  transition: all .2s; box-shadow: 0 0 20px rgba(93,220,176,.2);
}
.btn-pay:hover { box-shadow: 0 0 35px rgba(93,220,176,.35); transform: translateY(-1px); }
.btn-pay:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.pay-waiting {
  color: var(--accent2); font-size: 14px; font-weight: 500; margin-top: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.pay-waiting::before {
  content: ''; width: 14px; height: 14px;
  border: 2px solid var(--accent2); border-top-color: transparent;
  border-radius: 50%; animation: spin .8s linear infinite;
}

.link-ready-box {
  background: rgba(93,220,176,.06); border: 1px solid rgba(93,220,176,.2);
  border-radius: var(--r); padding: 1.5rem; text-align: center;
}
.link-ready-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.link-ready-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: .75rem; color: var(--success); }

.link-row { display: flex; gap: .5rem; margin-top: .75rem; }
.link-url-box {
  flex: 1; font-size: 13px; color: var(--accent2); background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--r-sm); padding: .5rem .75rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: monospace;
}
.btn-copy {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; background: var(--accent2); color: #0a0a0f; border: none;
  border-radius: var(--r-sm); font-size: 13px; font-weight: 600; white-space: nowrap; transition: all .2s;
}
.btn-copy:hover { opacity: .85; }
.btn-copy.copied { background: var(--success); }


/* ═══════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════ */
.loading-screen {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; transition: opacity .5s;
}
.loading-screen.hide { opacity: 0; pointer-events: none; }
.loading-dots { display: flex; gap: .3rem; }
.loading-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: .15s; }
.loading-dots span:nth-child(3) { animation-delay: .3s; }


/* ═══════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════ */
.admin-panel { padding: 5.5rem 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.admin-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.admin-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: .2rem; }
.admin-sub { font-size: 14px; color: var(--muted); }

/* Stats Cards */
.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.15rem 1.25rem; transition: all .25s;
}
.stat-card:hover { border-color: var(--border2); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; margin-bottom: .35rem; }
.stat-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.stat-value.accent { color: var(--accent); }
.stat-value.success { color: var(--success); }
.stat-value.warn { color: var(--warn); }
.stat-value.accent2 { color: var(--accent2); }
.stat-value.danger { color: var(--danger); }
.stat-extra { font-size: 12px; color: var(--muted); margin-top: .2rem; }

/* Admin Price Manager */
.admin-price-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.5rem; margin-bottom: 2rem;
}
.admin-price-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.25rem; flex-wrap: wrap; gap: .75rem;
}
.admin-price-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: .15rem; }
.admin-price-sub { font-size: 13px; color: var(--muted); }
.btn-save-prices {
  padding: .6rem 1.4rem; border-radius: var(--r-sm); border: 1px solid var(--success); cursor: pointer;
  background: var(--success); color: #fff; font-weight: 600; font-size: 13px; transition: all .2s;
  letter-spacing: .02em;
}
.btn-save-prices:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(29,158,117,.4); background: #1dba85; }
.btn-save-prices:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.price-rows { display: flex; flex-direction: column; gap: .75rem; }
.price-row {
  display: flex; align-items: center; gap: 1rem; padding: .75rem 1rem;
  background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--r-sm);
}
.price-theme-info { display: flex; align-items: center; gap: .5rem; min-width: 160px; }
.price-theme-icon { font-size: 1.1rem; }
.price-theme-name { font-size: 14px; font-weight: 500; color: var(--text); }
.price-input-wrap { display: flex; align-items: center; gap: .35rem; }
.price-input {
  width: 120px; padding: .45rem .6rem; border-radius: var(--r-sm);
  border: 1px solid var(--border2); background: var(--bg); color: var(--text);
  font-size: 14px; font-weight: 600; text-align: right;
  transition: border-color .2s;
}
.price-input:focus { outline: none; border-color: var(--accent); }
.price-unit { font-size: 13px; color: var(--muted); font-weight: 500; }
.price-display { font-size: 14px; font-weight: 600; color: var(--accent); min-width: 90px; text-align: right; margin-left: auto; }
.price-save-status { font-size: 13px; margin-top: .75rem; }

/* Filters */
.admin-filters {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.admin-search-box {
  display: flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--border2); border-radius: var(--r-sm);
  padding: .55rem .85rem; flex: 1; min-width: 200px; transition: border .2s;
}
.admin-search-box:focus-within { border-color: var(--accent); }
.admin-search-box svg { color: var(--muted); flex-shrink: 0; }
.admin-search-box input {
  background: none; border: none; outline: none; color: var(--text);
  font-size: 14px; width: 100%;
}
.admin-filter-group { display: flex; gap: .6rem; flex-wrap: wrap; }
.admin-filter-group select {
  background: var(--surface); border: 1px solid var(--border2); border-radius: var(--r-sm);
  padding: .5rem .75rem; color: var(--text); font-size: 13px; outline: none;
  cursor: pointer; transition: border .2s;
}
.admin-filter-group select:focus { border-color: var(--accent); }

/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 13px;
}
.admin-table thead th {
  text-align: left; padding: .7rem .85rem; font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  border-bottom: 1px solid var(--border2); white-space: nowrap;
  position: sticky; top: 0; background: var(--bg); z-index: 1;
}
.admin-table tbody tr {
  transition: background .15s; cursor: pointer;
}
.admin-table tbody tr:hover { background: var(--surface); }
.admin-table td {
  padding: .7rem .85rem; border-bottom: 1px solid var(--border);
  vertical-align: middle; white-space: nowrap;
}
.admin-table td.wrap { white-space: normal; max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
.admin-table .cell-id { font-family: monospace; font-size: 12px; color: var(--accent2); }
.admin-table .cell-email { color: var(--text2); font-size: 12px; }
.admin-table .cell-date { color: var(--muted); font-size: 12px; }
.admin-table .cell-name { font-weight: 500; }

/* Action Buttons in Table */
.admin-actions { display: flex; gap: .35rem; }
.btn-admin-sm {
  padding: .3rem .65rem; border-radius: var(--r-sm); font-size: 12px; font-weight: 600;
  border: 1px solid var(--border2); background: none; color: var(--text2);
  transition: all .15s; white-space: nowrap;
}
.btn-admin-sm:hover { border-color: var(--accent); color: var(--accent); }
.btn-admin-sm.pay { border-color: rgba(93,220,176,.3); color: var(--success); background: rgba(93,220,176,.06); }
.btn-admin-sm.pay:hover { background: rgba(93,220,176,.15); border-color: var(--success); }
.btn-admin-sm.unpay { border-color: rgba(255,192,98,.3); color: var(--warn); background: rgba(255,192,98,.06); }
.btn-admin-sm.unpay:hover { background: rgba(255,192,98,.15); border-color: var(--warn); }
.btn-admin-sm.del { border-color: rgba(255,107,138,.2); color: var(--danger); }
.btn-admin-sm.del:hover { background: rgba(255,107,138,.08); border-color: var(--danger); }
.btn-admin-sm.view { border-color: rgba(139,184,255,.3); color: var(--accent2); }
.btn-admin-sm.view:hover { background: rgba(139,184,255,.08); border-color: var(--accent2); }

/* Admin Detail Modal */
.admin-detail-section { margin-bottom: 1.25rem; }
.admin-detail-label { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.admin-detail-row { display: flex; gap: .5rem; margin-bottom: .35rem; font-size: 14px; }
.admin-detail-key { color: var(--muted); min-width: 120px; flex-shrink: 0; }
.admin-detail-val { color: var(--text); word-break: break-all; }
.admin-detail-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.btn-admin-action {
  flex: 1; min-width: 120px; padding: .65rem 1rem; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; border: 1px solid var(--border2);
  background: none; color: var(--text2); transition: all .2s; text-align: center;
}
.btn-admin-action:hover { border-color: var(--accent); color: var(--accent); }
.btn-admin-action.success { background: rgba(93,220,176,.1); border-color: rgba(93,220,176,.3); color: var(--success); }
.btn-admin-action.success:hover { background: rgba(93,220,176,.2); }
.btn-admin-action.warn { background: rgba(255,192,98,.08); border-color: rgba(255,192,98,.25); color: var(--warn); }
.btn-admin-action.warn:hover { background: rgba(255,192,98,.15); }
.btn-admin-action.danger { background: rgba(255,107,138,.08); border-color: rgba(255,107,138,.25); color: var(--danger); }
.btn-admin-action.danger:hover { background: rgba(255,107,138,.15); }

/* Admin empty state */
.admin-empty { text-align: center; padding: 3rem 2rem; color: var(--muted); }
.admin-empty-icon { font-size: 2.5rem; opacity: .3; margin-bottom: .75rem; }

/* Admin "Tạo miễn phí" theme selector modal */
.admin-theme-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: 1rem; }
.admin-theme-card {
  padding: 1rem; border-radius: var(--r); border: 1px solid var(--border2);
  background: var(--surface); text-align: center; cursor: pointer; transition: all .2s;
}
.admin-theme-card:hover { border-color: var(--accent); background: var(--surface2); transform: translateY(-2px); }
.admin-theme-icon { font-size: 1.5rem; margin-bottom: .35rem; }
.admin-theme-name { font-size: 13px; font-weight: 600; }

/* Pagination */
.admin-pagination {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-top: 1px solid var(--border); margin-top: .5rem; font-size: 13px; color: var(--muted);
}
.admin-page-btns { display: flex; gap: .4rem; }
.btn-page {
  padding: .35rem .75rem; border-radius: var(--r-sm); font-size: 13px;
  border: 1px solid var(--border2); background: none; color: var(--text2);
  transition: all .15s;
}
.btn-page:hover { border-color: var(--accent); color: var(--accent); }
.btn-page:disabled { opacity: .3; cursor: not-allowed; }
.btn-page.active { background: var(--accent); border-color: var(--accent); color: #0a0a0f; font-weight: 600; }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── Addon Options (Extra Images, Permanent Link) ── */
.addon-section { margin-top: 1.5rem; }
.addon-section-title {
  font-size: 11px; font-weight: 600; color: var(--accent3);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.addon-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.addon-card {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem 1rem; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: var(--surface);
  margin-bottom: .65rem; transition: all .2s; cursor: pointer;
}
.addon-card:hover { border-color: var(--border2); background: var(--surface2); }
.addon-card.active { border-color: rgba(201,160,255,.3); background: rgba(201,160,255,.04); }

.addon-toggle {
  position: relative; width: 40px; height: 22px; flex-shrink: 0; margin-top: 2px;
}
.addon-toggle input { display: none; }
.addon-toggle-track {
  position: absolute; inset: 0; border-radius: 11px;
  background: var(--surface3); border: 1px solid var(--border2);
  transition: all .2s;
}
.addon-toggle input:checked + .addon-toggle-track {
  background: var(--accent); border-color: var(--accent);
}
.addon-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--muted); transition: all .2s;
}
.addon-toggle input:checked ~ .addon-toggle-thumb {
  left: 21px; background: #fff;
}

.addon-info { flex: 1; min-width: 0; }
.addon-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: .15rem; }
.addon-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.addon-price-tag {
  font-size: 13px; font-weight: 700; color: var(--accent); white-space: nowrap;
  flex-shrink: 0; align-self: center;
}

/* ── Image Limit ── */
.img-limit-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .75rem; font-size: 13px; color: var(--muted);
}
.img-limit-count { font-weight: 600; }
.img-limit-count.at-limit { color: var(--warn); }
.img-limit-count.over-limit { color: var(--danger); }
.img-limit-meter {
  flex: 1; max-width: 120px; height: 4px; background: var(--surface3);
  border-radius: 2px; margin: 0 .75rem; overflow: hidden;
}
.img-limit-fill {
  height: 100%; border-radius: 2px; background: var(--accent2);
  transition: width .3s var(--ease), background .3s;
}
.img-limit-fill.at-limit { background: var(--warn); }
.img-limit-fill.over-limit { background: var(--danger); }

.img-limit-warning {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .85rem; border-radius: var(--r-sm);
  background: rgba(255,192,98,.06); border: 1px solid rgba(255,192,98,.2);
  font-size: 12px; color: var(--warn); margin-bottom: .75rem;
}

/* ── Price Breakdown ── */
.price-breakdown {
  margin-bottom: 1rem; padding: .75rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.price-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: .3rem 0; color: var(--text2);
}
.price-line .price-line-label { display: flex; align-items: center; gap: .4rem; }
.price-line .price-line-amount { font-weight: 600; color: var(--text); }
.price-line.addon-line { color: var(--accent3); }
.price-line.addon-line .price-line-amount { color: var(--accent3); }
.price-line.total-line {
  font-size: 15px; font-weight: 700; color: var(--text);
  padding-top: .5rem; margin-top: .25rem; border-top: 1px dashed var(--border2);
}
.price-line.total-line .price-line-amount { color: var(--accent); font-size: 1.1rem; }

/* ── Draft Expiry Warning ── */
.draft-expiry-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem; border-radius: var(--r-sm);
  background: rgba(255,107,138,.06); border: 1px solid rgba(255,107,138,.15);
  font-size: 12px; color: var(--danger); margin-bottom: 1.25rem;
}
.draft-expiry-bar .expiry-icon { font-size: 14px; flex-shrink: 0; }
.draft-expiry-bar .expiry-time { font-weight: 600; }

/* ── Link Expiry Info (paid orders) ── */
.link-expiry-info {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem; border-radius: var(--r-sm);
  font-size: 12px; margin-top: .75rem;
}
.link-expiry-info.permanent { background: rgba(93,220,176,.06); border: 1px solid rgba(93,220,176,.15); color: var(--success); }
.link-expiry-info.temporary { background: rgba(255,192,98,.06); border: 1px solid rgba(255,192,98,.15); color: var(--warn); }

/* ── Admin Addon Price Manager ── */
.addon-price-separator {
  font-size: 12px; font-weight: 600; color: var(--accent3);
  text-transform: uppercase; letter-spacing: .08em;
  padding: .75rem 0 .25rem; margin-top: .5rem;
}

/* ── Admin detail addon badges ── */
.admin-addon-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .6rem; border-radius: var(--r-sm); font-size: 12px; font-weight: 600;
}
.admin-addon-badge.active { background: rgba(93,220,176,.1); color: var(--success); border: 1px solid rgba(93,220,176,.2); }
.admin-addon-badge.inactive { background: var(--surface2); color: var(--muted); border: 1px solid var(--border); }

@media (max-width: 700px) {
  .navbar { padding: .75rem 1rem; }
  .nav-center { display: none; }
  .nav-user-name { display: none; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .gallery { padding: 4.5rem 1rem 3rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .dashboard { padding: 5rem 1rem 3rem; }
  .editor { padding: 5rem 1rem 3rem; }
  .order-grid { grid-template-columns: 1fr; }
  .link-row { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 1.5rem 1rem 2rem; }
  .contact-inner { padding: 1.5rem 1.25rem; }
  .contact-heading h3 { font-size: 1.15rem; }
  .admin-panel { padding: 5rem 1rem 3rem; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-filters { flex-direction: column; }
  .admin-search-box { min-width: 100%; }
  .admin-filter-group { width: 100%; }
  .admin-filter-group select { flex: 1; }
  .admin-theme-grid { grid-template-columns: 1fr; }
  .admin-detail-actions { flex-direction: column; }
  .price-row { flex-direction: column; align-items: stretch; gap: .5rem; }
  .price-theme-info { min-width: unset; }
  .price-input-wrap { justify-content: flex-start; }
  .price-display { text-align: left; margin-left: 0; }
}
