/* ============================================
   PREMIUM AUTO DEALER — Main Stylesheet
   Theme: Luxury Gold / Dark
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gold: #c8a45c;
  --gold-light: #d4af37;
  --gold-dark: #a8873a;
  --gold-subtle: rgba(200, 164, 92, 0.12);
  --cream: #f5f0e8;
  --white: #ffffff;
  --light-bg: #faf8f5;
  --text: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e8e3dc;
  --border-light: #f0ece6;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '\2605';
  font-size: 14px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* --- HEADER / NAV --- */
.topbar {
  background: var(--black-2);
  color: var(--cream);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 164, 92, 0.15);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-size: 13px;
  transition: var(--transition);
}

.topbar-links a:hover { color: var(--gold); }

.topbar-links .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.topbar-cta .btn {
  padding: 8px 20px;
  font-size: 13px;
}

.header-main {
  background: var(--black);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(200, 164, 92, 0.22);
}

.logo-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: -2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav { display: flex; align-items: center; gap: 8px; }

.nav a {
  padding: 8px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  background: rgba(200, 164, 92, 0.1);
}

/* --- HERO --- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,164,92,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200,164,92,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content .section-tag { color: var(--gold); }
.hero-content .section-tag::before { content: '\2605'; }

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* --- FEATURES SECTION --- */
.features {
  padding: 100px 0;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* --- INVENTORY GRID --- */
.inventory-section {
  padding: 100px 0;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.car-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.car-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.05);
}

.car-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.badge-featured {
  background: var(--gold);
  color: var(--black);
}

.badge-sold {
  background: var(--black);
  color: var(--white);
}

.car-card-body {
  padding: 20px;
}

.car-card-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.car-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.car-card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.car-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.car-card-spec {
  font-size: 13px;
  color: var(--text-light);
}

.car-card-spec strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.car-card-status {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
}

.car-card-status.sold { color: #ef4444; }

.car-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
}

.car-card-link:hover { gap: 10px; }

/* --- SHIPPING CTA --- */
.shipping-cta {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shipping-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,92,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.shipping-cta .container { position: relative; }

.shipping-cta .section-title { color: var(--white); }

.shipping-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.shipping-cta .btn { margin-top: 8px; }

.shipping-note {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* --- ABOUT / STATS --- */
.about-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .btn { margin-top: 12px; }

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* --- FOOTER --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { font-size: 20px; }

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours .day { color: rgba(255,255,255,0.5); }
.footer-hours .time { color: var(--white); }
.footer-hours .closed { color: #ef4444; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* --- INVENTORY PAGE --- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,92,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.page-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* Inventory Filters */
.inventory-toolbar {
  background: var(--light-bg);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 50;
}

.filters-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.filter-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.filter-group select,
.filter-group input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.filter-actions .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.inventory-count {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* --- SHIPPING PAGE --- */
.shipping-page { padding: 80px 0; }

.shipping-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.shipping-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}

.shipping-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.shipping-card .feature-icon { margin: 0 0 20px; }
.shipping-card h3 { margin-bottom: 8px; }
.shipping-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

.shipping-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.shipping-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background: #f0f0f0;
}

.shipping-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shipping-detail-text h3 {
  margin-bottom: 12px;
}

.shipping-detail-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* --- ABOUT PAGE --- */
.about-page { padding: 80px 0; }
.about-page-content { max-width: 800px; margin: 0 auto; }

.about-page-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 48px;
}

.about-page-content h2:first-child { margin-top: 0; }

.about-page-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-page-content ul {
  margin: 20px 0;
  padding: 0;
}

.about-page-content li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.about-page-content li::before {
  content: '\2605';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* --- CONTACT PAGE --- */
.contact-page { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form h2 { margin-bottom: 24px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.contact-info h2 { margin-bottom: 24px; }

.contact-info-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info-item a:hover { color: var(--gold); }

/* --- PAGE CONTENT (generic) --- */
.page-content {
  padding: 80px 0;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 16px;
}

.page-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black-2);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: var(--transition);
    z-index: 200;
    align-items: flex-start;
  }

  .nav.open { right: 0; }

  .nav a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image { order: -1; }

  .hero-image img { height: 280px; }

  .hero { padding: 40px 0 60px; }

  .features-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .shipping-options { grid-template-columns: 1fr; }
  .shipping-detail { grid-template-columns: 1fr; }

  .filters-form { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .filter-actions { flex-direction: row; }

  .topbar-links :nth-child(2) { display: none; }

  .inventory-toolbar {
    position: static;
  }
}

@media (max-width: 480px) {
  .topbar-links :nth-child(1) { display: none; }
  .site-title { font-size: 10px; letter-spacing: 2px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
