/* ==========================================================================
   CATALOGO.CSS - ML DNA
   ========================================================================== */

:root {
  /* BRAND COLORS — DO NOT CHANGE */
  --primary: #89646E;
  --primary-hover: #68434F;
  --accent: #C8AEC5;
  --dark-slate: #352A30;
  --whatsapp-green: #25D366;
  
  /* ML STRUCTURAL TOKENS */
  --texto-1: rgba(0,0,0,.9);
  --texto-2: rgba(0,0,0,.55);
  --texto-3: #999;
  --ok: #00a650;
  --divisor: #ededed;
  --fundo-body: #ebebeb;
  --fundo-card: #fff;
  --raio: 6px;
  --raio-input: 2px;
  --sombra-hover: 0 7px 16px 0 rgba(0,0,0,.15), 0 1px 3px 0 rgba(0,0,0,.08);
}

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

body {
  font-family: Roboto, -apple-system, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.29;
  color: var(--texto-1);
  background-color: var(--fundo-body);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: var(--dark-slate);
  color: #fff;
  font-size: 13px;
  padding: 4px 0;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-info .divider {
  color: rgba(255,255,255,.5);
}
.top-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

/* Header */
/* Mobile elements hidden on desktop */
.mobile-drawer,
.mobile-drawer-overlay,
.mobile-menu-btn,
.header-mobile-zap,
.mobile-sub-bar,
.header-mobile-placeholder {
  display: none;
}
.header-top-row {
  display: contents;
}

.main-header {
  background: var(--primary);
  padding: 10px 0;
}
.header-grid {
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  order: 1;
}
.logo-box,
.logo-yellow-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo-img {
  max-height: 84px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.15));
}
.header-logo-texto {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.search-box {
  flex-grow: 1;
  position: relative;
  order: 2;
}
.header-sacola-btn {
  order: 3;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  backdrop-filter: blur(4px);
}
.header-sacola-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.search-box form {
  display: flex;
  height: 40px;
  background: #fff;
  border-radius: var(--raio-input);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  overflow: hidden;
}
.search-box input {
  flex-grow: 1;
  border: none;
  padding: 0 16px;
  font-size: 16px;
  color: var(--texto-1);
  outline: none;
}
.search-clear-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #999999;
  cursor: pointer;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
  line-height: 1;
}
.search-clear-btn:hover {
  color: #333333;
}
.search-clear-btn.hidden {
  display: none !important;
}
.search-red-btn {
  background: transparent;
  border: none;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-2);
  cursor: pointer;
}
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  z-index: 10;
}
.search-results-dropdown.hidden {
  display: none;
}
.stitch-section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.link-limpar-filtro {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 4px 10px;
  background: #fdf6f9;
  border: 1px solid rgba(137, 100, 110, 0.2);
  border-radius: 4px;
  transition: all 0.15s ease;
}
.link-limpar-filtro:hover {
  background: var(--primary);
  color: #fff;
}
.catalogo-vazio {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: var(--raio);
  border: 1px solid var(--divisor);
  margin: 16px 0;
}
.catalogo-vazio-icon {
  font-size: 42px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.catalogo-vazio h3 {
  font-size: 18px;
  color: var(--texto-1);
  margin-bottom: 8px;
}
.catalogo-vazio p {
  font-size: 14px;
  color: var(--texto-2);
  max-width: 400px;
  margin: 0 auto 16px auto;
}
.btn-reset-catalogo {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Categories Nav */
.dept-nav-bar {
  background: #fff;
  border-bottom: 1px solid var(--divisor);
}
.dept-nav-container {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  overflow-x: auto;
}
.dept-item {
  font-size: 14px;
  color: var(--texto-2);
  padding: 14px 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.dept-item strong {
  font-weight: 400;
}
.dept-item.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.dept-item.active strong {
  font-weight: 600;
}
.dept-item:hover {
  color: var(--primary);
}

/* Hero Section */
.hero-stitch-section {
  margin-top: 24px;
}
.hero-stitch-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.hero-stitch-main-hd {
  position: relative;
  border-radius: var(--raio);
  overflow: hidden;
  height: 340px;
  background: var(--dark-slate);
}
.banner-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.02);
  z-index: 1;
}
.banner-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}
.banner-hd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-banner-click {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
}
.banner-overlay-content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 20px 24px;
  pointer-events: none;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.overlay-actions {
  pointer-events: auto;
}
.link-cotar-zap-overlay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .15s ease, background-color .15s ease;
}
.link-cotar-zap-overlay:hover {
  transform: scale(1.03);
  background: #20b858;
}
.stitch-dots-overlay {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.2);
  cursor: pointer;
  padding: 0;
  transition: all .25s ease;
}
.dot:hover,
.dot.active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 6px rgba(255,255,255,.8);
}
.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.25);
  opacity: 0;
  transition: opacity .25s ease, background .2s ease;
  line-height: 1;
}
.hero-stitch-main-hd:hover .banner-nav-btn {
  opacity: 1;
}
.banner-nav-btn:hover {
  background: rgba(0,0,0,.75);
}
.banner-nav-btn.btn-prev {
  left: 14px;
}
.banner-nav-btn.btn-next {
  right: 14px;
}
.hero-stitch-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 340px;
}
.stitch-side-card {
  flex: 1;
  border-radius: var(--raio);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stitch-side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}
.card-pisos {
  background: linear-gradient(135deg, #2D1F27 0%, #4A333F 100%);
}
.card-basico {
  background: linear-gradient(135deg, #3A2632 0%, #5C3D4E 100%);
}
.stitch-side-content {
  flex: 1;
  min-width: 0;
  z-index: 2;
  color: #fff;
}
.stitch-side-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.btn-stitch-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #352A30;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transition: all .2s ease;
}
.btn-stitch-white:hover {
  background: #f8edf3;
  color: #89646E;
  transform: scale(1.04);
}
.stitch-side-thumb {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.stitch-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .3s ease;
}
.stitch-side-card:hover .stitch-side-thumb img {
  transform: scale(1.08);
}

/* Features */
.stitch-features-section {
  padding: 24px 0;
}
.stitch-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  background: var(--fundo-card);
  padding: 16px 24px;
  border-radius: var(--raio);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.stitch-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.feat-icon-box {
  font-size: 20px;
  color: var(--primary);
}
.feat-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-1);
}
.feat-info p {
  font-size: 13px;
  color: var(--texto-2);
}

/* Catalog */
.stitch-products-section {
  padding: 0 0 40px 0;
}
.stitch-section-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--texto-1);
  margin-bottom: 24px;
}
.stitch-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--fundo-card);
  border: 1px solid var(--divisor);
  border-radius: var(--raio);
  overflow: hidden;
  position: relative;
  transition: transform 180ms, box-shadow 180ms;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.product-img-wrap {
  aspect-ratio: 1/1;
  background: #fff;
  padding: 12px;
  position: relative;
  border-bottom: 1px solid var(--divisor);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}
.product-sem-foto {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--divisor);
}
.quick-view-btn {
  display: none;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-category {
  font-size: 12px;
  color: var(--texto-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--texto-1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  margin-bottom: 12px;
}
.product-title a,
.product-title-link {
  color: inherit;
  text-decoration: none;
  display: inline;
  transition: color 0.2s ease;
}
.product-title a:hover,
.product-title-link:hover {
  color: var(--primary);
}

/* Pricing */
.product-pricing {
  margin-bottom: 12px;
}
.price-old {
  font-size: 12px;
  color: var(--texto-3);
  text-decoration: line-through;
  min-height: 16px;
}
.price-current-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-current {
  font-size: 24px;
  font-weight: 600;
  color: var(--texto-1);
  display: flex;
}
.price-cents {
  font-size: 12px;
  line-height: 14px;
  margin-top: 4px;
}
.price-off {
  font-size: 14px;
  font-weight: 500;
  color: var(--ok);
  margin-top: 8px;
}
.price-installments {
  font-size: 12px;
  color: var(--ok);
  margin-top: 2px;
}
.price-consulte {
  font-size: 16px;
  font-weight: 600;
  color: var(--texto-1);
  margin-top: 16px;
}

/* Variants */
.product-variants {
  margin-bottom: 12px;
}
.variant-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.variant-thumb {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid var(--divisor);
  object-fit: cover;
}

/* Buttons */
.btn-add-cart {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--raio);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  transition: background 0.2s;
}
.btn-add-cart:hover {
  background: var(--primary-hover);
}

/* Store info */
.stitch-store-section {
  background: #fff;
  border-top: 1px solid var(--divisor);
  padding: 40px 0;
}
.stitch-store-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
}
.stitch-store-img {
  border-radius: var(--raio);
  overflow: hidden;
}
.stitch-store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stitch-store-info h3 {
  font-size: 20px;
  color: var(--texto-1);
  margin-bottom: 8px;
}
.store-address, .store-phone {
  font-size: 14px;
  color: var(--texto-2);
  margin-bottom: 4px;
}
.store-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.btn-stitch-dark {
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 14px;
}
.btn-stitch-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 14px;
}
.stitch-zap-cards {
  padding-top: 5%;
}
.zap-consultant-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--divisor);
  border-radius: var(--raio);
  margin-top: 5%;
}
.zap-icon-header {
  color: var(--whatsapp-green);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zap-consultant-card strong {
  display: block;
  color: var(--texto-1);
  font-size: 14px;
  line-height: 1.3;
}
.zap-consultant-card span {
  display: block;
  color: var(--texto-2);
  font-size: 13px;
  line-height: 1.3;
}
.zap-consultant-card p {
  color: var(--texto-2);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* Footer */
.stitch-footer {
  background: #fff;
  border-top: 1px solid var(--divisor);
  padding: 36px 0 0 0;
}
.stitch-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.footer-col h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--texto-1);
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
  line-height: 1.35;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--texto-2);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col ul li a:hover {
  color: var(--primary);
}

.payment-badges-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pay-flags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.pay-flag-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid var(--divisor);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--texto-2);
}
.pay-icon-svg {
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
}
.pay-flag-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--texto-2);
  text-transform: uppercase;
}
.payment-cards-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.pay-badge {
  background: var(--fundo-body);
  border: 1px solid var(--divisor);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9.5px;
  color: var(--texto-2);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.stitch-footer-bottom {
  border-top: 1px solid var(--divisor);
  padding: 16px 0;
  background: var(--fundo-body);
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--texto-3);
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-icons a, .rodape-acesso a {
  color: var(--texto-2);
}
.rodape-acesso a:hover {
  color: var(--primary);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  z-index: 100;
  transition: transform 0.2s;
}
.floating-whatsapp:hover {
  transform: scale(1.05);
}

/* Empty Catalog */
.catalogo-vazio {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}
.catalogo-vazio h3 {
  font-size: 20px;
  color: var(--texto-1);
  margin-bottom: 8px;
}
.catalogo-vazio p {
  color: var(--texto-2);
}

/* Quickview Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] {
  display: none;
}
.modal-card {
  background: #fff;
  border-radius: var(--raio);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--fundo-body);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .search-box input {
    font-size: 16px; /* Prevent iOS zoom */
  }
  .search-red-btn {
    min-width: 48px; /* Touch target */
  }
  .hero-stitch-grid {
    grid-template-columns: 1fr;
  }
  .hero-stitch-main-hd {
    max-height: 180px;
  }
  .stitch-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  .product-img-wrap {
    aspect-ratio: 1/1; /* keep 1:1 */
  }
  .stitch-features-grid {
    flex-direction: column;
  }
  .stitch-store-grid {
    grid-template-columns: 1fr;
  }
  .stitch-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .floating-whatsapp {
    width: 48px; height: 48px;
    font-size: 24px;
    bottom: 16px; right: 16px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
}
