/* Mercedes Homepage Styles */
/* CSS Variables */
:root {
  --color-gold: #D4AF37;
  --color-gold-dark: #B5952F;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-900: #111827;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --max-width: 1280px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.7s ease;
}

/* Base Styles */
.mercedes-homepage {
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-gray-900);
  line-height: 1.6;
}

.mercedes-homepage * {
  box-sizing: border-box;
}

.mercedes-homepage ::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 1.5rem 0;
  background-color: transparent;
}

.main-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  color: var(--color-white);
  font-size: 1.5rem;
  font-family: serif;
  letter-spacing: 0.1em;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.8s ease forwards;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-white);
}

.nav-icon {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon:hover {
  color: var(--color-gold);
}

.nav-menu-toggle {
  display: block;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-subtitle {
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  color: var(--color-white);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: transparent;
}

.btn-primary:hover {
  background-color: var(--color-gray-900);
}

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

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-outline .icon-chevron-right {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-outline:hover .icon-chevron-right {
  transform: translateX(4px);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  min-width: 200px;
}

.btn-full {
  width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

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

.section-subtitle {
  color: var(--color-gray-500);
  font-weight: 300;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, 0.6);
}

.section-divider {
  width: 6rem;
  height: 1px;
  background-color: var(--color-gold);
  margin: 0 auto;
}

.section-divider-small {
  width: 4rem;
  height: 1px;
  background-color: var(--color-black);
}

/* Brand Category Section */
.brand-category-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.brand-category-section .section-header {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.brand-category-section .section-title {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.brand-card {
  cursor: pointer;
}

.brand-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}

.brand-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: background-color 0.3s ease;
}

.brand-card:hover .brand-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.brand-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.brand-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 20;
}

.brand-name {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.brand-line {
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.5s ease;
}

.brand-card:hover .brand-line {
  width: 100%;
}

.brand-description {
  color: var(--color-gray-600);
  font-weight: 300;
  margin-bottom: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.brand-link svg {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
}

.brand-card:hover .brand-link {
  color: var(--color-gold);
}

/* Promotions Section */
.promotions-section {
  padding: 6rem 0;
  background-color: var(--color-gray-900);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.promotions-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333333%;
  height: 100%;
  background: linear-gradient(to left, rgba(212, 175, 55, 0.1), transparent);
}

.promotions-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.promotions-title-wrapper {
  margin-bottom: 1.5rem;
}

.promotions-subtitle {
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.promotions-title {
  font-size: 2.5rem;
  font-weight: 300;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.offer-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  transition: border-color 0.3s ease;
}

.offer-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.offer-icon-wrapper {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  border-radius: 9999px;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon-wrapper {
  transform: scale(1.1);
}

.offer-icon-wrapper svg {
  color: var(--color-gold);
  width: 2rem;
  height: 2rem;
}

.offer-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.offer-description {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.offer-link {
  font-size: 0.875rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: border-color 0.3s ease;
  display: inline-block;
}

.offer-link:hover {
  border-color: var(--color-gold);
}

/* New Products Section */
.new-products-section {
  padding: 6rem 0;
  background-color: var(--color-gray-50);
}

.new-products-section .section-header {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.new-products-section .section-title {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--color-gray-200);
  border-radius: 1rem;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease;
}

.product-card:hover .product-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.product-info {
  text-align: center;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

.product-version {
  color: var(--color-gray-500);
  font-weight: 300;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--color-gold);
  font-weight: 300;
}

/* Best Selling Section */
.best-selling-section {
  padding: 6rem 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.best-selling-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.carousel-controls {
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  padding: 0.75rem;
  border: 1px solid var(--color-gray-200);
  background: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: var(--color-black);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.best-sellers-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.best-sellers-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
  margin: 0;
  padding: 0;
}

.best-seller-card {
  background-color: var(--color-gray-50);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  width: 100%;
}

.best-seller-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}

.best-seller-image-wrapper {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

.best-seller-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.best-seller-card:hover .best-seller-image-wrapper img {
  filter: grayscale(0%);
}

.best-seller-name {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.best-seller-category {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.best-seller-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 1rem;
}

.best-seller-price {
  font-size: 0.875rem;
  font-weight: bold;
}

.best-seller-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.3s ease;
}

.best-seller-btn:hover {
  color: var(--color-gold);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

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

.about-image-wrapper {
  position: relative;
  height: 600px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image-wrapper.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.about-image-bg {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background-color: var(--color-gray-100);
  border-radius: 1rem;
  z-index: -1;
  display: none;
}

.about-content {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-subtitle {
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text {
  color: var(--color-gray-600);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-text:last-of-type {
  margin-bottom: 2.5rem;
}

.consultation-form {
  background-color: var(--color-gray-50);
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  border-radius: 1rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-form input {
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 300;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--color-black);
}

/* Dealerships Section */
.dealerships-section {
  padding: 6rem 0;
  background-color: var(--color-gray-900);
  color: var(--color-white);
}

.dealers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.dealer-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
}

.dealer-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dealer-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.dealer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.dealer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dealer-item svg {
  color: var(--color-gray-500);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.dealer-btn {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  border-radius: 9999px;
  color: var(--color-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dealer-btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* Footer */
.mercedes-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-family: serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--color-gray-400);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--color-white);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  color: var(--color-gray-600);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 1.25rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-width: auto;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-text {
    font-size: 0.625rem;
  }

  .scroll-line {
    height: 2rem;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-menu-toggle {
    display: none;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 4.375rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

  .promotions-header {
    flex-direction: row;
    align-items: flex-end;
  }

  .promotions-title {
    font-size: 3rem;
  }

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

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

  .best-seller-card {
    width: calc((100% - 1.5rem) / 2); /* 2 cards per view on tablet, 1 gap */
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
  }

  .about-image-bg {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

  .offers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .best-seller-card {
    width: calc((100% - 3 * 1.5rem) / 4); /* 4 cards per view, 3 gaps */
  }

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

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

