:root {
  --bg: #FFFBF5;
  --bg-card: #FFFFFF;
  --primary: #E8A0BF;
  --primary-dark: #D4789B;
  --primary-light: #F5D5E5;
  --accent: #B07BAC;
  --text: #3D3D3D;
  --text-light: #888888;
  --text-white: #FFFFFF;
  --border: #F0E6DD;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-btn: 14px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.page-container { padding-top: 2rem; padding-bottom: 4rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }

/* HEADER */
.header { background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header__logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; color: var(--text); }
.logo-text { color: var(--primary-dark); }
.header__nav { display: flex; gap: 0.75rem; align-items: center; }
.header__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 640px) {
  .header__nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-card); flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .header__nav.open { display: flex; }
  .header__burger { display: flex; }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.65rem 1.5rem; border: 2px solid transparent; border-radius: var(--radius-btn); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.btn--primary { background: var(--primary); color: var(--text-white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--text-white); }
.btn--outline { background: transparent; color: var(--primary-dark); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary-light); }
.btn--ghost { background: transparent; color: var(--text-light); border-color: transparent; }
.btn--ghost:hover { color: var(--text); background: var(--border); }
.btn--success { background: #7BC67E; color: #fff; border-color: #7BC67E; }
.btn--success:hover { background: #5EB362; }
.btn--danger { background: #E87C7C; color: #fff; border-color: #E87C7C; }
.btn--danger:hover { background: #D45A5A; }
.btn--sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 0.85rem 2.25rem; font-size: 1.1rem; }
.btn--full { width: 100%; }

/* HERO */
.hero { padding: 4rem 0 3rem; background: linear-gradient(180deg, var(--primary-light) 0%, rgba(232,160,191,0.15) 70%, var(--bg) 100%); }

.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__content { flex: 1; }
.hero__title { font-size: 2.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.hero__subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; }
.hero__image { display: none; }
.hero__visual {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(232, 160, 191, 0.3);
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
@media (max-width: 768px) {
  .hero__inner { text-align: center; }
  .hero__title { font-size: 1.8rem; }
  .hero__image { flex: none; }
  .hero__visual { width: 140px; height: 140px; }
}

/* SECTION TITLES */
.section-title { text-align: center; font-size: 1.75rem; font-weight: 700; margin-bottom: 2.5rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); border-radius: 4px; margin: 0.75rem auto 0; }
.section-subtitle { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 1rem; }
.page-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 2rem; }

/* STEPS */
.steps { padding: 4rem 0; }
.steps__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.step-card { background: var(--bg-card); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); position: relative; transition: transform var(--transition); }
.step-card:hover { transform: translateY(-4px); }
.step-card__num { position: absolute; top: -12px; left: -12px; width: 32px; height: 32px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 480px) { .steps__grid { grid-template-columns: 1fr; } }

/* BOXES */
.boxes { padding: 4rem 0; background: var(--bg-card); }
.boxes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .boxes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .boxes__grid { grid-template-columns: 1fr; max-width: 320px; } }
.box-card { background: var(--bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.box-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.box-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--primary-light); display: flex; align-items: center; justify-content: center; }
.box-card__img img { width: 100%; height: 100%; object-fit: cover; }
.box-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.box-card__size-label {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 2px;
}
.box-card__body { padding: 1.25rem; }
.box-card__body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.box-card__size { display: inline-block; background: var(--primary-light); color: var(--primary-dark); padding: 0.2rem 0.6rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.box-card__desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.5; }
.box-card__price { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); }

/* FAQ */
.faq { padding: 4rem 0; }
.faq__list { max-width: 900px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { width: 100%; background: none; border: none; padding: 1.25rem 0; font-size: 1.05rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq__question::after { content: '+'; font-size: 1.5rem; color: var(--primary); }
.faq__item.open .faq__question::after { content: '−'; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__item.open .faq__answer { max-height: 300px; padding-bottom: 1.25rem; }
.faq__answer p { color: var(--text-light); line-height: 1.7; }

/* SUBSCRIBE */
.subscribe { padding: 4rem 0; }
.subscribe__card { background: linear-gradient(135deg, var(--primary-light), #FFF0F5); border-radius: var(--radius); padding: 3rem 2rem; text-align: center; max-width: 900px; margin: 0 auto; }
.subscribe__card h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.subscribe__card p { color: var(--text-light); margin-bottom: 1.5rem; }
.subscribe__form { display: flex; gap: 0.75rem; max-width: 400px; margin: 0 auto; }
.subscribe__form input { flex: 1; padding: 0.65rem 1rem; border: 2px solid var(--border); border-radius: var(--radius-btn); background: #fff; }
.subscribe__form input:focus { outline: none; border-color: var(--primary); }
.subscribe__msg { margin-top: 1rem; font-size: 0.9rem; }
@media (max-width: 480px) { .subscribe__form { flex-direction: column; } }

/* FOOTER */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; margin-top: auto; }
.footer__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.footer__logo { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); }
.footer__desc { color: var(--text-light); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__col h4 { font-size: 0.95rem; margin-bottom: 0.75rem; color: var(--primary-dark); }
.footer__col a, .footer__col span:not(.footer__logo) { display: block; color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.4rem; text-align: center; }
.footer__col a:hover { color: var(--primary-dark); }
.footer__socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.75rem; }
.footer__social-link { display: inline-flex !important; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: transparent; color: var(--text-light); transition: color 0.2s, transform 0.2s; margin-bottom: 0 !important; }
.footer__social-link:hover { background: transparent; color: var(--primary); transform: scale(1.15); }
.footer__order-tg { display: inline-flex !important; align-items: center; background: var(--primary); color: #fff !important; padding: 0.45rem 1.3rem; border-radius: 2rem; font-size: 0.85rem; font-weight: 600; width: fit-content; margin: 0.5rem auto 0; transition: background 0.2s; text-decoration: none; }
.footer__order-tg:hover { background: var(--primary-dark); color: #fff !important; }
.footer__bottom { border-top: 1px solid var(--border); margin-top: 2rem; padding-top: 1rem; }
.footer__bottom p { color: var(--text-light); font-size: 0.8rem; text-align: center; }
@media (max-width: 640px) { .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } }

/* FORMS */
.form__section { background: var(--bg-card); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.form__section-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--primary-light); }
.form__group { margin-bottom: 1rem; }
.form__group label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form__group input, .form__group select, .form__group textarea { width: 100%; padding: 0.7rem 1rem; border: 2px solid var(--border); border-radius: var(--radius-sm); background: #fff; transition: border-color var(--transition); font-size: 0.95rem; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { outline: none; border-color: var(--primary); }
.form__group textarea { resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) {  }
.form__check label { display: flex; align-items: flex-start; gap: 0.5rem; cursor: pointer; font-size: 0.9rem; }
.form__check input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary-dark); width: 18px; height: 18px; }
.form--inline { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.form--inline .form__group { margin-bottom: 0; }
.form--horizontal { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; }
.form--horizontal .form__group { flex: 1; min-width: 150px; margin-bottom: 0; }

/* ALERTS */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.alert--error { background: #FFF0F0; border: 1px solid #E87C7C; color: #C0392B; }
.alert--success { background: #F0FFF0; border: 1px solid #7BC67E; color: #27AE60; }
.alert h2 { margin-bottom: 0.5rem; }

/* AUTH */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.auth-card { background: var(--bg-card); border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.auth-card__title { text-align: center; font-size: 1.35rem; margin-bottom: 1.5rem; }

/* BADGES */
.badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.badge--lg { font-size: 0.85rem; padding: 0.35rem 1rem; }
.badge--new { background: #E3F2FD; color: #1565C0; }
.badge--confirmed { background: #FFF3E0; color: #E65100; }
.badge--assembling { background: #F3E5F5; color: #7B1FA2; }
.badge--assembled { background: #E8F5E9; color: #2E7D32; }
.badge--waiting_delivery_payment { background: #FFF8E1; color: #F57F17; }
.badge--shipped { background: #E0F7FA; color: #00838F; }
.badge--delivered { background: #E8F5E9; color: #1B5E20; }
.badge--role-admin { background: #FCE4EC; color: #C62828; }
.badge--role-worker { background: #E8EAF6; color: #283593; }

/* ORDER CARDS */
.orders-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.order-card { display: block; background: var(--bg-card); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); transition: transform var(--transition); color: var(--text); text-decoration: none; }
.order-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--text); }
.order-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.order-card__number { font-weight: 700; font-size: 1.1rem; }
.order-card__product { font-weight: 500; }
.order-card__date { font-size: 0.85rem; color: var(--text-light); }
.order-card__track { font-size: 0.85rem; color: var(--accent); margin-top: 0.25rem; }
.order-card__footer { display: flex; justify-content: flex-end; }
.order-card__amount { font-weight: 700; font-size: 1.1rem; color: var(--primary-dark); }

/* ORDER DETAIL */
.back-link { display: inline-block; margin-bottom: 1rem; font-weight: 500; }
.order-detail__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.order-detail__header h1 { font-size: 1.5rem; }
.order-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.order-detail__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .order-detail__grid, .order-detail__grid--3 { grid-template-columns: 1fr; } }
.detail-card { background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.detail-card h3 { font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-light); }
.detail-list { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1rem; }
.detail-list dt { font-weight: 500; font-size: 0.85rem; color: var(--text-light); }
.detail-list dd { font-size: 0.95rem; }

/* CHAT */
.chat-section { margin-bottom: 2rem; }
.chat { max-height: 400px; overflow-y: auto; padding: 1rem 0; }
.chat__empty { text-align: center; color: var(--text-light); padding: 2rem 0; }
.chat__msg { max-width: 75%; margin-bottom: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
.chat__msg--mine { margin-left: auto; background: var(--primary-light); border-bottom-right-radius: 4px; }
.chat__msg--theirs { background: #F5F5F5; border-bottom-left-radius: 4px; }
.chat__msg-header { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.35rem; }
.chat__msg p { font-size: 0.9rem; }
.chat__img { max-width: 250px; border-radius: 8px; margin-top: 0.5rem; }
.chat__form { border-top: 1px solid var(--border); padding-top: 1rem; }
.chat__form textarea { width: 100%; padding: 0.6rem; border: 2px solid var(--border); border-radius: var(--radius-sm); resize: none; }
.chat__form textarea:focus { outline: none; border-color: var(--primary); }
.chat__form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.chat__attach { cursor: pointer; font-size: 1.2rem; }

/* WORKER */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.work-card { background: var(--bg-card); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.work-card--mine { border-left: 4px solid var(--primary); }
.work-card__header { display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.work-card__number { font-weight: 700; }
.work-card__body { font-size: 0.9rem; margin-bottom: 1rem; }
.work-card__body p { margin-bottom: 0.3rem; }
.work-card__img { width: 100%; max-height: 200px; object-fit: cover; border-radius: 8px; margin: 0.5rem 0; }
.work-card__actions { display: flex; flex-direction: column; gap: 0.5rem; }

/* ADMIN TABLE */
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { background: var(--primary-light); padding: 0.75rem 1rem; text-align: left; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tbody tr:hover { background: #FEFAF5; }
.admin-table--sm { font-size: 0.8rem; }
.admin-table--sm th, .admin-table--sm td { padding: 0.5rem 0.75rem; }
.table-thumb { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.row--confirmed { background: #FFF8E1; }
.row--assembling { background: #F3E5F5; }
.row--assembled { background: #E8F5E9; }
.row--shipped { background: #E0F7FA; }
.row--delivered td { opacity: 0.6; }

/* ADMIN NAV */
.admin-header { margin-bottom: 2rem; }
.admin-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.admin-nav__link { padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 500; color: var(--text-light); background: var(--bg); border: 1px solid var(--border); transition: all var(--transition); }
.admin-nav__link:hover { background: var(--primary-light); color: var(--primary-dark); }
.admin-nav__link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.admin-toolbar { margin-bottom: 1.5rem; }
.admin-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.admin-filters select, .admin-filters input { padding: 0.5rem 0.75rem; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; }
.admin-filters input { min-width: 200px; }
.admin-actions { margin-bottom: 2rem; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 4rem 2rem; }

.empty-state h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ERROR PAGE */
.error-page { text-align: center; padding: 4rem 2rem; }
.error-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-page p { color: var(--text-light); margin-bottom: 2rem; }

/* CONTENT PAGES */
.content-page { max-width: 700px; }
.content-page h2 { font-size: 1.15rem; margin: 2rem 0 0.75rem; color: var(--primary-dark); }
.content-page p { line-height: 1.8; color: var(--text-light); margin-bottom: 1rem; }

/* ==== Profile page ==== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .profile-grid { grid-template-columns: 1fr; }
}

/* ==== Auth links ==== */
.auth-card__link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}
.auth-card__link a { color: var(--primary); text-decoration: none; }
.auth-card__link a:hover { text-decoration: underline; }

/* ==== Delivery calc result ==== */
.delivery-calc {
  background: #f0faf0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.delivery-calc strong { color: var(--primary-dark); }

/* ==== Disabled table rows ==== */
.row--disabled { opacity: 0.5; }

/* ==== Success alert ==== */
.alert--success {
  background: #d4edda;
  color: #155724;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

/* ==== Text muted ==== */
.text-muted { color: #999; font-size: 0.85rem; }

/* ==== Form row ==== */


/* ==== Large button ==== */
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.password-wrapper { position: relative; display: flex; align-items: center; }
.password-wrapper input { width: 100%; padding-right: 40px; box-sizing: border-box; }
.password-toggle { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: transparent; border: none; outline: none; box-shadow: none; cursor: pointer; color: #aaa; padding: 0; margin: 0; display: flex; align-items: center; -webkit-appearance: none; appearance: none; }
.password-toggle:hover { color: #555; }
.password-toggle:focus { outline: none; box-shadow: none; }

/* Order form sections */
.order-section { border: none; padding: 0; margin: 0 0 2rem 0; }
.order-section__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; padding-bottom: 0.65rem; border-bottom: 2px solid var(--primary-light); width: 100%; }
.form__row--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 640px) { .form__row--3 { grid-template-columns: 1fr; } }
.order-check { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.92rem; margin-bottom: 0.75rem; line-height: 1.4; }
.order-check input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; accent-color: var(--primary-dark); cursor: pointer; margin: 0; }
.order-check a { color: var(--primary-dark); text-decoration: underline; }
.text-sm { font-size: 0.85rem; }
.text-muted { color: #888; }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.page-header .page-title { margin-bottom: 0; }
