/* ═══════════════════════════════════════════════════════════
   Pizza Câmpina — Stiluri globale
   Rustic Luxury · Playfair Display · Lato
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fire:    #C8102E;
  --fire-dk: #960C22;
  --ember:   #D4691A;
  --gold:    #C8A84B;
  --cream:   #FDF8EF;
  --cream-d: #F0E8D8;
  --char:    #1C1008;
  --char-m:  #3A2A1A;
  --char-s:  #5A4A3A;
  --white:   #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;

  --shadow-sm:  0 2px 8px  rgba(28,16,8,.08);
  --shadow-md:  0 4px 20px rgba(28,16,8,.12);
  --shadow-lg:  0 8px 40px rgba(28,16,8,.18);
  --radius:     4px;
  --transition: .25s ease;
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--char); -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* Scrollbar */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--cream); }
::-webkit-scrollbar-thumb  { background: var(--fire); border-radius: 3px; }

/* ── Typography ───────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-accent  { font-family: var(--font-accent); }

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

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled,
.navbar.solid {
  background: rgba(28,16,8,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; transition: transform .3s; }
.logo:hover .logo-icon { transform: rotate(15deg) scale(1.1); }
.logo-text { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; font-weight: 700; }
.logo-accent { font-family: var(--font-accent); color: var(--gold); font-size: 1.25rem; margin-left: 4px; }

.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-color: var(--gold); }

.nav-phone { font-size: .85rem; color: var(--gold); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; color: var(--white); padding: 6px; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(28,16,8,.97); padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .85rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(28,16,8,.85) 0%, rgba(150,12,34,.6) 100%),
              url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(28,16,8,.4) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 0 24px; }
.hero-eyebrow {
  font-family: var(--font-accent); color: var(--gold); font-size: 1.6rem;
  margin-bottom: 12px; display: block;
  animation: fadeUp .8s .1s both;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.4);
  animation: fadeUp .8s .2s both;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  color: rgba(255,255,255,.85); font-size: 1.15rem; line-height: 1.7;
  margin-bottom: 36px; animation: fadeUp .8s .3s both;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s .4s both; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--fire); color: var(--white); }
.btn-primary:hover { background: var(--fire-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--char); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--char); }
.btn-gold:hover { background: #b8983b; transform: translateY(-2px); }
.btn-sm { padding: 8px 16px; font-size: .75rem; }
.btn-danger { background: var(--fire); color: var(--white); }
.btn-danger:hover { background: var(--fire-dk); }
.btn-secondary { background: var(--cream-d); color: var(--char); border-color: var(--cream-d); }
.btn-secondary:hover { background: var(--cream); }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 96px 24px; }
.section-narrow { max-width: 860px; margin: 0 auto; }
.section-wide   { max-width: 1100px; margin: 0 auto; }
.section-center { text-align: center; }

.section-label {
  font-family: var(--font-accent); color: var(--fire); font-size: 1.4rem;
  display: block; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--char); margin-bottom: 16px;
}
.section-lead {
  color: var(--char-s); font-size: 1.05rem; line-height: 1.75;
  max-width: 600px; margin: 0 auto;
}

/* Ornament divider */
.ornament {
  display: flex; align-items: center; gap: 16px;
  margin: 24px auto; max-width: 280px;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; height: 1px; background: rgba(200,168,75,.4);
}
.ornament span { font-size: 1.2rem; }

/* ── Menu Cards ───────────────────────────────────────────── */
.category-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 48px;
}
.cat-tab {
  background: var(--white); border: 2px solid var(--cream-d);
  color: var(--char-s); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 50px;
  transition: all var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.cat-tab:hover { border-color: var(--fire); color: var(--fire); }
.cat-tab.active { background: var(--fire); border-color: var(--fire); color: var(--white); }
.cat-tab a { color: inherit; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .4s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.04); }
.menu-card-img-wrap { overflow: hidden; position: relative; }
.menu-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--fire); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 50px;
}
.menu-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.menu-card-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fire); margin-bottom: 6px;
}
.menu-card-name {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--char); margin-bottom: 8px;
}
.menu-card-desc { font-size: .9rem; color: var(--char-s); line-height: 1.6; flex: 1; }
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--cream-d);
}
.menu-card-price {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--fire); font-weight: 700;
}
.unavailable-badge {
  background: var(--char-m); color: rgba(255,255,255,.6);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 50px;
}

/* ── About ─────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 3px solid var(--gold); border-radius: var(--radius);
  background: var(--fire); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--white);
  flex-direction: column; line-height: 1.1;
}
.about-img-accent small { font-size: .75rem; font-weight: 400; font-family: var(--font-body); letter-spacing: .1em; }

.value-list { list-style: none; margin-top: 28px; }
.value-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--cream-d);
}
.value-list li:last-child { border-bottom: none; }
.value-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-d); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.value-title { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.value-desc  { font-size: .9rem; color: var(--char-s); line-height: 1.55; }

/* ── Parallax Band ────────────────────────────────────────── */
.parallax-band {
  background: linear-gradient(135deg, rgba(28,16,8,.9) 0%, rgba(150,12,34,.85) 100%),
              url('https://images.unsplash.com/photo-1590947132387-155cc02f3212?w=1400&q=80') center/cover fixed;
  color: var(--white); padding: 96px 24px; text-align: center;
}
.parallax-band h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.parallax-band p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Stats ─────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 3rem; color: var(--fire); font-weight: 900; line-height: 1; }
.stat-label  { font-size: .85rem; color: var(--char-s); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--char); color: rgba(255,255,255,.7); }
.footer-top { height: 3px; background: linear-gradient(90deg, var(--fire), var(--ember), var(--gold)); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 64px 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--fire); border-color: var(--fire); }

.footer h4 { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact .icon { color: var(--fire); margin-top: 2px; flex-shrink: 0; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.footer-links a::before { content: ''; display: block; width: 14px; height: 1px; background: rgba(200,16,46,.5); transition: width var(--transition), background var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { width: 20px; background: var(--fire); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.2); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ── Admin Layout ─────────────────────────────────────────── */
.admin-body { background: #F5F5F5; font-family: var(--font-body); min-height: 100vh; }

.admin-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 240px;
  background: var(--char); color: var(--white);
  display: flex; flex-direction: column; z-index: 50;
}
.admin-sidebar-logo {
  padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 10px;
}
.admin-sidebar-logo .logo-text { font-size: 1rem; }
.admin-sidebar-logo .logo-accent { font-size: 1.05rem; }

.admin-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.admin-nav-section { padding: 8px 20px; margin-top: 8px; }
.admin-nav-section-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; display: block; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: .9rem; color: rgba(255,255,255,.65);
  transition: all var(--transition); border-left: 3px solid transparent;
}
.admin-nav a:hover  { color: var(--white); background: rgba(255,255,255,.06); }
.admin-nav a.active { color: var(--gold); border-left-color: var(--fire); background: rgba(200,16,46,.12); }
.admin-nav a .nav-icon { width: 18px; text-align: center; }

.admin-sidebar-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.1); }
.admin-sidebar-footer a { font-size: .85rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.admin-sidebar-footer a:hover { color: var(--fire); }

.admin-main { margin-left: 240px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
  height: 60px; background: var(--white); border-bottom: 1px solid #E8E0D8;
  padding: 0 28px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 40; box-shadow: 0 1px 4px rgba(28,16,8,.05);
}
.admin-topbar h1 { font-family: var(--font-display); font-size: 1.3rem; color: var(--char); }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }

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

/* Admin Cards */
.admin-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(28,16,8,.08);
  overflow: hidden;
}
.admin-card-header {
  padding: 18px 24px; border-bottom: 1px solid #F0E8D8;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card-header h2 { font-family: var(--font-display); font-size: 1.1rem; color: var(--char); }
.admin-card-body { padding: 24px; }

/* Admin Table */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; padding: 10px 16px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--char-s); background: #FAF5EE; border-bottom: 2px solid var(--cream-d);
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #F5EFE8; font-size: .9rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FFFAF5; }
.admin-table-img { width: 52px; height: 40px; object-fit: cover; border-radius: 3px; }

/* Admin Form */
.form-group  { margin-bottom: 20px; }
.form-label  { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--char-s); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--cream-d); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; color: var(--char);
  background: var(--cream); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: .8rem; color: var(--char-s); margin-top: 5px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Flash messages */
.flash { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.flash-success { background: #F0FFF4; border: 1px solid #68D391; color: #276749; }
.flash-error   { background: #FFF5F5; border: 1px solid #FC8181; color: #9B2C2C; }

/* Stats mini */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-stat-card {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  box-shadow: 0 1px 4px rgba(28,16,8,.08); display: flex; align-items: center; gap: 14px;
}
.admin-stat-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.admin-stat-icon.red    { background: rgba(200,16,46,.1); }
.admin-stat-icon.gold   { background: rgba(200,168,75,.15); }
.admin-stat-icon.green  { background: rgba(72,187,120,.12); }
.admin-stat-val   { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--char); line-height: 1; }
.admin-stat-label { font-size: .75rem; color: var(--char-s); margin-top: 2px; }

/* Toggle switch */
.toggle-wrap { display: flex; align-items: center; gap: 8px; }
.toggle { position: relative; display: inline-block; width: 40px; height: 22px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; border-radius: 22px;
  background: #CBD5E0; transition: background var(--transition); cursor: pointer;
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); top: 3px; left: 3px;
  transition: transform var(--transition);
}
.toggle input:checked + .toggle-slider { background: #48BB78; }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); }

/* Admin login */
.admin-login-wrap {
  min-height: 100vh; background: var(--char);
  display: flex; align-items: center; justify-content: center;
}
.admin-login-card {
  background: #2A1A0C; border: 1px solid #3A2A1A; border-radius: 8px;
  padding: 48px; width: 100%; max-width: 400px;
}
.admin-login-card h1 { font-family: var(--font-display); color: var(--gold); font-size: 1.6rem; margin-bottom: 6px; }
.admin-login-card p  { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 32px; }
.admin-login-card .form-input {
  background: #1C1008; border-color: #3A2A1A; color: var(--white);
}
.admin-login-card .form-input:focus { border-color: var(--fire); }
.admin-login-card .form-label { color: rgba(255,255,255,.6); }

/* Color swatch for icon field */
.emoji-hint { font-size: 1.5rem; margin-top: 6px; display: block; }

/* Badge */
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.badge-green { background: #C6F6D5; color: #276749; }
.badge-gray  { background: #E2E8F0; color: #718096; }

/* Actions column */
.actions { display: flex; align-items: center; gap: 6px; }

/* Empty state */
.empty-state { text-align: center; padding: 64px 24px; color: var(--char-s); }
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { font-size: .95rem; }

/* ── WordPress-like Admin Theme ──────────────────────────── */
.admin-body {
  background: #f0f0f1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  /* Override brand colors for admin context */
  --fire:    #2271b1;
  --fire-dk: #135e96;
  --gold:    #d63638;
  --cream:   #f6f7f7;
  --cream-d: #dcdcde;
  --char-s:  #50575e;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Sidebar stays dark/branded */
.admin-body .admin-sidebar { background: #1d2327; }
.admin-body .admin-sidebar-logo { border-bottom-color: rgba(255,255,255,.07); }
.admin-body .admin-nav-section-label { color: rgba(255,255,255,.4); }
.admin-body .admin-nav a { color: rgba(240,246,252,.7); }
.admin-body .admin-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.admin-body .admin-nav a.active {
  color: #fff; background: #2271b1; border-left-color: #72aee6;
}

/* Topbar */
.admin-body .admin-topbar { border-bottom-color: #dcdcde; }
.admin-body .admin-topbar h1 { font-size: 1.1rem; font-weight: 600; }

/* Cards */
.admin-body .admin-card { box-shadow: 0 1px 3px rgba(0,0,0,.1); border: 1px solid #dcdcde; border-radius: 3px; }
.admin-body .admin-card-header { background: #f6f7f7; border-bottom-color: #dcdcde; padding: 12px 18px; }
.admin-body .admin-card-header h2 { font-size: .95rem; font-weight: 600; letter-spacing: 0; }
.admin-body .admin-card-body { padding: 18px; }

/* Forms */
.admin-body .form-input,
.admin-body .form-select,
.admin-body .form-textarea {
  background: #fff; border-color: #8c8f94; border-radius: 3px; font-size: .875rem;
}
.admin-body .form-input:focus,
.admin-body .form-select:focus,
.admin-body .form-textarea:focus {
  border-color: #2271b1; box-shadow: 0 0 0 1px #2271b1;
}
.admin-body .form-label { font-size: .8rem; color: #1d2327; letter-spacing: 0; text-transform: none; font-weight: 600; }

/* Buttons */
.admin-body .btn-primary { background: #2271b1; border: 1px solid #2271b1; border-radius: 3px; }
.admin-body .btn-primary:hover { background: #135e96; }
.admin-body .btn-secondary { background: #f6f7f7; border: 1px solid #8c8f94; color: #1d2327; border-radius: 3px; }
.admin-body .btn-secondary:hover { background: #dcdcde; }

/* Tables */
.admin-body .admin-table th { background: #f6f7f7; color: #50575e; border-bottom-color: #dcdcde; }
.admin-body .admin-table td { border-bottom-color: #f0f0f1; }
.admin-body .admin-table tr:hover td { background: #f6f7f7; }

/* Flash */
.admin-body .flash-success { background: #edfaef; border-color: #68de7c; color: #1e7e34; }
.admin-body .flash-error   { background: #fcf0f1; border-color: #f86368; color: #8a2424; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-240px); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}

@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .admin-topbar h1 { font-size: 1.1rem; }
}
