@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --cream:    #E8E2D5;
  --cream-dk: #DDD6C6;
  --blue:     #1B3FCE;
  --blue-dk:  #1230A0;
  --orange:   #E84B22;
  --orange-dk:#C43C18;
  --white:    #FAFAF7;
  --ink:      #111111;
  --ink-soft: rgba(17,17,17,0.50);
  --border:   rgba(17,17,17,0.10);
  --max-w:    1440px;
  --display:  'Dela Gothic One', sans-serif;
  --sans:     'DM Sans', sans-serif;
  --nav-h:    68px;
  --radius:   12px;
  --transition: 0.22s ease;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3 { font-family: var(--display); line-height: 1.05; letter-spacing: -0.01em; }
p { line-height: 1.72; }
.label {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.5rem; font-family: var(--sans);
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-sub {
  font-size: 15px; color: var(--ink-soft);
  max-width: 520px; line-height: 1.75; margin-top: 0.75rem;
}

/* ── SECTION WRAPPERS ────────────────────────────── */
.section-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 5rem 2.5rem;
}
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-blue  { background: var(--blue); }
.section-blue .section-title { color: #fff; }
.section-blue .label { color: rgba(255,255,255,0.5); letter-spacing: 2.5px; }
.section-blue .section-sub { color: rgba(255,255,255,0.6); }
/* keep old class name working */
.section-dark  { background: var(--blue); }
.section-dark .section-title { color: #fff; }
.section-dark .label { color: rgba(255,255,255,0.5); }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  border: none; transition: var(--transition); font-family: var(--sans);
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,75,34,.28); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,63,206,.28); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid rgba(17,17,17,.22); }
.btn-outline:hover { border-color: var(--ink); background: rgba(17,17,17,.04); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: rgba(17,17,17,.35); }

/* ── INPUTS ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: .3px; color: var(--ink); opacity: .7; }
.form-control {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; font-family: var(--sans); color: var(--ink);
  outline: none; transition: var(--transition); width: 100%;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,63,206,.10); }
.form-control::placeholder { color: rgba(17,17,17,.3); }

/* ── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h); background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 2.5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.nav-logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-logo-text { font-family: var(--display); font-size: 19px; color: var(--blue); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--ink); opacity: .55;
  transition: var(--transition); position: relative; padding-bottom: 3px;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-search {
  display: flex; align-items: center; gap: 7px; position: relative; z-index: 400;
  background: rgba(17,17,17,.06); border-radius: 100px; padding: 8px 16px;
  transition: var(--transition);
}
.nav-search:focus-within { background: rgba(17,17,17,.10); }
.nav-search input { border: none; background: transparent; font-size: 12px; color: var(--ink); outline: none; width: 110px; font-family: var(--sans); }
.nav-search input::placeholder { color: rgba(17,17,17,.38); }
.lang-switcher {
  display: flex; border: 1.5px solid var(--border);
  border-radius: 100px; overflow: hidden; font-size: 11px; font-weight: 600;
}
.lang-switcher button {
  padding: 6px 11px; background: transparent; border: none;
  color: var(--ink); opacity: .55; cursor: pointer; transition: var(--transition);
  font-family: var(--sans); font-weight: 600;
}
.lang-switcher button.active { background: var(--ink); color: var(--cream); opacity: 1; }
.lang-switcher button:hover:not(.active) { opacity: 1; }
.cart-count {
  background: var(--orange); color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: 10px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem; gap: 4px; z-index: 199;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-user-menu { position: relative; }
.user-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.10); padding: 6px;
  min-width: 160px; display: none; z-index: 300;
}
.user-dropdown.open { display: block; }
.user-dropdown a { display: block; padding: 9px 12px; font-size: 13px; color: var(--ink); border-radius: 8px; transition: var(--transition); }
.user-dropdown a:hover { background: var(--cream); }

/* ── CART PANEL ──────────────────────────────────── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 400; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px;
  background: var(--cream); z-index: 401;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; border-left: 1px solid var(--border);
}
.cart-panel.open { transform: translateX(0); }
.cart-head { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-head h2 { font-family: var(--display); font-size: 22px; color: var(--ink); }
.cart-close { background: none; border: none; font-size: 20px; color: var(--ink); opacity: .4; cursor: pointer; transition: var(--transition); padding: 4px; }
.cart-close:hover { opacity: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; color: var(--ink-soft); font-size: 14px; padding: 3rem 0; }
.cart-item { display: flex; gap: 14px; align-items: center; background: #fff; border-radius: var(--radius); padding: 12px; border: 1px solid var(--border); }
.cart-item-img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.cart-item-meta { font-size: 12px; color: var(--ink-soft); margin-top: 1px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--ink); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-controls button { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; width: 26px; height: 26px; font-size: 14px; cursor: pointer; transition: var(--transition); color: var(--ink); }
.cart-item-controls button:hover { background: var(--ink); color: var(--cream); }
.cart-item-qty { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); background: var(--white); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-total-label { font-size: 13px; color: var(--ink-soft); }
.cart-total-val { font-family: var(--display); font-size: 22px; color: var(--ink); }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.55); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 4rem 2.5rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); opacity: .75; }
.footer-brand-name { font-family: var(--display); font-size: 18px; color: #fff; }
.footer-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.32); max-width: 200px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 9px; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.anim-fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── AUTH PAGES ──────────────────────────────────── */
.auth-page { min-height: calc(100vh - var(--nav-h)); background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.auth-card { background: #fff; border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 420px; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,.06); }
.auth-logo { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 2rem; }
.auth-logo-img { width: 36px; height: 36px; object-fit: contain; }
.auth-logo-text { font-family: var(--display); font-size: 20px; color: var(--blue); }
.auth-title { font-family: var(--display); font-size: 26px; color: var(--ink); margin-bottom: .3rem; }
.auth-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 2rem; line-height: 1.5; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-submit { width: 100%; background: var(--blue); color: #fff; border: none; border-radius: 100px; padding: 14px; font-size: 15px; font-family: var(--sans); font-weight: 600; cursor: pointer; margin-top: 6px; transition: var(--transition); }
.auth-submit:hover { background: var(--blue-dk); }
.auth-divider { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 1.25rem; }
.auth-divider a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.auth-error { background: rgba(232,75,34,.08); border: 1px solid rgba(232,75,34,.25); color: var(--orange); border-radius: 8px; padding: 10px 14px; font-size: 13px; display: none; }

/* ── ACCOUNT PAGE ────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 240px 1fr; max-width: var(--max-w); margin: 0 auto; min-height: 600px; }
.account-sidebar { background: var(--white); border-right: 1px solid var(--border); padding: 2.5rem 1.5rem; }
.account-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 20px; color: #fff; margin-bottom: 1rem; }
.account-name { font-family: var(--display); font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.account-email { font-size: 12px; color: var(--ink-soft); margin-bottom: 2rem; }
.account-nav { list-style: none; }
.account-nav li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--ink); opacity: .6; transition: var(--transition); margin-bottom: 2px; }
.account-nav li a:hover { opacity: 1; background: var(--cream); }
.account-nav li a.active { opacity: 1; background: var(--blue); color: #fff; }
.account-main { padding: 2.5rem; background: var(--cream); }
.account-section { display: none; }
.account-section.active { display: block; }
.account-section-title { font-family: var(--display); font-size: 24px; color: var(--ink); margin-bottom: 1.5rem; }
.order-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; margin-bottom: 1rem; }
.order-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.order-id { font-size: 13px; font-weight: 600; color: var(--ink); }
.order-date { font-size: 12px; color: var(--ink-soft); }
.order-status { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.order-status.confirmed { background: rgba(27,63,206,.08); color: var(--blue); }
.order-status.delivered { background: rgba(50,180,100,.10); color: #1a7a40; }
.order-status.processing { background: rgba(232,75,34,.10); color: var(--orange); }
.order-items-list { font-size: 13px; color: var(--ink-soft); margin-bottom: .75rem; line-height: 1.7; }
.order-total { font-size: 15px; font-weight: 700; color: var(--ink); text-align: right; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.profile-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; }

/* ── CHECKOUT PAGE ───────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; max-width: var(--max-w); margin: 0 auto; padding: 3rem 2.5rem; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 1.5rem; }
.checkout-block { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.checkout-block-head { padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.checkout-block-num { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checkout-block-head h3 { font-family: var(--display); font-size: 15px; color: var(--ink); }
.checkout-block-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 14px; }
.delivery-options { display: flex; flex-direction: column; gap: 10px; }
.delivery-option { display: flex; align-items: flex-start; gap: 14px; padding: 1rem 1.1rem; border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer; transition: var(--transition); }
.delivery-option.selected { border-color: var(--blue); background: rgba(27,63,206,.04); }
.delivery-option input[type="radio"] { margin-top: 2px; accent-color: var(--blue); }
.delivery-option-info { flex: 1; }
.delivery-option-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.delivery-option-desc { font-size: 12px; color: var(--ink-soft); margin-top: 1px; }
.delivery-option-price { font-size: 14px; font-weight: 700; color: var(--ink); margin-left: auto; }
.checkout-summary { background: var(--white); border-radius: 16px; border: 1px solid var(--border); position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.summary-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.summary-head h3 { font-family: var(--display); font-size: 18px; color: var(--ink); }
.summary-items { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.summary-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.summary-item-emoji { font-size: 22px; width: 36px; text-align: center; }
.summary-item-name { flex: 1; color: var(--ink); }
.summary-item-qty { color: var(--ink-soft); font-size: 12px; }
.summary-item-price { font-weight: 600; color: var(--ink); }
.summary-empty { padding: 2rem 1.5rem; text-align: center; color: var(--ink-soft); font-size: 14px; }
.summary-totals { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-soft); }
.summary-row.total { font-size: 17px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.summary-foot { padding: 1rem 1.5rem; }
.checkout-submit { width: 100%; background: var(--orange); color: #fff; border: none; border-radius: 100px; padding: 16px; font-size: 15px; font-family: var(--sans); font-weight: 600; cursor: pointer; transition: var(--transition); }
.checkout-submit:hover { background: var(--orange-dk); }
.checkout-submit:disabled { opacity: .5; cursor: not-allowed; }
.summary-note { font-size: 11px; color: var(--ink-soft); text-align: center; margin-top: 10px; line-height: 1.5; }
.checkout-success { text-align: center; max-width: 480px; margin: 5rem auto; padding: 0 2rem; }
.checkout-success-icon { font-size: 56px; margin-bottom: 1rem; }
.checkout-success h2 { font-family: var(--display); font-size: 32px; color: var(--ink); margin-bottom: .75rem; }
.checkout-success p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 2rem; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-search input { width: 90px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav-links { gap: 1.5rem; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { border-right: none; border-bottom: 1px solid var(--border); }
  .account-nav { display: flex; flex-wrap: wrap; gap: 6px; }
  .account-nav li a { padding: 7px 12px; }
  .profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-search { display: none; }
  .nav-hamburger { display: flex; }
  .section-inner { padding: 3.5rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cart-panel { width: 100%; }
  .checkout-layout { padding: 1.5rem 1.25rem; }
  .account-main { padding: 1.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HEADER (shop, about, delivery, contact) ── */
.page-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header-deco {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  z-index: 0;
}
.deco-heart {
  width: 100px; height: 100px;
  background: var(--orange);
  clip-path: path('M50 90C50 90 0 58 0 30C0 13.4 13.4 0 30 0C39.2 0 47.2 4.2 50 10C52.8 4.2 60.8 0 70 0C86.6 0 100 13.4 100 30C100 58 50 90 50 90Z');
  opacity: .08;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
}
.page-header-inner .label { margin-bottom: .6rem; }
.page-header-inner h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--ink);
  max-width: 680px;
  margin-bottom: 1rem;
  line-height: 1.0;
}
.page-header-inner p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.72;
}

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 500;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── SELECT WRAP ─────────────────────────────────── */
.select-wrap { position: relative; }
.select-wrap select { width: 100%; appearance: none; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--ink-soft);
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-header-inner { padding: 3rem 1.25rem; }
  .page-header-deco { display: none; }
}
