/* ============================================
   ROOT VARIABLES
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #df2531;
  --red-65: rgba(223, 37, 49, 0.65);
  --red-45: rgba(223, 37, 49, 0.45);
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --white: #ffffff;
  --grey: #888888;
  --font: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font);
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid rgba(223,37,49,0.3);
  padding: 0 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(223,37,49,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(223,37,49,0.15);
  border: 1px solid rgba(223,37,49,0.4);
  color: #ffcc00;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.red {
  color: var(--red);
}

.hero-tagline {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 35px;
}

/* ============================================
   SEARCH BAR
============================================ */
.search-wrapper {
  position: relative;
  max-width: 550px;
  margin: 0 auto 40px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(223,37,49,0.4);
  border-radius: 50px;
  padding: 14px 24px;
  gap: 12px;
  transition: border-color 0.3s;
}

.search-box:focus-within {
  border-color: var(--red);
}

.search-box i {
  color: var(--red);
  font-size: 16px;
}

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--grey);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(223,37,49,0.3);
  border-radius: 16px;
  overflow: hidden;
  z-index: 100;
  display: none;
}

.search-suggestions.active {
  display: block;
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  font-size: 14px;
}

.suggestion-item:hover {
  background: rgba(223,37,49,0.15);
}

.suggestion-item i {
  color: var(--red);
}

/* ============================================
   HERO STATS
============================================ */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 35px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--red);
}

.stat-label {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================
   HERO BUTTONS
============================================ */
.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--white);
}

/* ============================================
   TRUST BADGES
============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 30px 20px;
  background: var(--dark2);
  border-top: 1px solid rgba(223,37,49,0.2);
  border-bottom: 1px solid rgba(223,37,49,0.2);
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(223,37,49,0.1);
  border: 1px solid rgba(223,37,49,0.25);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.badge i {
  color: var(--red);
}

/* ============================================
   CARS PREVIEW
============================================ */
.cars-preview {
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
}

.view-all {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s;
}

.view-all:hover {
  opacity: 0.7;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.loading {
  color: var(--grey);
  text-align: center;
  padding: 40px;
  grid-column: 1/-1;
}

/* ============================================
   CAR CARD
============================================ */
.car-card {
  background: var(--dark3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223,37,49,0.4);
}

.car-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.car-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.badge-available {
  background: #16a34a;
  color: white;
}

.badge-sold {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 4px;
  border: 3px solid var(--red);
}

.car-card-info {
  padding: 16px;
}

.car-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
}

.car-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-tag {
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--grey);
  font-weight: 600;
}

/* ============================================
   AWARD SECTION
============================================ */
.award-section {
  background: var(--dark2);
  padding: 80px 20px;
  border-top: 1px solid rgba(223,37,49,0.2);
  border-bottom: 1px solid rgba(223,37,49,0.2);
}

.award-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.award-text h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.award-text p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(223,37,49,0.15);
  border: 1px solid rgba(223,37,49,0.4);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.award-badge i {
  color: var(--red);
  font-size: 20px;
}

.award-image img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(223,37,49,0.3);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #050505;
  padding: 60px 20px 0;
  border-top: 1px solid rgba(223,37,49,0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s;
}

.instagram-link:hover {
  opacity: 0.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links a,
.footer-services span {
  display: block;
  color: var(--grey);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-contact p {
  color: var(--grey);
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact p i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--grey);
  transition: color 0.3s;
}

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

.footer-map {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(223,37,49,0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--grey);
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(223,37,49,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 25px;
  }

  .award-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* ============================================
   AWARD CAROUSEL
============================================ */
.award-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(223,37,49,0.3);
}

.carousel-track {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  position: relative;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px 16px 14px;
  font-size: 13px;
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--red);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: var(--dark3);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}

/* ============================================
   DELIVERED CARS SECTION
============================================ */
.delivered-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-sub {
  color: var(--grey);
  font-size: 14px;
  margin-top: 5px;
}

.delivered-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.delivery-card {
  background: var(--dark3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
}

.delivery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223,37,49,0.3);
}

.delivery-slideshow {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.delivery-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
  cursor: pointer;
}

.delivery-img.active {
  opacity: 1;
}

.delivery-prev,
.delivery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}

.delivery-prev:hover,
.delivery-next:hover {
  background: var(--red);
}

.delivery-prev { left: 8px; }
.delivery-next { right: 8px; }

.delivery-caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  transform: scale(0.8);
  transition: transform 0.3s;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--red);
}

/* ============================================
   NAVBAR LOGO SIZE UPDATE
============================================ */
.nav-logo img {
  height: 65px;
  width: auto;
}
/* ============================================
   LIGHTBOX NAVIGATION
============================================ */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: var(--red);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
/* ============================================
   NAV ADMIN BUTTON
============================================ */
.nav-admin-btn {
  background: rgba(223,37,49,0.15);
  border: 1.5px solid rgba(223,37,49,0.4);
  color: var(--red) !important;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.nav-admin-btn:hover {
  background: var(--red) !important;
  color: white !important;
}
/* ============================================
   DELIVERY CAROUSEL
============================================ */
.delivery-carousel-wrapper {
  position: relative;
  max-width: 600px;
  margin: 30px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(223,37,49,0.2);
}

.delivery-track {
  position: relative;
  width: 100%;
}

.delivery-slide {
  display: none;
  position: relative;
}

.delivery-slide.active {
  display: block;
}

.delivery-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
}

.delivery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px 16px 14px;
  font-size: 13px;
  font-weight: 600;
}

.delivery-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
}

.delivery-carousel-btn:hover {
  background: var(--red);
}

.delivery-carousel-btn.prev { left: 10px; }
.delivery-carousel-btn.next { right: 10px; }

.delivery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: var(--dark3);
}

.delivery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.delivery-dot.active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}

/* ============================================
   SEE ALL BUTTON
============================================ */
.btn-see-all {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-see-all:hover {
  background: var(--red);
  color: white;
}

/* ============================================
   DELIVERY MODAL
============================================ */
.delivery-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.delivery-modal.active {
  opacity: 1;
  pointer-events: all;
}

.delivery-modal-content {
  background: var(--dark2);
  border: 1px solid rgba(223,37,49,0.2);
  border-radius: 20px;
  width: 90vw;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 25px;
}

.delivery-modal-content::-webkit-scrollbar {
  width: 4px;
}

.delivery-modal-content::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

.delivery-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.delivery-modal-header h3 {
  font-size: 20px;
  font-weight: 800;
}

.delivery-modal-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.delivery-modal-close:hover {
  background: var(--red);
}

.delivery-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.delivery-modal-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.delivery-modal-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.delivery-modal-item img:hover {
  transform: scale(1.03);
}

.delivery-modal-caption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--grey);
}

/* ============================================
   MOBILE
============================================ */
@media (max-width: 768px) {
  .delivery-carousel-wrapper {
    border-radius: 12px;
  }

  .delivery-modal-content {
    width: 95vw;
    padding: 15px;
  }

  .delivery-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}