/* ============================================================
   CarZone Pro – Landing Page Styles
   Based on AutoZone Mobile App design
   ============================================================ */

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

:root {
  --orange-primary: #EE7624;
  --orange-dark: #D15F0F;
  --orange-light: #FDE8D5;
  --orange-bg: #FEF3E8;
  --red-primary: #CC0000;
  --red-dark: #990000;
  --dark-bg: #1A1A1A;
  --dark-secondary: #2D2D2D;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #CCCCCC;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #555555;
  --gray-700: #333333;
  --white: #FFFFFF;
  --black: #000000;
  --green: #2E7D32;

  --font-heading: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Roboto', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1280px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-700);
  background: var(--white);
  min-width: 320px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--red-primary);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.promo-bar small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.9;
  margin-top: 1px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: filter 0.2s, transform 0.2s;
}

.header-logo:hover img {
  filter: drop-shadow(0 4px 8px rgba(238,118,36,0.5));
  transform: scale(1.03);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-signin {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.15s;
  cursor: pointer;
}

.btn-signin:hover {
  background: rgba(255,255,255,0.1);
}

.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.15s;
  cursor: pointer;
}

.btn-cart:hover {
  background: rgba(255,255,255,0.1);
}

.cart-icon {
  width: 22px;
  height: 22px;
}

.cart-count {
  background: var(--red-primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: 4px;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.navbar {
  background: var(--dark-secondary);
  border-bottom: 3px solid var(--orange-primary);
  height: 48px;
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.btn-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  transition: background 0.15s;
  flex-shrink: 0;
  cursor: pointer;
}

.btn-menu:hover {
  background: rgba(255,255,255,0.1);
}

.menu-icon {
  width: 18px;
  height: 18px;
}

.btn-add-vehicle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 0 20px;
  height: 100%;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s;
  flex-shrink: 0;
  cursor: pointer;
}

.btn-add-vehicle:hover {
  background: rgba(255,255,255,0.1);
}

.search-wrapper {
  flex: 1;
  margin: 0 16px;
  position: relative;
}

.search-wrapper input {
  width: 100%;
  height: 36px;
  padding: 0 16px 0 42px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background: var(--white);
  color: var(--gray-700);
  outline: none;
}

.search-wrapper input::placeholder {
  color: var(--gray-400);
}

.search-wrapper input:focus {
  box-shadow: 0 0 0 2px var(--orange-primary);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--gray-400);
  pointer-events: none;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 0 20px;
  height: 100%;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s;
  flex-shrink: 0;
  cursor: pointer;
}

.btn-store:hover {
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--orange-bg) 0%, var(--white) 100%);
  padding: 64px 20px 80px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: var(--orange-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 24px;
  border-radius: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--dark-bg);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-underline {
  width: 60px;
  height: 4px;
  background: var(--orange-primary);
  margin: 0 auto 28px;
}

.hero-text {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-500);
}

.hero-promo {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto 36px;
  padding: 18px 24px;
  background: var(--white);
  border: 2px solid var(--orange-primary);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(238, 118, 36, 0.15);
  text-align: left;
}

.hero-promo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: var(--orange-primary);
  color: var(--white);
  border-radius: 50%;
  line-height: 1;
}

.hero-promo-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.hero-promo-off {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-promo-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-promo-info p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 0;
}

.hero-promo-info span {
  color: var(--orange-primary);
  font-weight: 700;
}

/* ============================================================
   APP DOWNLOAD BUTTONS
   ============================================================ */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  line-height: 1.3;
}

.store-btn:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
}

.store-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-apk {
  background: var(--orange-primary);
}

.btn-apk:hover {
  background: var(--orange-dark);
}

/* ============================================================
   PHONE MOCKUP SECTION (hero image area)
   ============================================================ */
.hero-showcase {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.hero-showcase-img {
  flex-shrink: 0;
  max-width: 520px;
}

.hero-showcase-img img {
  width: 100%;
  height: auto;
}

.hero-features-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hero-feature-item .hf-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-item .hf-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange-primary);
}

.hero-feature-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-feature-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   FEATURES GRID (3 cards below hero)
   ============================================================ */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 80px;
}

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

.feature-card {
  text-align: center;
  padding: 40px 28px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.feature-card:hover {
  border-color: var(--orange-primary);
  box-shadow: 0 4px 20px rgba(238, 118, 36, 0.1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  color: var(--orange-primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-underline {
  width: 50px;
  height: 4px;
  background: var(--orange-primary);
  margin: 0 auto;
}

/* ============================================================
   BRANDS / MAKES / MODELS GRID
   ============================================================ */
.section-brands,
.section-makes,
.section-models,
.section-advice {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
}

.section-alt {
  background: var(--gray-50);
  max-width: 100%;
  padding: 60px 0;
}

.section-alt > .section-header,
.section-alt > .items-grid,
.section-alt > .btn-show-all-wrap {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  min-height: 100px;
  background: var(--white);
}

.item-card:hover {
  border-color: var(--orange-primary);
  box-shadow: 0 4px 16px rgba(238, 118, 36, 0.1);
  color: var(--orange-primary);
}

.item-card img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.item-card--photo {
  padding: 0;
  min-height: 0;
  overflow: hidden;
  display: block;
}

.item-card--photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  margin-bottom: 0;
  object-fit: cover;
  border-radius: 8px;
}

.item-card .brand-name {
  font-size: 13px;
  font-weight: 600;
}

.btn-show-all-wrap {
  text-align: center;
}

.btn-show-all {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid var(--orange-primary);
  color: var(--orange-primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-show-all:hover {
  background: var(--orange-primary);
  color: var(--white);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark-bg);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .store-btn {
  background: var(--orange-primary);
}

.cta-banner .store-btn:hover {
  background: var(--orange-dark);
}

.cta-banner .store-btn.store-btn-google {
  background: var(--white);
  color: var(--black);
}

.cta-banner .store-btn.store-btn-google:hover {
  background: var(--gray-200);
}

/* ============================================================
   ADVICE SECTION
   ============================================================ */
.advice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.advice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-700);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  background: var(--white);
}

.advice-item:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

.advice-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color 0.2s;
}

.advice-item:hover svg {
  color: var(--orange-primary);
}

/* ============================================================
   FAQ SECTION (accordion)
   ============================================================ */
.section-faq {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--orange-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-700);
  text-align: left;
  transition: color 0.2s;
  cursor: pointer;
  background: var(--white);
}

.faq-question:hover {
  color: var(--orange-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s, color 0.2s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--orange-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 60px 20px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-locate {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  padding: 12px 24px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  transition: border-color 0.2s;
  cursor: pointer;
  background: var(--white);
}

.footer-locate:hover {
  border-color: var(--orange-primary);
}

.footer-locate svg {
  width: 20px;
  height: 20px;
}

.footer-actions {
  display: flex;
  gap: 24px;
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-700);
  align-items: center;
}

.footer-actions a {
  transition: color 0.15s;
  cursor: pointer;
}

.footer-actions a:hover {
  color: var(--orange-primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
}

.footer-social a:hover {
  background: var(--orange-primary);
}

.footer-social a:hover svg {
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.15s;
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--orange-primary);
}

.footer-sites {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.footer-sites h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-sites ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-sites a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.15s;
  cursor: pointer;
}

.footer-sites a:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  font-size: 12px;
  color: var(--gray-400);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-legal a {
  color: var(--gray-500);
  transition: color 0.15s;
  cursor: pointer;
}

.footer-legal a:hover {
  color: var(--orange-primary);
}

.footer-stores {
  display: flex;
  gap: 12px;
}

.footer-stores .store-badge {
  height: 40px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-stores .store-badge:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
}

/* ============================================================
   MODAL / OVERLAY
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}

.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-box .store-buttons {
  margin-bottom: 16px;
}

.modal-close {
  padding: 10px 24px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  font-weight: 600;
  color: var(--gray-500);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.modal-close:hover {
  border-color: var(--gray-500);
  color: var(--gray-700);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-bg);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   RESPONSIVE – TABLET (768px – 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-showcase {
    flex-direction: column;
    gap: 32px;
  }

  .hero-showcase-img {
    max-width: 400px;
  }

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

  .items-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-top {
    flex-direction: column;
    gap: 16px;
  }

  .footer-social {
    margin-left: 0;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (375px – 768px)
   ============================================================ */
@media (max-width: 768px) {
  .promo-bar {
    font-size: 12px;
    padding: 6px 12px;
  }

  .promo-bar small {
    font-size: 10px;
  }

  .header-inner {
    height: 54px;
    padding: 0 12px;
    gap: 10px;
  }

  .header-logo img {
    height: 32px;
  }

  .btn-signin,
  .btn-cart span {
    display: none;
  }

  .btn-cart {
    padding: 8px;
  }

  .navbar {
    height: 44px;
  }

  .navbar-inner {
    padding: 0 8px;
  }

  .btn-add-vehicle,
  .btn-store {
    display: none;
  }

  .btn-menu {
    padding: 0 10px;
    font-size: 12px;
    gap: 6px;
  }

  .search-wrapper {
    margin: 0 6px;
  }

  .search-wrapper input {
    height: 32px;
    font-size: 13px;
    padding: 0 10px 0 34px;
  }

  .hero {
    padding: 40px 16px 48px;
  }

  .hero-label {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 6px 16px;
  }

  .hero-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-promo {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    max-width: 100%;
    padding: 16px 18px;
    margin-bottom: 28px;
  }

  .hero-promo-badge {
    width: 76px;
    height: 76px;
  }

  .hero-promo-value {
    font-size: 24px;
  }

  .hero-promo-info strong {
    font-size: 16px;
  }

  .hero-promo-info p {
    font-size: 13px;
  }

  .hero-showcase {
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
    padding: 0;
  }

  .hero-showcase-img {
    max-width: 100%;
    width: 100%;
  }

  .hero-features-list {
    gap: 20px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 16px;
    font-size: 13px;
  }

  .features {
    padding: 0 16px 48px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .section-brands,
  .section-makes,
  .section-models,
  .section-advice,
  .section-faq {
    padding: 40px 16px;
  }

  .section-alt {
    padding: 40px 0;
  }

  .section-alt > .section-header,
  .section-alt > .items-grid,
  .section-alt > .btn-show-all-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .item-card {
    padding: 18px 10px;
    font-size: 12px;
    min-height: 70px;
  }

  .item-card img {
    width: 60px;
    height: 40px;
  }

  .item-card.item-card--photo {
    padding: 0;
    min-height: unset;
    display: block;
  }

  .item-card.item-card--photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 0;
    object-fit: cover;
    border-radius: 8px;
  }

  .item-card .brand-name {
    font-size: 11px;
  }

  .advice-item {
    font-size: 14px;
    padding: 14px 16px;
  }

  .cta-banner {
    padding: 56px 16px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px;
  }

  .footer {
    padding: 40px 16px 0;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-sites ul {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    margin-bottom: 28px;
  }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (< 375px)
   ============================================================ */
@media (max-width: 374px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .items-grid {
    gap: 8px;
  }

  .item-card {
    padding: 12px 6px;
    font-size: 11px;
  }

  .item-card img {
    width: 50px;
    height: 32px;
  }

  .item-card.item-card--photo {
    padding: 0;
    min-height: unset;
  }

  .item-card.item-card--photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
