:root {
  --blue: #123964;
  --blue-2: #0b2444;
  --yellow: #ffc400;
  --yellow-2: #ffd84d;
  --red: #ef4444;
  --green: #13a060;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f7;
  --gray-200: #dce3ec;
  --gray-500: #667085;
  --gray-700: #344054;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #172033;
  background: var(--gray-50);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffc400;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; gap: 22px; }
.brand-logo { display: flex; align-items: center; gap: 12px; color: var(--blue); min-width: 220px; }
.brand-logo strong { display: block; line-height: 1; }
.brand-logo small { color: var(--gray-500); font-size: 12px; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue);
  color: var(--yellow);
  font-weight: 900;
}
.main-nav { display: flex; align-items: center; gap: 6px; flex: 1; }
.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 14px;
}
.main-nav a.active, .main-nav a:hover { background: #eef4ff; color: var(--blue); }
.main-nav .admin-link { background: #fff5cf; color: var(--blue); }
.auth-nav { display: flex; align-items: center; gap: 10px; }
.user-pill { padding: 9px 12px; background: var(--gray-100); border-radius: 999px; font-size: 13px; font-weight: 700; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 12px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--blue-2); box-shadow: 0 10px 20px rgba(255, 196, 0, 0.25); }
.btn-primary:hover { background: var(--yellow-2); }
.btn-outline { background: var(--white); color: var(--blue); border: 1px solid var(--gray-200); }
.btn-light { background: var(--white); color: var(--blue); }
.btn-danger { background: #fee2e2; color: #b42318; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 20px; }
.btn-sm { padding: 8px 10px; border-radius: 10px; font-size: 13px; }
.link-more { color: #2563eb; font-weight: 800; font-size: 14px; }

.flash-wrap { padding-top: 16px; }
.flash { padding: 13px 16px; border-radius: 14px; margin-bottom: 10px; font-weight: 700; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-warning { background: #fef3c7; color: #92400e; }
.flash-danger { background: #fee2e2; color: #991b1b; }
.flash-info { background: #dbeafe; color: #1e40af; }

.hero {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 196, 0, 0.45), transparent 24%),
    linear-gradient(135deg, #0b2444 0%, #185181 48%, #56b7e8 100%);
}
.hero:before {
  content: "";
  position: absolute;
  right: -160px; top: 55px;
  width: 520px; height: 220px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 120px;
  transform: rotate(-8deg);
}
.hero:after {
  content: "";
  position: absolute;
  right: 70px; bottom: 40px;
  width: 420px; height: 160px;
  background: url('/static/img/car-hero.svg') center/contain no-repeat;
  filter: drop-shadow(0 30px 25px rgba(0,0,0,.25));
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,36,68,0.15), rgba(11,36,68,0.45));
}
.hero-content { position: relative; z-index: 1; display: flex; align-items: center; min-height: 430px; }
.hero-copy { width: min(650px, 100%); color: #fff; padding-bottom: 30px; }
.eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.dark { background: #eaf1fb; color: var(--blue); }
.hero h1 { margin: 16px 0 14px; font-size: clamp(34px, 5vw, 58px); line-height: 1.03; letter-spacing: -0.04em; }
.hero p { font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.88); width: min(590px, 100%); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-badge {
  margin-left: auto;
  align-self: flex-end;
  margin-bottom: 68px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--blue);
}
.hero-badge strong { display: block; font-size: 42px; line-height: 1; }
.hero-badge span { font-weight: 800; color: var(--gray-500); font-size: 13px; }

.search-panel-section { margin-top: -74px; position: relative; z-index: 5; }
.search-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 28px;
}
.buy-area { padding-right: 28px; border-right: 1px solid var(--gray-200); }
.search-panel h2 { color: var(--blue); font-size: 29px; margin: 0 0 20px; }
.search-form-wide { display: flex; gap: 12px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: #111827;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: #4f8df5; box-shadow: 0 0 0 4px rgba(79, 141, 245, 0.12); }
.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0; }
.quick-card {
  min-height: 92px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd735, #ffc400);
  border-radius: 10px;
  padding: 12px;
  color: #111;
}
.quick-card span, .quick-card strong { display: block; position: relative; z-index: 1; }
.quick-card span { font-size: 13px; font-weight: 800; }
.quick-card strong { font-size: 16px; }
.quick-card img { position: absolute; width: 98px; right: -6px; bottom: -3px; }
.brand-row, .category-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; margin-top: 14px; }
.brand-item, .category-item { display: grid; place-items: center; gap: 7px; color: var(--gray-700); font-weight: 700; }
.brand-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid #111;
  font-weight: 900;
}
.mini-car { width: 44px; height: 18px; border-radius: 12px 16px 5px 5px; background: #dbe4ef; position: relative; }
.mini-car:before, .mini-car:after { content: ""; position: absolute; bottom: -4px; width: 9px; height: 9px; border-radius: 50%; background: #202938; }
.mini-car:before { left: 7px; }
.mini-car:after { right: 7px; }
.sell-area { padding: 0 0 0 0; }
.muted { color: var(--gray-500); line-height: 1.6; }
.sell-box { background: var(--gray-50); border-radius: 16px; padding: 18px; margin: 18px 0; border: 1px solid var(--gray-200); }
.sell-box strong, .sell-box span { display: block; }
.sell-box strong { color: var(--blue); margin-bottom: 7px; }
.sell-box span { color: var(--gray-500); line-height: 1.5; margin-bottom: 16px; }
.benefit-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.benefit-list div { background: #eef4ff; padding: 12px; border-radius: 13px; text-align: center; }
.benefit-list strong, .benefit-list span { display: block; }
.benefit-list strong { color: var(--blue); font-size: 14px; }
.benefit-list span { color: var(--gray-500); font-size: 12px; margin-top: 4px; }

.section-space { padding: 70px 0; }
.section-space.compact { padding-top: 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.section-head h2, .result-head h2 { margin: 10px 0 0; color: #111827; font-size: 32px; letter-spacing: -0.03em; }
.car-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.car-grid.three { grid-template-columns: repeat(3, 1fr); }
.car-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 12px 30px rgba(15,23,42,.07); }
.car-img-wrap { position: relative; background: linear-gradient(135deg, #eef4ff, #fff9d7); min-height: 174px; display: grid; place-items: center; }
.car-img-wrap img { width: 88%; height: 150px; object-fit: contain; }
.status-badge { position: absolute; top: 12px; left: 12px; padding: 7px 10px; border-radius: 999px; font-weight: 900; font-size: 12px; background: #eef4ff; color: var(--blue); }
.status-tersedia { background: #dcfce7; color: #166534; }
.status-dipesan { background: #fef3c7; color: #92400e; }
.status-terjual { background: #fee2e2; color: #991b1b; }
.car-card-body { padding: 16px; }
.car-title-row { display: flex; justify-content: space-between; gap: 10px; }
.car-title-row h3 { margin: 0; color: var(--blue); font-size: 18px; }
.car-title-row span { background: var(--gray-100); border-radius: 999px; padding: 4px 9px; font-size: 12px; font-weight: 900; height: fit-content; }
.car-meta { color: var(--gray-500); font-size: 13px; margin: 10px 0 14px; }
.price-row { display: grid; gap: 3px; margin-bottom: 15px; }
.price-row strong { color: #111827; font-size: 20px; }
.price-row small { color: var(--gray-500); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 30px rgba(15,23,42,.06); }
.info-icon { font-size: 34px; }
.info-card h3 { margin: 15px 0 9px; color: var(--blue); }
.info-card p { color: var(--gray-500); line-height: 1.6; margin: 0; }



/* Section cara jual, beli, dan tukar tambah */
.process-section {
  margin-top: 66px;
  background: #123964;
}

.process-heading-wrap {
  background: #123964;
  padding: 58px 0 0;
}

.process-head {
  text-align: center;
}

.process-line {
  display: block;
  width: 38px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--yellow);
}

.process-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.process-head p {
  width: min(720px, 100%);
  margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.process-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  padding: 15px 22px 18px;
  font-weight: 900;
  cursor: pointer;
  border-radius: 14px 14px 0 0;
}

.process-tab:hover,
.process-tab.active {
  color: #ffffff;
}

.process-tab.active:after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--yellow);
}

.process-body-wrap {
  background: #f0f3f7;
  padding: 54px 0 66px;
}

.process-panel {
  display: none;
}

.process-panel.active {
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.process-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  border-radius: 0 0 0 32px;
  background: #eaf1f8;
}

.process-number {
  position: absolute;
  top: 10px;
  right: 22px;
  z-index: 1;
  color: #9bb1c4;
  font-size: 25px;
  font-weight: 900;
}

.process-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: #f1f3f6;
  color: var(--blue);
  font-size: 38px;
}

.process-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 22px;
  line-height: 1.24;
}

.process-card p {
  margin: 0;
  color: #82909f;
  line-height: 1.7;
}

.process-link {
  display: inline-flex;
  margin-top: 12px;
  color: #2367c8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .process-section {
    margin-top: 44px;
  }

  .process-heading-wrap {
    padding-top: 42px;
  }

  .process-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .process-tab {
    flex: 0 0 auto;
    padding-inline: 16px;
  }

  .process-body-wrap {
    padding: 34px 0 44px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
    padding: 26px;
  }

  .process-icon {
    margin-bottom: 28px;
  }
}

.page-hero.small { background: linear-gradient(135deg, var(--blue-2), #195d91); color: #fff; padding: 62px 0; }
.page-hero h1 { margin: 15px 0 8px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.04em; }
.page-hero p { color: rgba(255,255,255,.84); width: min(700px, 100%); line-height: 1.7; }
.filter-card {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr auto auto;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  margin-bottom: 28px;
}
.result-head { margin-bottom: 20px; }
.empty-state { background: #fff; border: 1px dashed var(--gray-200); border-radius: var(--radius); text-align: center; padding: 52px 22px; }
.empty-state h3 { color: var(--blue); font-size: 28px; margin: 0 0 8px; }

.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.detail-main { display: grid; gap: 18px; }
.detail-image { position: relative; background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-200); box-shadow: 0 12px 30px rgba(15,23,42,.07); }
.detail-image img { width: 100%; height: 360px; object-fit: contain; }
.detail-card, .booking-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 30px rgba(15,23,42,.07); }
.detail-card h1 { color: var(--blue); margin: 12px 0; font-size: 38px; letter-spacing: -0.03em; }
.detail-card p { color: var(--gray-500); line-height: 1.7; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.spec-grid div { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px; padding: 14px; }
.spec-grid small, .spec-grid strong { display: block; }
.spec-grid small { color: var(--gray-500); margin-bottom: 4px; }
.spec-grid strong { color: var(--blue); }
.booking-card { position: sticky; top: 96px; }
.booking-card h2 { margin: 0; color: var(--blue); font-size: 32px; }
.stack-form { display: grid; gap: 14px; }
.stack-form label { display: grid; gap: 7px; font-weight: 800; color: var(--gray-700); }
.note-box, .demo-box { margin-top: 16px; background: #eef4ff; border-radius: 14px; padding: 14px; display: grid; gap: 5px; color: var(--blue); }
.note-box span, .demo-box span { color: var(--gray-500); font-size: 13px; line-height: 1.5; }

.auth-section { min-height: calc(100vh - 74px); display: grid; place-items: center; padding: 60px 16px; background: radial-gradient(circle at top left, #fff0b8, transparent 33%), var(--gray-50); }
.auth-card { width: min(460px, 100%); background: #fff; border: 1px solid var(--gray-200); border-radius: 22px; padding: 28px; box-shadow: var(--shadow); }
.auth-card h1 { color: var(--blue); font-size: 34px; margin: 14px 0 8px; letter-spacing: -0.03em; }
.auth-bottom { text-align: center; color: var(--gray-500); }
.auth-bottom a { color: var(--blue); font-weight: 900; }
.text-center { text-align: center; }
.booking-list { display: grid; gap: 14px; }
.booking-item { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; }
.booking-item img { height: 90px; object-fit: contain; background: var(--gray-50); border-radius: 14px; }
.booking-item h3 { color: var(--blue); margin: 0 0 5px; }
.booking-item p { margin: 0 0 6px; color: #111827; font-weight: 800; }
.booking-item small { color: var(--gray-500); }
.status-pill { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 7px 10px; background: #eef4ff; color: var(--blue); font-size: 12px; font-weight: 900; }

.admin-shell { display: grid; grid-template-columns: 270px 1fr; min-height: calc(100vh - 74px); }
.admin-sidebar { background: var(--blue-2); color: #fff; padding: 26px 18px; position: sticky; top: 74px; height: calc(100vh - 74px); }
.admin-sidebar h2 { margin: 0; }
.admin-sidebar p { color: rgba(255,255,255,.65); margin: 6px 0 24px; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar a { padding: 12px 14px; border-radius: 12px; color: rgba(255,255,255,.82); font-weight: 800; }
.admin-sidebar a.active, .admin-sidebar a:hover { background: var(--yellow); color: var(--blue-2); }
.admin-content { padding: 30px; overflow: hidden; }
.admin-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.admin-head h1 { margin: 12px 0 4px; color: #111827; font-size: 34px; letter-spacing: -0.03em; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.stat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; box-shadow: 0 10px 28px rgba(15,23,42,.06); }
.stat-card.wide { grid-column: span 2; }
.stat-card span, .stat-card strong { display: block; }
.stat-card span { color: var(--gray-500); font-weight: 800; font-size: 13px; }
.stat-card strong { color: var(--blue); margin-top: 8px; font-size: 32px; letter-spacing: -0.03em; }
.admin-grid-2 { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.panel { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; box-shadow: 0 10px 28px rgba(15,23,42,.06); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.panel-head h2 { margin: 0; color: var(--blue); }
.table-responsive { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th, .admin-table td { padding: 13px 12px; border-bottom: 1px solid var(--gray-200); text-align: left; vertical-align: middle; }
.admin-table th { color: var(--gray-500); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; background: var(--gray-50); }
.admin-table td { color: var(--gray-700); }
.table-car { display: flex; align-items: center; gap: 10px; font-weight: 900; color: var(--blue) !important; }
.table-car img { width: 70px; height: 44px; object-fit: contain; background: var(--gray-50); border-radius: 10px; }
.actions { display: flex; gap: 8px; align-items: center; }
.actions form { margin: 0; }
.inline-form { display: flex; gap: 8px; align-items: center; }
.inline-form select { min-width: 170px; padding: 9px; }
.admin-filter { grid-template-columns: 1fr 220px auto auto; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-grid label { display: grid; gap: 7px; color: var(--gray-700); font-weight: 800; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid small { color: var(--gray-500); }
.form-actions { display: flex; gap: 10px; }

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 196, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #06192f 0%, #0b2444 46%, #102f56 100%);
  color: #fff;
  margin-top: 70px;
  padding: 0 0 24px;
}
.footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: .35;
}
.footer .container,
.footer-cta { position: relative; z-index: 1; }
.footer-cta { padding: 0 0 34px; }
.footer-cta-inner {
  transform: translateY(-34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, var(--yellow), #ffe477);
  color: var(--blue-2);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}
.footer-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-cta h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.footer-btn-wa { background: #0f9f5f; color: #fff; box-shadow: 0 12px 24px rgba(15, 159, 95, 0.24); }
.footer-btn-map { background: #fff; color: var(--blue); border: 1px solid rgba(11,36,68,.12); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1.1fr;
  gap: 28px;
  padding-bottom: 30px;
}
.footer h3,
.footer h4 { margin: 0 0 14px; }
.footer h4 { font-size: 16px; color: #fff; }
.footer p { color: rgba(255,255,255,.72); line-height: 1.7; margin: 0; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--blue-2);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.22);
}
.footer-logo strong,
.footer-logo small { display: block; }
.footer-logo strong { font-size: 18px; line-height: 1.1; }
.footer-logo small { color: rgba(255,255,255,.64); margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transition: .2s ease;
}
.footer-social a:hover,
.footer-links a:hover,
.contact-item:hover { transform: translateY(-2px); }
.footer-social a:hover { background: var(--yellow); color: var(--blue-2); }
.footer-links {
  display: grid;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.footer-links a {
  display: inline-flex;
  color: rgba(255,255,255,.78);
  transition: .2s ease;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: grid; align-content: start; gap: 10px; }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: .2s ease;
}
.contact-item > span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 196, 0, .18);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}
.contact-item strong,
.contact-item small { display: block; }
.contact-item strong { margin-bottom: 4px; }
.contact-item small { color: rgba(255,255,255,.66); line-height: 1.4; }
.footer-map-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
  align-items: stretch;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.footer-map-info {
  display: grid;
  align-content: center;
  gap: 8px;
}
.footer-map-info h4 { margin: 0; font-size: 20px; }
.footer-map {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.64);
  font-size: 13px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0f9f5f;
  color: #fff;
  padding: 12px 15px 12px 12px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(15, 159, 95, .35);
  font-weight: 900;
}
.whatsapp-float span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  font-size: 12px;
}

@media (max-width: 1024px) {
  .search-panel, .detail-layout, .admin-grid-2 { grid-template-columns: 1fr; }
  .buy-area { border-right: 0; padding-right: 0; }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-card { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-wrap { flex-wrap: wrap; padding: 12px 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav, .auth-nav { display: none; width: 100%; }
  .main-nav.open, .auth-nav.open { display: flex; flex-wrap: wrap; }
  .hero:after, .hero-badge { display: none; }
  .search-form-wide { flex-direction: column; }
  .quick-cards, .brand-row, .category-row, .info-grid, .car-grid, .car-grid.three, .footer-grid, .spec-grid, .form-grid, .stat-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { transform: translateY(-24px); flex-direction: column; align-items: flex-start; padding: 22px; }
  .footer-cta-actions { justify-content: flex-start; width: 100%; }
  .footer-btn { width: 100%; }
  .footer-map-wrap { grid-template-columns: 1fr; padding: 16px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; }
  .whatsapp-float strong { display: none; }
  .filter-card, .admin-filter { grid-template-columns: 1fr; }
  .booking-item { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .admin-content { padding: 20px 16px; }
  .admin-head { flex-direction: column; }
}

/* Upload foto mobil */
.image-form-block {
  display: grid;
  gap: 14px;
  background: linear-gradient(135deg, #f8fbff, #fffdf2);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 16px;
}
.image-preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 14px;
}
.image-preview-card img {
  width: 180px;
  height: 112px;
  object-fit: contain;
  background: var(--gray-50);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
}
.image-preview-card strong {
  color: var(--blue);
  font-size: 18px;
}
.nested-grid {
  grid-template-columns: 1fr 1fr;
}
.form-grid input[type="file"] {
  padding: 12px;
  border: 1px dashed #b8c2d6;
  background: #fff;
}

@media (max-width: 760px) {
  .image-preview-card { align-items: flex-start; flex-direction: column; }
  .image-preview-card img { width: 100%; height: 180px; }
  .nested-grid { grid-template-columns: 1fr; }
}

/* Pembaruan tampilan dan alur admin-only */
body {
  line-height: 1.5;
  background: #f4f7fb;
}

.site-header {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.nav-wrap {
  min-height: 78px;
  justify-content: space-between;
}
.brand-logo {
  min-width: 245px;
}
.main-nav {
  justify-content: center;
}
.main-nav a,
.auth-nav .btn,
.user-pill {
  font-size: 15px;
}
.auth-nav .btn-outline {
  border-radius: 14px;
  padding-inline: 20px;
  background: #ffffff;
}

.hero {
  min-height: 500px;
  background:
    radial-gradient(circle at 77% 22%, rgba(255, 196, 0, 0.42), transparent 22%),
    linear-gradient(135deg, #082142 0%, #0f4775 48%, #56b7e8 100%);
}
.hero-content {
  min-height: 500px;
}
.hero-copy {
  padding-bottom: 64px;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 64px);
}
.hero p {
  max-width: 620px;
}
.hero:after {
  right: 80px;
  bottom: 54px;
  width: 455px;
  height: 172px;
}
.hero-badge {
  margin-bottom: 86px;
}

.search-panel-section {
  margin-top: -96px;
}
.search-panel {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(220, 227, 236, 0.95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
.search-panel h2 {
  font-size: 30px;
  margin-bottom: 18px;
}
.search-form-wide input {
  min-height: 52px;
}
.quick-cards {
  gap: 12px;
  margin: 18px 0 20px;
}
.quick-card {
  min-height: 106px;
  border-radius: 16px;
  box-shadow: inset 0 -20px 28px rgba(217, 139, 0, 0.16);
}
.quick-card strong {
  font-size: 17px;
  line-height: 1.1;
}
.brand-row,
.category-row {
  row-gap: 16px;
}
.brand-item,
.category-item {
  padding: 8px 4px;
  border-radius: 14px;
}
.brand-item:hover,
.category-item:hover {
  background: #f3f7ff;
}
.sell-area {
  display: grid;
  align-content: start;
}
.sell-box {
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbff, #fff8d9);
}
.admin-only-box {
  border-color: rgba(255, 196, 0, 0.36);
}
.benefit-list {
  gap: 10px;
}
.benefit-list div {
  border: 1px solid #dde8f6;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 390px;
}
.detail-card,
.booking-card,
.detail-image,
.panel,
.info-card,
.car-card {
  border-color: rgba(220, 227, 236, 0.95);
}
.booking-card {
  border-top: 5px solid var(--yellow);
}
.booking-card h2 {
  font-size: 34px;
}
.stack-form label {
  font-size: 14px;
}
.stack-form input,
.stack-form select,
.stack-form textarea {
  background: #fbfdff;
}
button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.auth-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 196, 0, 0.30), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(18, 57, 100, 0.13), transparent 28%),
    #f4f7fb;
}
.auth-card {
  width: min(480px, 100%);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px;
}
.auth-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--yellow), #ffe477, var(--blue));
}
.auth-card h1 {
  font-size: 36px;
  line-height: 1.1;
}
.demo-box {
  background: #f3f7ff;
  border: 1px solid #dfe8f5;
}

.admin-shell {
  background: #f4f7fb;
}
.admin-sidebar {
  background: linear-gradient(180deg, #071d39, #0b2444);
}
.stat-card,
.panel {
  border-radius: 22px;
}
.admin-table th:first-child,
.admin-table td:first-child {
  padding-left: 16px;
}
.admin-table th:last-child,
.admin-table td:last-child {
  padding-right: 16px;
}

.footer {
  margin-top: 56px;
  padding: 34px 0 24px;
}
.footer-cta {
  padding: 0 0 30px;
}
.footer-cta-inner {
  transform: none;
  border-radius: 26px;
  padding: 28px 30px;
}
.footer-grid {
  gap: 34px;
  padding-top: 6px;
}
.footer-map-wrap {
  grid-template-columns: 0.7fr 1.3fr;
  margin-top: 4px;
}
.footer-map {
  min-height: 205px;
}
.whatsapp-float {
  right: 24px;
  bottom: 24px;
}

@media (max-width: 1024px) {
  .brand-logo { min-width: 205px; }
  .main-nav { justify-content: flex-start; }
  .hero:after { opacity: .45; right: -20px; }
  .search-panel { grid-template-columns: 1fr; }
  .buy-area { border-right: 0; padding-right: 0; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-map-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .nav-wrap { gap: 12px; }
  .brand-logo { min-width: 0; }
  .brand-logo strong { font-size: 15px; }
  .hero { min-height: 430px; }
  .hero-content { min-height: 430px; }
  .hero-copy { padding-bottom: 42px; }
  .hero h1 { font-size: 40px; }
  .search-panel-section { margin-top: -54px; }
  .search-panel { padding: 20px; border-radius: 22px; }
  .quick-cards { grid-template-columns: 1fr 1fr; }
  .brand-row, .category-row { grid-template-columns: repeat(4, 1fr); }
  .footer { padding-top: 24px; }
  .footer-cta-inner { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .auth-card { padding: 28px 22px; }
}

/* Penyesuaian beranda setelah panel Kelola Showroom dihapus */
.catalog-search-panel {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1080px;
  margin-inline: auto;
  padding: 34px;
}

.catalog-search-panel .buy-area {
  padding-right: 0;
  border-right: 0;
}

.search-panel-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.search-panel-top h2 {
  margin: 12px 0 6px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.search-panel-top .muted {
  margin: 0;
  max-width: 680px;
}

.catalog-search-panel .search-form-wide {
  background: #f8fbff;
  border: 1px solid #dce3ec;
  border-radius: 18px;
  padding: 10px;
  gap: 10px;
}

.catalog-search-panel .search-form-wide input {
  border: 0;
  background: transparent;
  min-height: 48px;
  box-shadow: none;
}

.catalog-search-panel .search-form-wide input:focus {
  box-shadow: none;
}

.catalog-search-panel .quick-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.catalog-search-panel .quick-card {
  min-height: 118px;
  padding: 16px;
}

.catalog-search-panel .brand-row,
.catalog-search-panel .category-row {
  padding-top: 6px;
  border-top: 1px solid #edf1f7;
}

@media (max-width: 760px) {
  .catalog-search-panel {
    padding: 20px;
  }

  .search-panel-top {
    display: block;
  }

  .catalog-search-panel .search-form-wide {
    display: grid;
  }

  .catalog-search-panel .quick-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   Responsive hardening untuk tampilan handphone
   Perubahan ini ditempatkan paling bawah agar menimpa style lama.
   ========================================================= */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
iframe,
video {
  max-width: 100%;
}

.table-responsive,
.process-tabs {
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  .nav-wrap {
    gap: 14px;
  }

  .main-nav a {
    padding-inline: 11px;
  }

  .search-panel,
  .catalog-search-panel,
  .detail-layout,
  .admin-grid-2 {
    grid-template-columns: 1fr !important;
  }

  .detail-layout {
    gap: 18px;
  }

  .booking-card {
    position: static;
  }

  .process-grid,
  .info-grid,
  .car-grid,
  .car-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-map-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 16px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1180px) !important;
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 64px;
    padding: 10px 0;
    align-items: center;
  }

  .brand-logo {
    flex: 1 1 auto;
    min-width: 0 !important;
    gap: 10px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    flex: 0 0 auto;
  }

  .brand-logo span:last-child {
    min-width: 0;
  }

  .brand-logo strong {
    max-width: 185px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px !important;
  }

  .brand-logo small {
    font-size: 11px;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: 0 !important;
    border-radius: 12px;
    background: #ffffff;
    color: var(--blue);
    border: 1px solid rgba(18, 57, 100, 0.16);
    line-height: 1;
    font-weight: 900;
  }

  .nav-toggle.open {
    background: var(--blue);
    color: var(--yellow);
  }

  .main-nav,
  .auth-nav {
    display: none !important;
    width: 100%;
    flex: 0 0 100%;
  }

  .main-nav.open,
  .auth-nav.open {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .main-nav.open {
    padding-top: 8px;
  }

  .auth-nav.open {
    padding-bottom: 4px;
  }

  .main-nav a,
  .auth-nav a,
  .auth-nav .btn,
  .user-pill {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
  }

  .user-pill {
    display: flex;
    align-items: center;
  }

  .flash-wrap {
    padding-top: 12px;
  }

  .hero,
  .hero-content {
    min-height: auto !important;
  }

  .hero {
    padding: 46px 0 98px;
  }

  .hero:before,
  .hero:after,
  .hero-badge {
    display: none !important;
  }

  .hero-copy {
    padding: 0 !important;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 40px) !important;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero p,
  .page-hero p,
  .muted {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .search-panel-section {
    margin-top: -62px !important;
  }

  .search-panel,
  .catalog-search-panel {
    padding: 18px !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  }

  .search-panel h2,
  .search-panel-top h2 {
    font-size: clamp(24px, 7vw, 31px) !important;
    line-height: 1.15;
  }

  .search-form-wide,
  .catalog-search-panel .search-form-wide,
  .filter-card,
  .admin-filter {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .search-form-wide .btn,
  .filter-card .btn,
  .admin-filter .btn {
    width: 100%;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .quick-cards,
  .catalog-search-panel .quick-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .quick-card,
  .catalog-search-panel .quick-card {
    min-height: 104px;
    padding: 13px;
  }

  .quick-card img {
    width: 88px;
  }

  .brand-row,
  .category-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .brand-item,
  .category-item {
    font-size: 12px;
    padding: 8px 2px;
  }

  .section-space {
    padding: 42px 0 !important;
  }

  .section-head,
  .result-head,
  .panel-head,
  .search-panel-top,
  .admin-head {
    display: grid !important;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .section-head h2,
  .result-head h2,
  .admin-head h1,
  .panel-head h2 {
    font-size: clamp(24px, 7vw, 31px) !important;
    line-height: 1.15;
  }

  .process-heading-wrap {
    padding-top: 36px !important;
  }

  .process-head h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .process-tabs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .process-tab {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .process-grid,
  .info-grid,
  .car-grid,
  .car-grid.three,
  .form-grid,
  .stat-grid,
  .footer-grid,
  .footer-map-wrap,
  .detail-layout,
  .spec-grid {
    grid-template-columns: 1fr !important;
  }

  .car-card,
  .info-card,
  .panel,
  .detail-card,
  .booking-card,
  .detail-image,
  .stat-card,
  .auth-card {
    border-radius: 18px;
  }

  .car-img-wrap {
    min-height: 188px;
  }

  .car-img-wrap img {
    height: 158px;
  }

  .detail-image {
    padding: 18px;
  }

  .detail-image img {
    height: 240px;
  }

  .detail-card h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .booking-card h2 {
    font-size: clamp(26px, 8vw, 32px) !important;
  }

  .booking-item {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .booking-item img {
    width: 100%;
    height: 150px;
  }

  .auth-section {
    min-height: auto;
    padding: 36px 12px;
  }

  .auth-card {
    padding: 26px 18px !important;
  }

  .auth-card h1 {
    font-size: clamp(28px, 8vw, 34px) !important;
  }

  .admin-shell {
    display: block !important;
    min-height: auto;
  }

  .admin-sidebar {
    position: static !important;
    height: auto !important;
    padding: 18px 12px;
  }

  .admin-sidebar p {
    margin-bottom: 14px;
  }

  .admin-sidebar nav {
    display: flex !important;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .admin-sidebar a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
  }

  .admin-content {
    padding: 18px 12px !important;
    overflow: visible !important;
  }

  .admin-head .btn,
  .form-actions .btn {
    width: 100%;
  }

  .stat-card.wide {
    grid-column: auto !important;
  }

  .stat-card strong {
    font-size: 29px;
  }

  .table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
  }

  .admin-table {
    min-width: 680px;
  }

  .admin-table th,
  .admin-table td {
    padding: 11px 10px;
    font-size: 13px;
  }

  .table-car img {
    width: 58px;
    height: 40px;
  }

  .actions,
  .inline-form,
  .form-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .inline-form select,
  .actions .btn,
  .actions button,
  .inline-form .btn,
  .inline-form button {
    width: 100%;
    min-width: 0;
  }

  .image-preview-card {
    flex-direction: column;
    align-items: stretch;
  }

  .image-preview-card img {
    width: 100%;
    height: 180px;
  }

  .footer {
    margin-top: 36px !important;
    padding-top: 20px !important;
  }

  .footer-cta-inner {
    display: grid !important;
    grid-template-columns: 1fr;
    padding: 20px !important;
  }

  .footer-cta-actions,
  .footer-btn {
    width: 100%;
  }

  .contact-item {
    padding: 11px;
  }

  .footer-map {
    min-height: 190px;
  }

  .footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .whatsapp-float {
    right: 14px !important;
    bottom: 14px !important;
    padding: 10px;
  }

  .whatsapp-float strong {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 18px, 1180px) !important;
  }

  .brand-logo strong {
    max-width: 150px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 30px !important;
  }

  .quick-cards,
  .catalog-search-panel .quick-cards,
  .brand-row,
  .category-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .page-hero.small {
    padding: 42px 0;
  }

  .filter-card,
  .panel,
  .detail-card,
  .booking-card,
  .auth-card {
    padding: 16px !important;
  }

  .admin-table {
    min-width: 620px;
  }
}
