/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #d97706;
  --primary-dark: #b45309;
  --primary-light: #fef3c7;
  --secondary:  #1e293b;
  --accent:     #0ea5e9;
  --success:    #16a34a;
  --warning:    #f59e0b;
  --error:      #dc2626;
  --neutral-50: #f8fafc;
  --neutral-100:#f1f5f9;
  --neutral-200:#e2e8f0;
  --neutral-300:#cbd5e1;
  --neutral-400:#94a3b8;
  --neutral-500:#64748b;
  --neutral-600:#475569;
  --neutral-700:#334155;
  --neutral-800:#1e293b;
  --neutral-900:#0f172a;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.1);
  --shadow:     0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.15);
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--neutral-800); background: #fff; line-height: 1.6; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { line-height: 1.7; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--neutral-50); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
  border: none; transition: all .2s ease; white-space: nowrap;
}
.btn--primary {
  background: var(--primary); color: #fff;
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1.1rem; }
.btn:disabled { opacity: .6; cursor: not-allowed; pointer-events: none; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--neutral-700); font-size: .9rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--neutral-200); border-radius: var(--radius);
  font-size: .95rem; transition: border-color .2s, box-shadow .2s; background: #fff; color: var(--neutral-800);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(217,119,6,.15);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ===== ALERTS ===== */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 16px; }
.alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert--info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-100);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.header__logo {
  font-size: 1.3rem; font-weight: 800; color: var(--primary); letter-spacing: -.5px;
}
.header__logo span { color: var(--neutral-800); }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a {
  font-weight: 500; color: var(--neutral-600); transition: color .2s; font-size: .95rem;
}
.header__nav a:hover { color: var(--primary); }
.header__cta { display: flex; gap: 12px; align-items: center; }
.header__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--neutral-700); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 50%, #fff 100%);
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary-dark);
  padding: 6px 14px; border-radius: 99px; font-size: .85rem; font-weight: 600; margin-bottom: 20px;
}
.hero__badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.hero__title { margin-bottom: 20px; color: var(--neutral-900); }
.hero__title span { color: var(--primary); }
.hero__desc { color: var(--neutral-600); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 32px; }
.hero__stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero__stat span { font-size: .85rem; color: var(--neutral-500); }
.hero__visual { position: relative; }
.hero__card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 20px; transition: transform .3s;
}
.hero__card:hover { transform: translateY(-4px); }
.hero__cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero__card-icon { font-size: 2rem; margin-bottom: 12px; }
.hero__card h4 { font-size: .95rem; margin-bottom: 4px; color: var(--neutral-800); }
.hero__card p  { font-size: .82rem; color: var(--neutral-500); }

/* ===== FEATURES ===== */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--neutral-100);
  transition: transform .3s, box-shadow .3s;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 12px; color: var(--neutral-800); }
.feature-card p  { color: var(--neutral-500); margin-bottom: 16px; font-size: .95rem; }
.feature-list { list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--neutral-600); padding: 4px 0; }
.feature-list li::before { content: '✓'; color: var(--success); font-weight: 700; }
.section__header { text-align: center; max-width: 600px; margin: 0 auto; }
.section__header p { color: var(--neutral-500); margin-top: 12px; font-size: 1.05rem; }

/* ===== PRICING ===== */
.pricing__grid { display: flex; justify-content: center; gap: 32px; margin-top: 56px; flex-wrap: wrap; }
.pricing-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg); border: 2px solid var(--primary);
  max-width: 380px; width: 100%; position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.pricing-card--secondary {
  border-color: var(--neutral-200);
  box-shadow: var(--shadow-md);
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 20px;
  border-radius: 99px; font-size: .82rem; font-weight: 700; white-space: nowrap;
}
.pricing-card__price { display: flex; align-items: flex-end; gap: 6px; margin: 24px 0 8px; }
.pricing-card__price strong { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.pricing-card__price span  { color: var(--neutral-500); margin-bottom: 6px; }
.pricing-card__billing { color: var(--neutral-400); font-size: .85rem; margin-bottom: 24px; }
.pricing-card__features { list-style: none; margin-bottom: 32px; }
.pricing-card__features li {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  border-bottom: 1px solid var(--neutral-100); font-size: .92rem;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: 1rem; }
.pricing-note { text-align: center; margin-top: 24px; color: var(--neutral-500); font-size: .9rem; }

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--neutral-700) 100%);
  color: #fff; text-align: center;
}
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p   { color: var(--neutral-300); margin-bottom: 40px; font-size: 1.05rem; }
.cta__form {
  background: rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 40px; max-width: 540px; margin: 0 auto;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1);
}
.cta__form .form-label { color: var(--neutral-200); }
.cta__form .form-input {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff;
}
.cta__form .form-input::placeholder { color: var(--neutral-400); }
.cta__form .form-input:focus { border-color: var(--primary); background: rgba(255,255,255,.18); }

/* ===== FOOTER ===== */
.footer { background: var(--neutral-900); color: var(--neutral-300); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand .logo { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.footer__brand .logo span { color: #fff; }
.footer__brand p { font-size: .9rem; color: var(--neutral-400); line-height: 1.7; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: .95rem; }
.footer__col a  { display: block; color: var(--neutral-400); font-size: .9rem; padding: 4px 0; transition: color .2s; }
.footer__col a:hover { color: var(--primary); }
.footer__bottom { border-top: 1px solid var(--neutral-700); padding-top: 24px; text-align: center; color: var(--neutral-500); font-size: .85rem; }

/* ===== ADMIN PANEL ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--neutral-900); color: #fff;
  flex-shrink: 0; display: flex; flex-direction: column;
}
.admin-sidebar__header { padding: 24px 20px; border-bottom: 1px solid var(--neutral-700); }
.admin-sidebar__logo { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.admin-sidebar__logo span { color: #fff; }
.admin-sidebar__sub { font-size: .75rem; color: var(--neutral-500); margin-top: 2px; }
.admin-sidebar__nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.sidebar-section { margin-bottom: 24px; }
.sidebar-section--dashboard { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--neutral-700); }
.sidebar-section__title { padding: 8px 20px; font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--neutral-500); }
.sidebar-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px;
  color: var(--neutral-300); font-size: .88rem; font-weight: 500; cursor: pointer;
  border: none; background: none; width: 100%; text-align: left;
  transition: background .15s, color .15s; border-left: 3px solid transparent;
}
.sidebar-link:hover  { background: rgba(255,255,255,.05); color: #fff; }
.sidebar-link.active { background: rgba(217,119,6,.15); color: var(--primary); border-left-color: var(--primary); }
.sidebar-link .icon  { font-size: 1.1rem; width: 20px; text-align: center; }
.admin-sidebar__footer { padding: 16px 20px; border-top: 1px solid var(--neutral-700); }
.admin-sidebar__user { display: flex; align-items: center; gap: 12px; }
.admin-sidebar__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: #fff;
}
.admin-sidebar__user-info strong { display: block; font-size: .88rem; color: #fff; }
.admin-sidebar__user-info span   { font-size: .75rem; color: var(--neutral-500); }
/* Sidebar progress gauge */
.sidebar-progress {
  margin: 8px 16px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--neutral-700);
  border-radius: var(--radius);
  padding: 14px;
}
.sidebar-progress__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.sidebar-progress__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--neutral-400); }
.sidebar-progress__pct   { font-size: .85rem; font-weight: 700; color: var(--primary); transition: color .3s; }
.sidebar-progress__track {
  height: 6px; background: var(--neutral-700); border-radius: 99px; overflow: hidden; margin-bottom: 12px;
}
.sidebar-progress__fill {
  height: 100%; background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  border-radius: 99px; transition: width .5s cubic-bezier(.4,0,.2,1);
}
.sidebar-progress__steps { display: flex; flex-direction: column; gap: 5px; }
.progress-step {
  display: flex; align-items: center; gap: 7px;
  font-size: .73rem; color: var(--neutral-400);
}
.progress-step__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--neutral-600); transition: background .3s;
}
.progress-step.done .progress-step__dot { background: var(--primary); }
.progress-step.done { color: var(--neutral-300); }
.progress-step__name { flex: 1; }
.progress-step__val  { font-weight: 600; }

.admin-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.admin-topbar {
  background: #fff; border-bottom: 1px solid var(--neutral-200);
  padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.admin-topbar__title h2 { font-size: 1.1rem; color: var(--neutral-800); }
.admin-topbar__title p  { font-size: .8rem; color: var(--neutral-500); }
.admin-topbar__actions { display: flex; gap: 12px; }
.admin-content { flex: 1; overflow-y: auto; padding: 32px; background: var(--neutral-50); }
.admin-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}
.admin-card__header {
  padding: 20px 24px; border-bottom: 1px solid var(--neutral-100);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card__header h3 { font-size: 1rem; color: var(--neutral-800); }
.admin-card__body { padding: 24px; }
.admin-card__footer { padding: 16px 24px; border-top: 1px solid var(--neutral-100); display: flex; justify-content: flex-end; gap: 12px; }

/* ===== PHOTOS MANAGER ===== */
.photos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.photo-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; background: var(--neutral-100);
  box-shadow: var(--shadow-sm); border: 1px solid var(--neutral-200);
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-item__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: flex-end; gap: 6px; padding: 8px;
  opacity: 0; transition: opacity .2s;
}
.photo-item:hover .photo-item__overlay { opacity: 1; }
.photo-item__btn {
  flex: 1; padding: 6px; border: none; border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 600; cursor: pointer; transition: background .15s;
}
.photo-item__btn--move  { background: rgba(255,255,255,.85); color: var(--neutral-700); }
.photo-item__btn--move:hover { background: #fff; }
.photo-item__btn--delete { background: rgba(220,38,38,.85); color: #fff; }
.photo-item__btn--delete:hover { background: var(--error); }
.photo-item__order {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.6); color: #fff;
  width: 24px; height: 24px; border-radius: 50%; font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.upload-zone {
  border: 2px dashed var(--neutral-300); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; cursor: pointer; transition: all .2s;
  background: var(--neutral-50);
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--primary); background: var(--primary-light); }
.upload-zone p { color: var(--neutral-500); margin-top: 8px; font-size: .9rem; }
.upload-progress { background: var(--neutral-200); border-radius: 99px; height: 6px; margin: 12px 0; overflow: hidden; display: none; }
.upload-progress__bar { height: 100%; background: var(--primary); border-radius: 99px; transition: width .3s; }

/* ===== HOURS MANAGER ===== */
.hours-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--neutral-100);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; padding-top: 8px; color: var(--neutral-700); font-size: .9rem; }
.hours-services { display: flex; flex-direction: column; gap: 10px; }
.hours-service { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hours-service label { font-size: .82rem; color: var(--neutral-500); min-width: 60px; }
.hours-service .form-input { width: 110px; padding: 6px 10px; }
.toggle-switch { position: relative; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.toggle-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-track {
  width: 40px; height: 22px; background: var(--neutral-300); border-radius: 99px;
  transition: background .2s; position: relative;
}
.toggle-track::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; top: 3px; left: 3px;
  transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-switch input:checked + .toggle-track { background: var(--primary); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(18px); }
.toggle-label { font-size: .88rem; color: var(--neutral-600); font-weight: 500; }

/* ===== DASHBOARD WELCOME ===== */
.welcome-intro {
  background: var(--primary-light); border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 28px; color: var(--neutral-700); font-size: .97rem; line-height: 1.6;
}
.welcome-steps { display: flex; flex-direction: column; gap: 16px; }
.welcome-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius); border: 1px solid var(--neutral-100);
  background: var(--neutral-50); transition: box-shadow .2s;
}
.welcome-step:hover { box-shadow: var(--shadow); }
.welcome-step__icon {
  font-size: 1.5rem; width: 44px; height: 44px; flex-shrink: 0;
  background: #fff; border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.welcome-step__body h4 { font-size: .95rem; color: var(--neutral-800); margin-bottom: 4px; }
.welcome-step__body p  { font-size: .88rem; color: var(--neutral-500); line-height: 1.55; margin: 0; }
.welcome-step__note {
  margin-top: 6px !important; font-style: italic;
  color: var(--neutral-400) !important; font-size: .83rem !important;
}

/* ===== COMING SOON ===== */
.coming-soon {
  text-align: center; padding: 80px 40px;
  color: var(--neutral-400);
}
.coming-soon__icon { font-size: 3rem; margin-bottom: 16px; }
.coming-soon h3 { font-size: 1.2rem; color: var(--neutral-600); margin-bottom: 8px; }

/* ===== LOADING ===== */
.spinner {
  width: 32px; height: 32px; border: 3px solid var(--neutral-200);
  border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state { display: flex; align-items: center; justify-content: center; padding: 64px; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; }
  .mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--neutral-200);
    padding: 16px 24px; flex-direction: column; gap: 12px; z-index: 999;
    box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 8px 0; color: var(--neutral-700); font-weight: 500; border-bottom: 1px solid var(--neutral-100); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { padding: 110px 0 60px; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-layout { position: relative; }
  .admin-mobile-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 16px; height: 56px; background: var(--neutral-900);
    position: sticky; top: 0; z-index: 100;
  }
  .admin-mobile-logo { color: var(--primary); font-weight: 800; font-size: 1.1rem; }
  .admin-mobile-logo span { color: #fff; }
  .admin-mobile-menu-btn { background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
  .admin-sidebar.mobile-open { display: flex; position: fixed; inset: 0; z-index: 200; }
  .admin-content { padding: 20px 16px; }
  .admin-topbar { padding: 0 16px; }
  .hours-row { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

@media (min-width: 769px) {
  .admin-mobile-header { display: none; }
}
