/* Start: CSS Variables */
:root {
  /* Colors */
  --primary-red: #d20309;
  --primary-red-hover: #b30208;
  --primary-dark: #202020;
  --primary-light: #ffffff;
  --secondary-gray: #c5c5c5;
  --secondary-dark: #1a1a1a;
  --accent-gold: #ffd700;
  --text-light: #f9f9f9;
  --text-gray: #666;
  --background-light: #f8f9fa;

  /* Spacing */
  --space-xs: 0.5rem; /* 8px */
  --space-sm: 0.75rem; /* 12px */
  --space-md: 1rem; /* 16px */
  --space-lg: 1.5rem; /* 24px */
  --space-xl: 2rem; /* 32px */
  --space-xxl: 3rem; /* 48px */

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* End: CSS Variables */

/* Start: Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--primary-light);
}

body {
  position: relative;
  font-size: 1rem; /* 16px */
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
/* End: Global Styles */

/* Start: Navigation Styles */
nav {
  display: flex;
  flex-direction: column;
  background-color: var(--primary-light);
  width: 100%;
  min-height: auto;
}

/* Start: Top Navigation Bar */
.top-navbar {
  display: flex;
  align-items: center;
  min-height: 2.1875rem; /* 35px */
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem; /* 14px */
  font-family: "Courier New", Courier, monospace;
  padding: 0 var(--space-xl); /* 5px 20px */
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.left-links {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  gap: var(--space-lg); /* 15px */
}

.left-links li {
  margin: 0;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: var(--primary-dark);
  overflow: hidden;
  transition: color 0.3s ease;
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  width: 0.125rem; /* 2px */
  height: 100%;
  background-color: var(--primary-red);
  transition: transform 1.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.nav-link::before {
  left: 0;
  top: 0;
  transform: translateY(0);
}

.nav-link::after {
  right: 0;
  top: 0;
  transform: translateY(0);
}

.nav-link:hover::before {
  transform: translateY(-100%);
  opacity: 1;
}

.nav-link:hover::after {
  transform: translateY(100%);
  opacity: 1;
}

.right-links {
  display: flex;
  margin: 0;
  padding: var(--space-xs); /* 5px */
  justify-content: center;
  align-items: center;
  gap: var(--space-lg); /* 15px */
  flex-wrap: wrap;
}

.right-links li {
  margin: 0;
}

.left-links li a,
.right-links li a {
  text-decoration: none;
  color: var(--primary-dark);
  position: relative;
  /* padding-bottom: var(--space-xs); 5px */
  line-height: 1.6;
}

.social-links {
  display: flex;
  margin: 0;
  padding: var(--space-xs); /* 5px */
  justify-content: center;
  align-items: center;
  gap: var(--space-sm); /* 10px */
  flex-wrap: wrap;
}

.social-links li {
  margin: 0;
}

.social-links li a {
  text-decoration: none;
  color: var(--primary-dark);
  position: relative;
  /* padding-bottom: var(--space-xs); 5px */
  line-height: 1.6;
}
/* End: Top Navigation Bar */

/* Start: Main Navigation Bar */
.main-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-light);
  font-size: 1.125rem; /* 18px */
  font-family: "Courier New", Courier, monospace;
  padding: var(--space-xs) var(--space-xl); /* 10px 20px */
  flex-wrap: wrap;
  flex-direction: row;
  gap: var(--space-xs); /* 8px */
}

.logo img {
  height: 3.125rem; /* 50px */
  width: auto;
  max-width: 7.5rem; /* 120px */
}

.logo-section {
  display: flex;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm); /* 10px */
  align-items: center;
}

.nav-links li {
  padding: 0 var(--space-xs); /* 0 8px */
  white-space: nowrap;
  align-items: center;
  display: flex;
  gap: 0.375rem; /* 6px */
}

.nav-links li a {
  text-decoration: none;
  color: var(--primary-dark);
  position: relative;
  line-height: 1.5;
  border: 0.125rem solid var(--primary-light); /* 2px */
}

.nav-links li .nav-item:hover {
  border: 0.125rem solid var(--primary-red); /* 2px */
  transition: 0.5s;
}

.dropdown-container {
  position: relative;
}

.dropdown-container li {
  margin-right: var(--space-sm); /* 10px */
  margin-top: var(--space-sm); /* 10px */
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  display: block !important;
  width: fit-content;
  height: fit-content !important;
  padding: var(--space-xs); /* 5px */
  background-color: var(--primary-light);
  text-align: center;
  right: -40%;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 50;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm); /* 10px */
}

.dropdown-container:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.dropdown-menu li {
  display: block;
  text-align: left;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
}

.dropdown-link {
  color: var(--primary-dark);
  display: block;
  padding: 0.125rem 0; /* 2px 0px */
  margin: 0;
}

.dropdown-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--space-sm); /* 12px */
}

.dropdown-column {
  display: flex;
  flex-direction: column;
}

.dropdown-header {
  width: 3.125rem; /* 50px */
  color: var(--primary-dark);
  font-size: 1rem; /* 16px */
  margin-left: var(--space-sm); /* 10px */
  font-weight: 600;
}

.dropdown-title {
  text-decoration: none;
}

.dropdown-header p {
  padding-bottom: 0.375rem; /* 6px */
}

.dropdown-link:hover {
  font-size: 1rem; /* 16px */
  color: var(--primary-red);
  font-weight: 600;
}

.nav-text {
  /* padding-top: var(--space-sm); 10px */
}

.action-icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-xs); /* 8px */
}

.action-icons li {
  padding: 0 var(--space-xs) 0; /* 0 8px 0 */
}

.nav-item {
  position: relative;
  display: inline-block;
  padding: 2px; /* 7px 15px */
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.nav-item::before,
.nav-item::after,
.nav-item span::before,
.nav-item span::after {
  content: "";
  position: absolute;
  background: var(--primary-red);
  transition: all 0.4s ease;
  z-index: -1;
}

.nav-item::before {
  height: 0.125rem; /* 2px */
  width: 0;
  left: 0;
  bottom: 0;
}

.nav-item::after {
  width: 0.125rem; /* 2px */
  height: 0;
  right: 0;
  top: 0;
}

.nav-item span::before {
  height: 0.125rem; /* 2px */
  width: 0;
  right: 0;
  top: 0;
}

.nav-item span::after {
  width: 0.125rem; /* 2px */
  height: 0;
  left: 0;
  bottom: 0;
}

.nav-item:hover::before {
  width: 100%;
}

.nav-item:hover::after {
  height: 100%;
}

.nav-item:hover span::before {
  width: 100%;
}

.nav-item:hover span::after {
  height: 100%;
}

.action-icons li:hover {
  color: var(--primary-red);
}

/* Hamburger Menu - Hidden by default */
.hamburger-menu {
  display: none;
  cursor: pointer;
  padding: var(--space-sm); /* 10px */
  font-size: 1.5rem; /* 24px */
  color: var(--primary-dark);
  transition: color 0.3s ease;
}

.hamburger-menu:hover {
  color: var(--primary-red);
}

/* Show hamburger menu only at 769px and below */
@media (max-width: 880px) {
  .hamburger-menu {
    display: block;
  }

  /* Hide desktop navigation elements */
  .top-navbar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .action-icons {
    display: none;
  }

  /* Adjust main-navbar for mobile */
  .main-navbar {
    flex-direction: row-reverse;
    padding: var(--space-sm) var(--space-xl); /* 10px 20px */
    position: relative;
  }
}
/* End: Main Navigation Bar */

/* Start: Promotional Banner */
.promo-banner {
  display: flex;
  background-color: var(--primary-dark);
  padding: var(--space-sm) var(--space-xl); /* 10px 20px */
  font-size: 0.875rem; /* 14px */
  font-family: "Courier New", Courier, monospace;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--space-sm); /* 10px */
}

.promo-text {
  font-size: 0.875rem; /* 14px */
  color: var(--secondary-gray);
  padding-top: 0.125rem; /* 2px */
  position: relative;
  line-height: 1.5;
  text-align: center;
}

.promo-content li a {
  text-decoration: underline;
  color: #ede435c0;
  font-size: 1rem; /* 16px */
  position: relative;
  line-height: 1.5;
}

.promo-content li a:hover {
  color: #cd1313f1;
}
/* End: Promotional Banner */

/* Start: Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-xl); /* 20px */
  right: var(--space-xl); /* 20px */
  font-size: 1.875rem; /* 30px */
  color: var(--primary-dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
  z-index: 1001;
}

.mobile-nav-close:hover {
  color: var(--primary-red);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 5rem var(--space-xl) var(--space-xxl); /* 80px 20px 40px */
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl); /* 20px */
  width: 100%;
  max-width: 18.75rem; /* 300px */
  overflow-y: auto;
  max-height: 70vh;
  padding: var(--space-sm) 0; /* 10px 0 */
}

.mobile-nav-links a {
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625rem; /* 1px */
  transition: color 0.3s ease;
  text-align: center;
  width: 100%;
  padding: var(--space-sm) 0; /* 12px 0 */
  border-bottom: 0.0625rem solid #eee; /* 1px */
}

.mobile-nav-links a:hover {
  color: var(--primary-red);
}

.mobile-nav-social,
.mobile-nav-icons {
  display: flex;
  gap: var(--space-xl); /* 20px */
  margin-top: 1.875rem; /* 30px */
}

.mobile-nav-social a {
  color: var(--primary-dark);
  font-size: 1.375rem; /* 22px */
  transition: color 0.3s ease;
}

.mobile-nav-social a:hover {
  color: var(--primary-red);
}

.mobile-dropdown {
  width: 100%;
  text-align: center;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm); /* 10px */
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  background: #f8f9fa;
  border-radius: var(--radius-sm); /* 10px */
  margin-top: var(--space-sm); /* 10px */
  padding: var(--space-lg); /* 15px */
  border: 0.0625rem solid #e0e0e0; /* 1px */
  max-height: 18.75rem; /* 300px */
  overflow-y: auto;
}

.mobile-dropdown-content a {
  font-size: 1rem; /* 16px */
  padding: var(--space-sm) 0; /* 10px 0 */
  border-bottom: 0.0625rem solid #e0e0e0; /* 1px */
  text-transform: none;
  font-weight: normal;
}

.mobile-dropdown-content a:last-child {
  border-bottom: none;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

/* Show mobile navigation only when active and at 769px and below */
@media (max-width: 769px) {
  .mobile-nav {
    display: flex;
  }
}
/* End: Mobile Navigation */
/* End: Navigation Styles */

/* Start: Header Section */
header {
  position: relative;
}

.header-container {
  position: relative;
}

.header-container img {
  width: 100%;
  min-height: 25rem; /* 400px */
  max-height: 100vh;
  object-fit: cover;
  margin-bottom: 3.125rem; /* 50px */
}

.header-content {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(235, 236, 238);
  width: 90%;
  max-width: 37.5rem; /* 600px */
  text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.8); /* 1px 1px 3px */
  padding: var(--space-xl); /* 20px */
}

.header-content h1 {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  margin-bottom: var(--space-sm); /* 10px */
  font-family: Copperplate, Papyrus, fantasy;
  color: var(--text-light);
}

.header-content h2 {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: var(--primary-red);
}

.header-content p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* 14px, 2vw, 16px */
  margin: var(--space-lg) auto 1.5625rem; /* 15px auto 25px */
  max-width: 24.375rem; /* 390px */
  font-family: "Brush Script MT", cursive;
  color: var(--text-light);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-xl); /* 20px */
}

.normal {
  font-weight: bold;
  cursor: pointer;
  background-color: #202020d4;
  color: var(--primary-light);
  transition: all 0.3s;
  font-size: 1rem; /* 16px */
  text-transform: uppercase;
  letter-spacing: 0.0625rem; /* 1px */
  font-family: "Brush Script MT", cursive;
  border: 0;
  padding: var(--space-lg) var(--space-xl); /* 15px 20px */
}

.normal:hover {
  background: rgba(189, 189, 189, 0.869);
  color: var(--primary-dark);
}
/* End: Header Section */

/* Start: Featured Cars Section */
.featured-cars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md); /* 10px */
  padding: var(--space-xs); /*8px */
}

.car-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 25rem; /* 400px */
  transition: all 0.4s ease;
  border-radius: var(--radius-sm); /* 10px */
}

.car-card img {
  width: 100%;
  height: auto;
  min-height: 18.75rem; /* 300px */
  max-height: 26.25rem; /* 420px */
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm); /* 10px */
  transition: all 0.4s ease;
}

.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm); /* 10px */
  box-shadow: inset 0 0 3.125rem rgba(0, 0, 0, 0); /* 50px */
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

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

.car-card:hover::before {
  box-shadow: inset 0 0 6.25rem rgba(0, 0, 0, 0.7); /* 100px */
}

.car-caption {
  position: absolute;
  bottom: 3.75rem; /* 60px */
  left: 50%;
  transform: translateX(-50%) translateY(var(--space-xl)); /* 20px */
  opacity: 0.3;
  transition: all 0.4s ease;
  text-align: center;
  z-index: 3;
}

.car-card:hover .car-caption {
  transform: translateX(-50%) translateY(0px) scale(1.1);
  opacity: 1;
}

.car-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px, 3vw, 24px */
  color: var(--primary-light);
  text-shadow: 0.0625rem 0.0625rem 0.1875rem black; /* 1px 1px 3px */
}

.view-link {
  display: none;
  font-family: "Bebas Neue", sans-serif;
  color: var(--accent-gold);
  font-size: clamp(0.875rem, 2.5vw, 1.125rem); /* 14px, 2.5vw, 18px */
  text-decoration: underline;
  margin-top: 0.25rem; /* 4px */
  transition: 0.3s ease;
}

.car-card:hover .view-link {
  display: inline-block;
}
@media (max-width: 999px) {
  .featured-cars {
    flex-wrap: wrap;
  }
}
/* End: Featured Cars Section */

/* Start: Weekly Brands Section */
.brands-section {
  margin: 4.6875rem var(--space-xl) var(--space-xl); /* 75px 20px 20px */
}

.section-divider {
  margin: 0 var(--space-xl); /* 0 20px */
}

.section-title {
  margin-bottom: var(--space-xl); /* 20px */
  font-family: "tahoma";
  font-size: clamp(1.5rem, 4vw, 2rem); /* 24px, 4vw, 32px */
}

.brands-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg); /* 15px */
}

.brands-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg); /* 15px */
}

.brand-name {
  font-family: monospace;
  font-size: clamp(1.125rem, 3vw, 1.75rem); /* 18px, 3vw, 28px */
  margin: 0 var(--space-sm) 1.5625rem; /* 0 10px 25px */
}

.bmw-underline {
  text-decoration: underline;
}
/* End: Weekly Brands Section */

/* Start: Products Slider Section */
.products-slider {
  width: 90%;
  max-width: 87.5rem; /* 1400px */
  margin: 4.6875rem auto; /* 75px */
  display: flex;
  justify-content: center;
  gap: var(--space-lg); /* 15px */
  position: relative;
  flex-wrap: wrap;
}

.product-card {
  width: 100%;
  max-width: 18.75rem; /* 300px */
  flex: 1 1 15.625rem; /* 250px */
  background-color: var(--primary-light);
  text-align: center;
  padding: 0 var(--space-sm) var(--space-xl); /* 0 10px 20px */
  border-radius: var(--radius-sm); /* 10px */
  position: relative;
  overflow: hidden;
}

.product-image {
  position: relative;
  width: 100%;
  height: 21.875rem; /* 350px */
  border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 10px 10px 0 0 */
  perspective: 62.5rem; /* 1000px */
  overflow: hidden;
}

.product-card img.primary-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 10px 10px 0 0 */
  object-fit: cover;
  position: relative;
  z-index: 2;
  backface-visibility: visible;
  transform: none;
  transition: none;
}

.product-card img.secondary-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 10px 10px 0 0 */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: rotateY(90deg);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.product-card:hover img.secondary-image {
  transform: rotateY(0deg);
  z-index: 3;
}

.product-actions {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: var(--space-lg); /* 15px */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 4;
  pointer-events: none;
}

.product-card:hover .product-actions {
  opacity: 1;
  pointer-events: auto;
}

.product-actions i {
  background: rgba(0, 0, 0, 0.6);
  color: var(--primary-light);
  padding: var(--space-sm); /* 10px */
  border-radius: 50%;
  font-size: 1.125rem; /* 18px */
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.product-actions i:hover {
  background: var(--primary-light);
  color: var(--primary-red);
}

.product-card h2,
.product-card h3 {
  position: relative;
  z-index: 5;
  margin: var(--space-sm) 0 var(--space-xs); /* 10px 0 5px */
}

.product-card h3 del {
  color: #aaa;
  margin-left: var(--space-sm); /* 10px */
}

.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 2.5rem; /* 40px */
  color: rgba(0, 0, 0, 0.7);
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

.arrow-left {
  left: -2.5rem; /* -40px */
}

.arrow-right {
  right: -2.5rem; /* -40px */
}
/* End: Products Slider Section */

/* Start: Testimonials Section */
.testimonials-section {
  width: 100%;
  min-height: 31.25rem; /* 500px */
  position: relative;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #2d2d2d 100%);
  margin-top: 9.375rem; /* 150px */
  padding: 5rem var(--space-xl); /* 80px 20px */
  overflow: hidden;
}

.testimonial-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1;
}

.testimonial-container {
  width: 90%;
  max-width: 56.25rem; /* 900px */
  margin: auto;
  position: relative;
  z-index: 2;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs); /* 8px */
  width: 100%;
  background: transparent;
  padding: 4rem var(--space-xs); /* 40px 30px */
  transition: transform 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-0.3125rem); /* -5px */
}
.testimonial-text {
  width: 100%;
  order: 1;
}

.testimonial-author {
  width: 100%;
  order: 2;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 3.125rem; /* 50px */
}

.testimonial-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* 28px, 4vw, 36px */
  font-weight: 700;
  color: var(--primary-light);
  text-transform: capitalize;
  letter-spacing: 0.0625rem; /* 1px */
  margin-bottom: 0;
}

.author-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5625rem; /* 25px */
  text-align: left;
  justify-content: center;
  flex-wrap: wrap;
}

.author-info img {
  border-radius: 50%;
  width: 5.625rem; /* 90px */
  height: 5.625rem; /* 90px */
  object-fit: cover;
  border: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.author-info img:hover {
  transform: scale(1.1);
  box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.7); /* 15px 40px */
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs); /* 5px */
}

.author-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem); /* 22px, 3vw, 28px */
  font-weight: 700;
  color: var(--primary-light);
  margin: 0;
  text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.5); /* 2px 2px 8px */
  letter-spacing: 0.03125rem; /* 0.5px */
}

.author-info p {
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem); /* 14px, 2vw, 16px */
  font-weight: 400;
  color: #999999;
  letter-spacing: 0.0625rem; /* 1px */
  margin: 0;
  text-transform: capitalize;
}

.testimonial-paragraph {
  margin: 0;
  width: 100%;
  max-width: 46.875rem; /* 750px */
  line-height: 2;
  font-size: clamp(1.0625rem, 2.5vw, 1.3125rem); /* 17px, 2.5vw, 21px */
  font-family: "Georgia", serif;
  text-align: center;
  color: #e0e0e0;
  font-style: italic;
  position: relative;
  padding: 0 var(--space-xxl); /* 0 40px */
  font-weight: 300;
}

.testimonial-paragraph::before,
.testimonial-paragraph::after {
  content: '"';
  font-size: clamp(3.125rem, 7vw, 4.375rem); /* 50px, 7vw, 70px */
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  font-family: Georgia, serif;
  font-weight: bold;
  line-height: 1;
}

.testimonial-paragraph::before {
  top: -1.5625rem; /* -25px */
  left: 0;
}

.testimonial-paragraph::after {
  bottom: -2.8125rem; /* -45px */
  right: 0;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  font-size: 2.1875rem; /* 35px */
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 1000;
  transform: translateY(-50%);
  user-select: none;
  transition: all 0.3s ease;
  background: transparent;
  width: 3.125rem; /* 50px */
  height: 3.125rem; /* 50px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.testimonial-arrow:hover {
  color: var(--primary-red);
  transform: translateY(-50%) scale(1.2);
  text-shadow: 0 0 0.9375rem rgba(210, 3, 9, 0.8); /* 15px */
}

.left-arrow {
  left: 1.875rem; /* 30px */
}

.right-arrow {
  right: 1.875rem; /* 30px */
}
/* End: Testimonials Section */

/* Start: Favorites Section */
.favorites-header {
  text-align: center;
  margin-top: 3.125rem; /* 50px */
}

.section-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem); /* 24px, 4vw, 32px */
}

.section-heading::after {
  content: "";
  display: block;
  width: 12.5rem; /* 200px */
  height: 0.25rem; /* 4px */
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-red),
    transparent
  );
  margin: var(--space-xl) auto 0; /* 20px auto 0 */
  border-radius: 0.125rem; /* 2px */
}

.favorites-slider {
  width: 90%;
  max-width: 87.5rem; /* 1400px */
  margin: 4.6875rem auto; /* 75px */
  display: flex;
  justify-content: center;
  gap: var(--space-lg); /* 15px */
  position: relative;
  flex-wrap: wrap;
}

.favorite-product {
  width: 100%;
  max-width: 18.75rem; /* 300px */
  flex: 1 1 15.625rem; /* 250px */
  background-color: var(--primary-light);
  text-align: center;
  padding: 0 var(--space-sm) var(--space-xl); /* 0 10px 20px */
  border-radius: var(--radius-sm); /* 10px */
  position: relative;
  overflow: hidden;
}

.favorite-product img.primary-image {
  width: 100%;
  height: 21.875rem; /* 350px */
  border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 10px 10px 0 0 */
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.favorite-product img.secondary-image {
  width: 100%;
  height: 21.875rem; /* 350px */
  border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 10px 10px 0 0 */
  object-fit: cover;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 3;
  transition: top 0.6s ease;
}

.favorite-product:hover img.secondary-image {
  top: 0;
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 21.875rem; /* 350px */
  border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 10px 10px 0 0 */
  overflow: hidden;
}

.favorite-product h2,
.favorite-product h3 {
  position: relative;
  z-index: 5;
  margin: var(--space-sm) 0 var(--space-xs); /* 10px 0 5px */
}

.favorite-product h3 del {
  color: #aaa;
  margin-left: var(--space-sm); /* 10px */
}
/* End: Favorites Section */

/* Start: Latest News Section */
.latest-news {
  width: 100%;
  min-height: 37.5rem; /* 600px */
  padding: 5rem var(--space-xl); /* 80px 20px */
  background: linear-gradient(135deg, var(--background-light) 0%, #e9ecef 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}

.section-main-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 5vw, 2.625rem); /* 32px, 5vw, 42px */
  text-align: center;
  margin-bottom: 3.75rem; /* 60px */
  color: var(--primary-dark);
  position: relative;
  font-weight: 700;
  letter-spacing: 0.0625rem; /* 1px */
}

.section-main-title::after {
  content: "";
  display: block;
  width: 15.625rem; /* 250px */
  height: 0.25rem; /* 4px */
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-red),
    transparent
  );
  margin: var(--space-xl) auto 0; /* 20px auto 0 */
  border-radius: 0.125rem; /* 2px */
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem; /* 30px */
  max-width: 81.25rem; /* 1300px */
  margin: 0 auto;
}

.news-card {
  width: 100%;
  margin: 0;
  position: relative;
  background-color: var(--primary-light);
  border-radius: 1rem; /* 16px */
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-0.9375rem) scale(1.02); /* -15px */
  box-shadow: var(--shadow-lg);
}

.news-image-container {
  position: relative;
  width: 100%;
  height: 17.5rem; /* 280px */
  overflow: hidden;
}

.news-main-image,
.news-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-main-image {
  opacity: 1;
  transform: scale(1);
  filter: brightness(0.9);
}

.news-hover-image {
  opacity: 0;
  transform: scale(1.1);
  filter: brightness(1);
}

.news-card:hover .news-main-image {
  opacity: 0;
  transform: scale(1.05);
}

.news-card:hover .news-hover-image {
  opacity: 1;
  transform: scale(1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.news-card:hover .image-overlay {
  opacity: 1;
}

.read-more-overlay {
  position: absolute;
  bottom: var(--space-xl); /* 20px */
  right: var(--space-xl); /* 20px */
  background: var(--primary-red);
  color: var(--primary-light);
  padding: var(--space-xs) var(--space-sm); /* 8px 16px */
  border-radius: 1.25rem; /* 20px */
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  transform: translateY(var(--space-sm)); /* 10px */
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.news-card:hover .read-more-overlay {
  transform: translateY(0);
  opacity: 1;
}

.news-content {
  width: 100%;
  padding: 1.875rem 1.5625rem; /* 30px 25px */
  position: relative;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.news-category {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.875rem; /* 14px */
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075rem; /* 1.2px */
  margin-bottom: var(--space-sm); /* 12px */
  display: block;
}

.news-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem; /* 20px */
  line-height: 1.4;
  color: var(--primary-dark);
  margin: 0 0 var(--space-lg) 0; /* 0 0 15px 0 */
  font-weight: 600;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: break-word;
}

.news-excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0 0 1.5625rem 0; /* 0 0 25px 0 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: break-word;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem; /* 16px */
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.1875rem; /* 3px */
  transition: all 0.3s ease;
}

.read-more-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem; /* 2px */
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.read-more-link i {
  margin-left: var(--space-xs); /* 8px */
  transition: transform 0.3s ease;
}

.read-more-link:hover {
  color: var(--primary-red);
}

.read-more-link:hover::after {
  width: 100%;
}

.read-more-link:hover i {
  transform: translateX(0.3125rem); /* 5px */
}

.news-card:hover .news-title {
  color: var(--primary-red);
}

.news-card:hover .news-category {
  color: var(--primary-red);
}

.date-badge {
  position: absolute;
  top: -0.9375rem; /* -15px */
  left: 1.5625rem; /* 25px */
  background: var(--primary-red);
  color: var(--primary-light);
  padding: var(--space-xs) var(--space-lg); /* 8px 15px */
  border-radius: 1.25rem; /* 20px */
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  box-shadow: 0 0.3125rem 0.9375rem rgba(210, 3, 9, 0.3); /* 5px 15px */
  z-index: 2;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(210, 3, 9, 0.03),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.news-card:hover::before {
  opacity: 1;
}
/* End: Latest News Section */

/* Start: Statistics Section */
.statistics-section {
  position: relative;
  background: var(--primary-dark);
  padding: 3.125rem var(--space-xl); /* 50px 20px */
  color: var(--primary-light);
  text-align: center;
  overflow: hidden;
}

.stats-container {
  position: relative;
  width: 90%;
  max-width: 75rem; /* 1200px */
  margin: auto;
}

.stats-grid {
  padding-top: var(--space-xl); /* 20px */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xxl); /* 40px */
  align-items: center;
  justify-items: center;
}

.stat-item {
  text-align: center;
  width: 100%;
  max-width: 15.625rem; /* 250px */
}

.fa-solid {
  font-weight: 900;
}

.stat-icon {
  font-size: clamp(2.1875rem, 4vw, 3.125rem); /* 35px, 4vw, 50px */
  margin-bottom: var(--space-xl); /* 20px */
  transition: transform 0.6s ease;
  display: inline-block;
  color: var(--text-light);
}

.stat-icon:hover {
  transform: rotateY(360deg);
}

.stat-number {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: var(--space-sm); /* 10px */
  color: var(--primary-light);
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
}

.stat-label {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.0625rem; /* 1px */
  color: #ecf0f1;
  font-weight: 500;
}

.stat-item i:hover {
  color: var(--primary-red);
}
/* End: Statistics Section */

/* Start: Newsletter Section */
.newsletter-section {
  display: flex;
  align-items: center;
  padding: var(--space-xxl) var(--space-xl); /* 40px 20px */
  margin-bottom: 3.125rem; /* 50px */
  gap: var(--space-xxl); /* 40px */
  justify-content: space-between;
  background: #111;
  border-radius: var(--space-lg); /* 15px */
  max-width: 75rem; /* 1200px */
  margin-left: auto;
  margin-right: auto;
}

.newsletter-info {
  flex: 1;
  text-align: left;
  min-width: 18.75rem; /* 300px */
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 1.875rem; /* 30px */
  flex: 1;
  justify-content: flex-end;
}

.subscribe-form {
  display: flex;
  gap: var(--space-sm); /* 10px */
  align-items: center;
}

.footer-social {
  display: flex;
  gap: var(--space-lg); /* 15px */
}

.footer-social img {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
  cursor: pointer;
}

.newsletter-section h3 {
  margin-bottom: var(--space-lg); /* 15px */
  font-size: clamp(1.375rem, 3vw, 1.75rem); /* 22px, 3vw, 28px */
  color: var(--text-light);
  font-weight: 700;
}

.newsletter-section p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* 14px, 2vw, 16px */
  margin-bottom: 0;
  color: #7f8c8d;
  line-height: 1.6;
}

.subscribe-form input {
  padding: var(--space-sm) var(--space-xl); /* 12px 20px */
  width: 17.5rem; /* 280px */
  border: 0.125rem solid #e0e0e0; /* 2px */
  border-radius: var(--space-xs); /* 8px */
  font-size: 1rem; /* 16px */
  transition: all 0.3s ease;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.1875rem rgba(210, 3, 9, 0.1); /* 3px */
}

.subscribe-form button {
  padding: var(--space-sm) 1.875rem; /* 12px 30px */
  background: var(--primary-red);
  border: none;
  color: var(--primary-light);
  border-radius: var(--space-xs); /* 8px */
  cursor: pointer;
  font-size: 1rem; /* 16px */
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: var(--primary-red-hover);
  transform: translateY(-0.125rem); /* -2px */
  box-shadow: 0 0.3125rem 0.9375rem rgba(210, 3, 9, 0.3); /* 5px 15px */
}
/* End: Newsletter Section */

/* Start: Footer Section */
.footer {
  background-color: #111;
  padding: var(--space-xxl) var(--space-xl); /* 40px 20px */
  color: var(--primary-light);
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm); /* 10px */
}

.footer-brand-name {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem); /* 24px, 4vw, 32px */
  color: var(--primary-red);
  font-family: Copperplate, Papyrus, fantasy;
}

.footer-logo {
  width: 4.375rem; /* 70px */
  height: 3.125rem; /* 50px */
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: left;
  margin-bottom: 1.875rem; /* 30px */
  gap: 1.875rem; /* 30px */
}

.footer-brand {
  flex: 1 1 12.5rem; /* 200px */
  margin: var(--space-sm); /* 10px */
}

.footer-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem; /* 30px */
  flex: 3 1 37.5rem; /* 600px */
}

.footer-links-grid div {
  min-width: 9.375rem; /* 150px */
  flex: 1 1 9.375rem; /* 150px */
}

.footer-links-grid h4 {
  font-size: clamp(1.125rem, 3vw, 1.625rem); /* 18px, 3vw, 26px */
  margin-bottom: var(--space-sm); /* 10px */
  font-weight: bold;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid li {
  color: #ccc;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem); /* 13px, 2vw, 15px */
  margin-bottom: var(--space-xs); /* 5px */
  cursor: pointer;
  line-height: 1.5625rem; /* 25px */
}

.footer-links-grid li:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 0.0625rem solid #333; /* 1px */
  padding-top: var(--space-xl); /* 20px */
  font-size: clamp(0.75rem, 1.5vw, 0.875rem); /* 12px, 1.5vw, 14px */
  color: #aaa;
}

.footer-bottom a {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl); /* 20px */
}

.social-list li {
  list-style: none;
}

.social-list li a {
  text-decoration: none;
  color: #7e7e7e;
  font-size: 1.25rem; /* 20px */
}

.social-list li a:hover {
  color: var(--primary-red);
}
/* End: Footer Section */

/* Start: Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 1.875rem; /* 30px */
  right: 1.875rem; /* 30px */
  width: 3.125rem; /* 50px */
  height: 3.125rem; /* 50px */
  background: var(--primary-red);
  color: var(--primary-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem; /* 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 0.25rem 0.75rem rgba(210, 3, 9, 0.3); /* 4px 12px */
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-red-hover);
  transform: translateY(-0.1875rem); /* -3px */
  box-shadow: 0 0.375rem 0.9375rem rgba(210, 3, 9, 0.4); /* 6px 15px */
}
/* End: Back to Top Button */

/* Start: Additional Media Queries */

/* Desktop (min 1025px) */
@media (min-width: 1025px) {
  .mobile-nav {
    display: none !important;
  }

  .hamburger-menu {
    display: none !important;
  }

  /* Show all desktop navigation elements */
  .top-navbar {
    display: flex;
  }

  .nav-links {
    display: flex;
  }

  .action-icons {
    display: flex;
  }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {
  .slider-arrow {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem; /* 30px */
  }

  .stat-item {
    max-width: 18.75rem; /* 300px */
    padding: 2.1875rem 1.5625rem; /* 35px 25px */
  }

  /* Latest News Responsive */
  .latest-news {
    padding: 3.75rem var(--space-xl); /* 60px 20px */
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem; /* 25px */
  }

  .news-grid .news-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 25rem; /* 400px */
  }

  .news-image-container {
    height: 15.625rem; /* 250px */
  }

  .news-content {
    padding: 1.5625rem var(--space-xl); /* 25px 20px */
  }

  .news-title {
    font-size: 1.125rem; /* 18px */
  }

  .news-excerpt {
    font-size: 0.9375rem; /* 15px */
  }

  /* Newsletter Responsive for Tablet */
  .newsletter-section {
    flex-direction: column;
    text-align: center;
    gap: 1.875rem; /* 30px */
    padding: 1.875rem; /* 30px */
  }

  .newsletter-info {
    text-align: center;
    width: 100%;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5625rem; /* 25px */
  }

  .subscribe-form {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .subscribe-form input {
    width: 100%;
    max-width: 25rem; /* 400px */
  }

  .subscribe-form button {
    width: 100%;
    max-width: 12.5rem; /* 200px */
  }
}

/* Mobile - Portrait (600px and below) */
@media (max-width: 600px) {
  .brands-list {
    gap: var(--space-sm); /* 10px*/
  }
  .brand-name {
    margin: 0;
  }
    .testimonials-section {
    min-height: 35.25rem;
  }
  .testimonial-header {
    margin-bottom: 1.125rem;
  }
  .testimonial-paragraph {
    padding: 0 var(--space-xs);
    line-height: 1.5;
  }
  .right-arrow {
    right: -0.125rem;
}
.left-arrow {
    left: -0.125rem;
}
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.875rem; /* 30px */
  }

  .news-grid .news-card:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }

  .news-image-container {
    height: 12.5rem; /* 200px */
  }

  .news-content {
    padding: 1.125rem 0.9375rem; /* 18px 15px */
  }

  .news-title {
    font-size: 1.0625rem; /* 17px */
    -webkit-line-clamp: 2;
  }

  .news-excerpt {
    font-size: 0.875rem; /* 14px */
    -webkit-line-clamp: 3;
  }

  .read-more-link {
    font-size: 0.9375rem; /* 15px */
  }

  .date-badge {
    left: 0.9375rem; /* 15px */
    padding: 0.375rem 0.75rem; /* 6px 12px */
    font-size: 0.75rem; /* 12px */
  }

  /* Back to Top Button for Mobile */
  .back-to-top {
    bottom: var(--space-xl); /* 20px */
    right: var(--space-xl); /* 20px */
    width: 2.8125rem; /* 45px */
    height: 2.8125rem; /* 45px */
    font-size: 1.125rem; /* 18px */
  }
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-links-grid {
    text-align: center;
  }
}

/* End: Additional Media Queries */
