:root {
  /* Brand Colors */
  --primary-color: #901216; /* Festive Saffron: Headings, Buttons, Key Info */
  --secondary-color: #00a99d; /* Regal Teal: Backgrounds, Sub-headings, Icons */
  --accent-color: #ffc107; /* Prosperity Gold: Highlights, Prices, Badges */

  /* Text Colors */
  --text-primary: #2c2c2c; /* Charcoal for readability */
  --text-secondary: #4f4f4f; /* Medium gray */
  --text-muted: #7d7d7d; /* Muted gray */
  --text-original-price: #a6a6a6; /* Neutral gray */
  --offer-price: var(--text-primary); /* Accent gold for offers */

  /* Backgrounds & Surfaces */
  --highlight-bg: #ffe7c6; /* Light saffron wash */
  --category-bg: #e6f9f6; /* Soft teal tint for category blocks */
  --modal-overlay: rgba(0, 0, 0, 0.55);
  --modal-close: var(--primary-color);
  --modal-close-hover: #c94705; /* Darker saffron */

  /* Buttons */
  --button-green: var(--secondary-color);
  --button-green-hover: #008f82; /* Dark teal hover */
  --button-red: var(--primary-color);
  --button-red-hover: #c94705;
  --button-gold: var(--accent-color);
  --button-gold-hover: #e0a800;

  /* Communication */
  --whatsapp-bg: #25d366; /* Keep WhatsApp green */
  --tel-bg: #64b5f6; /* Soft sky blue */

  /* Borders & Shadows */
  --border-light: #ffe0b2; /* Light saffron border */
  --border-medium: #ffcdd2; /* Warm accent border */
  --shadow-light: rgba(245, 95, 10, 0.25); /* Saffron glow */
  --shadow-medium: rgba(0, 0, 0, 0.25);

  /* Base */
  --white: #fffdf9;
  --light-gray: #f9f9f9;
  --button-hover-bg: #fff3e0; /* very light saffron */
  --gradient-bg: #f55f0a;

  /* Slider/Carousel Dots */
  --glc-surface: #fffdf9;
  --glc-shadow: rgba(245, 95, 10, 0.35);
  --glc-dot: #ffe0b2;
  --glc-dot-active: var(--accent-color);
  --glc-dot-ring: rgba(0, 169, 157, 0.4); /* teal accent */
  --glc-dots-panel: rgba(255, 253, 249, 0.85);
}

/* @font-face {
  font-family: "Numans";
  src: url("fonts/Numans-Regular.woff2") format("woff2"),
    url("fonts/Numans-Regular.woff") format("woff"),
    url("fonts/Numans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-gray);
  color: var(--text-primary);
  overflow-x: hidden;
}
main {
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #f8f8f8;
  padding: 0;
  color: #333;
}

.warning-message {
  background-color: #901216;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.main-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 1.5rem;
  /* border-bottom: 2px solid var(--primary-color); */
  background-color: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

#title {
  margin: 0;
  text-align: left;
  color: #d32f2f;
}

/* Carousel Styles */
#glc-carousel-51b7 {
  position: relative;
  width: 100%;
  margin: 10px auto;
  overflow: hidden;
  border-radius: 18px;
  background: var(--glc-surface);
  /* box-shadow: 0 16px 36px var(--glc-shadow); */
  touch-action: pan-y;
}

.glc-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.glc-slide {
  position: relative;
  line-height: 0;
  user-select: none;
  background: #eef1f5;
  flex: 0 0 100%;
}

.glc-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.glc-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--glc-dots-panel);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px var(--glc-shadow);
  z-index: 5;
}

.glc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--glc-dot);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.glc-dot[aria-selected="true"] {
  background: var(--glc-dot-active);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px var(--glc-dot-ring);
}

.glc-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--glc-dot-ring);
}

/* Contact Info */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}
.svg-icons {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 5px;
}
.contact-item a {
  text-decoration: none;
  color: var(--text-primary);
}

/* Controls Section */
.mobile-controls {
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #e5e7eb;
  border: none;
  border-radius: 8px 8px 0 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-icon.rotate {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 16px;
}

.accordion-content.active {
  display: block;
}
.control-item {
  margin-bottom: 16px;
}

#controls-accordion input,
#controls-accordion select,
#controls-desktop input,
#controls-desktop select {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 16px;
}

#controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 16px;
}

/* Products Table */
.products-container {
  width: 100%;
}

.desktop-table {
  display: block;
  text-align: center;
}

.mobile-accordion {
  display: none;
}

.desktop-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border-medium);
}

th {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.category-row td {
  background-color: var(--category-bg);
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

.product-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s;
}

.product-image:hover {
  transform: scale(1.1);
}

.quantity-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.quantity-controls .less-btn {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 4px;
}

.quantity-controls .add-btn {
  width: 40px;
  height: 40px;
  background-color: #016630;
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 4px;
}

.quantity-input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 1em;
}

.highlight-row {
  background-color: var(--highlight-bg);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 50px;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  width: 90%;
  padding: 10px 15px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  height: min-content;
}

.modal-header {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  text-align: center;
}

.close {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

#modal-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.modal-text {
  padding: 20px;
}

.modal-text input {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

#phone-error {
  color: var(--modal-close);
  font-size: 0.9em;
  display: none;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  border-top: 1px solid var(--border-medium);
}

.modal-buttons button {
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
}

#submit-button {
  background-color: var(--whatsapp-bg);
  color: var(--white);
}

#close-form {
  background-color: var(--button-red);
  color: var(--white);
}

.amount-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 600;
}
.amount-summary #saved-amount {
  color: #4c7d44;
  font-size: 20px;
}
.amount-summary #total-amount-modal {
  color: #4f2e2e;
  font-size: 20px;
}

/* Floating Total & Icons */
#floating-total {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background-color: var(--text-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 25px;
  font-weight: 600;
  z-index: 1000;
}

#ok-button {
  /* margin-left: 10px; */
  background-color: var(--white);
  /* color: var(--primary-color); */
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  background: #670003;
  color: #fff;
}

#floating-icons {
  position: fixed;
  bottom: 80px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-button {
  background-color: var(--whatsapp-bg);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.floating-buttonp {
  background-color: rgb(45, 157, 255);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.floating-buttona {
  background-color: white;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  /* Bounce animation add pannuren */
  animation: bounce 1s infinite;
}

/* Keyframes for bounce */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0); /* Original position */
  }
  40% {
    transform: translateY(-15px); /* Up */
  }
  60% {
    transform: translateY(-8px); /* Small bounce */
  }
}

/* Footer */
footer {
  background: var(--gradient-bg);
  color: var(--white);
  padding: 20px 24px 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.company-info .footer-logo img {
  max-width: 160px;
}

.contact-us ul {
  list-style: none;
  padding: 0;
}

.contact-us li {
  margin: 12px 0;
}

.contact-us a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.contact-us svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.follow-us .social-icons {
  display: flex;
  /* justify-content: space-around; */
  gap: 16px;
}

.follow-us a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-primary);
}

.follow-us svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.footer-links a {
  color: var(--white);
  margin: 0 12px;
  text-decoration: none;
}
td[data-label="Original Price"] {
  grid-area: original;
  font-size: 15px;
  color: #d32f2f;
}
td[data-label="Offer Price"] {
  grid-area: offer;
  font-size: 20px;
  color: #4c7d44;
  font-weight: 600;
}
td[data-label="Total"] {
  font-weight: 600;
}
/* --- Go To Top Button Styles --- */
.rupee::before {
  content: "₹";
  margin-right: 2px;
}

/* Responsive Design */
@media (max-width: 767px) {
  main {
    padding: 10px;
  }
  #title {
    font-size: 20px;
  }
  #form-modal-header {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }
  .amount-summary {
    font-size: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: center;
  }
  .main-header-content,
  .contact-info {
    flex-direction: row;
    text-align: left;
    padding: 5px;
  }
  .contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .contact-item span {
    display: none;
  }
  .follow-us .social-icons {
    justify-content: space-around;
  }
  .desktop-table {
    display: none;
  }
  /* Add this code for centering the category row */
  .mobile-accordion .category-row {
    display: flex; /* Use flexbox for simple centering */
    justify-content: center; /* Center horizontally */
    align-items: center;
    padding: 5px;
    background-color: var(--category-bg);
    font-weight: bold;
  }

  .mobile-accordion .category-row td {
    text-align: center;
    border: none; /* Remove the border from the cell */
    width: 100%;
  }
  .mobile-controls,
  .mobile-accordion {
    display: block;
  }
  .mobile-accordion table {
    width: 100%;
  }
  .mobile-accordion tr {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas:
      "name name original"
      "name name offer"
      "content quantity total";
    padding: 5px 10px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
  }
  .mobile-accordion thead {
    display: none;
  }
  .mobile-accordion tr.highlight-row {
    background-color: var(--highlight-bg);
  }
  .mobile-accordion .category-row td {
    text-align: center;
  }

  .mobile-accordion td {
    border: none;
    padding: 3px;
    place-content: center;
  }

  td[data-label="Image"] {
    grid-area: image;
    display: none;
  }
  td[data-label="Name"] {
    grid-area: name;
    font-size: 13px;
    place-content: center;
    text-align: left;
    font-weight: 600;
  }
  td[data-label="Original Price"] {
    grid-area: original;
    font-size: 13px;
    color: #d32f2f;
  }
  td[data-label="Quantity"] {
    grid-area: quantity;
  }
  td[data-label="Content"] {
    grid-area: content;
    text-align: left;
  }
  td[data-label="Total"] {
    grid-area: total;
    font-weight: bold;
  }
  td[data-label="Links"] {
    grid-area: links;
    font-size: 12px;
  }
  td[data-label="Offer Price"] {
    grid-area: offer;
    font-size: 15px;
    color: #4c7d44;
    font-weight: 600;
  }
  .quantity-controls button {
    width: 25px;
    height: 25px;
  }
  .quantity-controls {
    justify-content: center;
  }
  .quantity-input {
    width: 30px;
    height: 25px;
  }
  #floating-total {
    bottom: 10px;
    right: 10px;
    font-size: 20px;
  }
  #ok-button {
    font-size: 15px;
    padding: 10px 15px;
  }
  #floating-icons {
    bottom: 150px;
    left: 20px;
  }
  #goTopBtn {
    bottom: 60px;
    right: 10px;
  }
  #clear-button {
    font-size: 15px;
    padding: 10px;
  }
}

@media (min-width: 768px) {
  .mobile-controls {
    display: none;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    width: 700px;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    width: 1000px;
  }
}

.info-modal {
  display: none; /* Initially hide the modal */
  position: fixed;
  z-index: 1002; /* Higher z-index to appear above other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 50px;
}

.copyright {
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
}

/* Bottom Bar Styles */
#bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 60px; */
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  /* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); */
  z-index: 1000;
  border-top: 1px solid #d3d1d1;
}

.total-display {
  font-size: 20px;
  font-weight: 600;
}

.bottom-bar-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.bottom-bar-buttons button {
  /* margin-left: 10px; */
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  /* border-radius: 20px; */
  font-size: 16px;
  font-weight: 500;
}

#clear-button {
  background-color: #ffffff;
  color: #670003;
  border: 1px solid #670003;
  font-size: 18px;
  border-radius: 5px;
}

/* Responsive styles for the bottom bar */
@media (max-width: 600px) {
  #bottom-bar {
    padding: 10px;
    flex-direction: row;
    justify-content: space-between;
  }

  .total-display {
    font-size: 18px;
  }
  .bottom-bar-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .bottom-bar-buttons button {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* Tutorial Button (?) Styles */
#tutorial-button {
  background-color: #ffc107; /* Prosperity Gold */
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: bounce 1s infinite;
}

/* Keyframes for bounce (already in your CSS, no need to add again) */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/* Video Modal Styles */
#video-modal .modal-content {
  padding: 0;
  background-color: #000; /* Black background for video player */
}

#video-modal video {
  display: block;
  border-radius: 12px;
}

.close-video {
  color: #fff; /* White close button for dark background */
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  z-index: 1002; /* Ensure it's above the video */
}

/* --- VMPS Marketing Ad Styles --- */
.VMPS-ad-container {
  background-color: #fffdf9; /* Light cream background */
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.VMPS-ad-container p {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.VMPS-ad-container p strong {
  color: var(--primary-color);
  font-weight: bold;
}

.VMPS-ad-button {
  background-color: var(--secondary-color); /* Regal Teal */
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.VMPS-ad-button:hover {
  background-color: #008f82; /* Darker teal on hover */
  transform: translateY(-2px);
}

/* --- Image Modal Styles --- */
#image-modal .modal-content {
  max-width: 400px; /* Adjust max-width as needed */
  padding: 0;
  background-color: var(--white);
}

#image-modal .modal-header {
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

#modal-header-text {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

#image-modal .close {
  z-index: 10; /* Ensure close button is on top */
  color: var(--modal-close);
}

#modal-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* This creates the 1:1 ratio */
  object-fit: contain; /* Ensures the whole image fits without stretching */
  display: block;
  padding: 10px;
}

/* Add your new code right here */
.img-bunk {
  display: block;
}
.img-bunk-mo {
  display: none;
}
@media (max-width: 767px) {
  .img-bunk {
    display: none;
  }
  .img-bunk-mo {
    display: block;
    margin-top: 20px;
  }
  .img-none {
    display: none;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-area {
  /* border-bottom: 1px solid #353C46; */
}

.contact-content p {
  font-size: 15px;
  margin: 30px 0 60px;
  position: relative;
}

.contact-content p::after {
  background: #353c46;
  bottom: -30px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 80%;
}

.contact-content h6 {
  /* color: #8b9199; */
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-content span {
  color: #353c47;
  margin: 0 10px;
}

.contact-social {
  margin-top: 30px;
}

.contact-social > ul {
  display: inline-flex;
}

.contact-social ul li a {
  border: 1px solid #ffffff;
  color: #fff;
  display: inline-block;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  transition: all 0.4s ease 0s;
  width: 40px;
}

.contact-social ul li a:hover {
  border: 1px solid #fab702;
  color: #fab702;
}

.contact-content img {
  width: 210px;
  filter: brightness(0) invert(1);
}

section,
footer {
  background: #670003;
  /* color: #868c96; */
}

footer img {
  width: 44px;
}

@media screen and (max-width: 600px) {
  #controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
  }
}
