/* ═══ VERDON GÎTES — SHARED STYLES ═══
   Chargé par toutes les pages.
   Contient : variables CSS, reset, animations, nav complète, footer,
   révéal scroll, boutons, utilitaires, responsive global.
   Chaque page charge en plus home.css, lavande.css, etc.
   ═══════════════════════════════════════════════════════════════════ */

/* ═══ VERDON GITES - SHARED STYLES ═══ */
:root {
  --cyan: #2ec4c4;
  --cyan-deep: #0e7d88;
  --cyan-soft: rgba(46, 196, 196, 0.08);
  --cyan-bright: #5ee8e8;
  --lavande: #8b72b8;
  --lavande-soft: rgba(139, 114, 184, 0.12);
  --lavande-bg: #f5f1fa;
  --gold: #c8a96e;
  --gold-soft: rgba(200, 169, 110, 0.12);
  --sage: #5a8a6a;
  --sage-deep: #3d6b4e;
  --sage-soft: rgb(232, 242, 236, 0.12);
  --stone: #f7f2ea;
  --stone-warm: #f3ede3;
  --stone-light: #faf7f2;
  --stone-800: #1c1917;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --text: #2d2520;
  --text-mid: #6e5f52;
  --text-light: #8a7b70;
  --cream: #fdfbf7;
  --warm-white: #faf8f5;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* SVG Icon base */
.icon-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}
.icon-svg-lg {
  width: 28px;
  height: 28px;
}
.icon-svg-xl {
  width: 36px;
  height: 36px;
}

/* ═══════════════════════════════════════════════════════════
   NAV — styles complets
   Ordre : base → brand → links → dropdown → mobile burger
           → drawer → responsive
════════════════════════════════════════════════════════════ */

/* ── Base ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.5s,
    box-shadow 0.5s;
  background: transparent;
}

.nav.scrolled {
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Brand / logo ─────────────────────────────────────────── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-brand-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--stone-800);
  transition: color 0.3s;
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: 0.72rem;
  color: var(--stone-500);
  transition: color 0.3s;
  line-height: 1.2;
}

/* Textes blancs sur hero transparent */
.nav:not(.scrolled) .nav-brand-text {
  color: white;
}
.nav:not(.scrolled) .nav-brand-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Links niveau 1 ───────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone-500);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s,
    color 0.25s;
}

.nav:not(.scrolled) .nav-links > li > a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links > li > a:hover {
  color: var(--cyan-deep);
}

.nav:not(.scrolled) .nav-links > li > a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.nav-links > li > a.active {
  background: rgba(46, 196, 196, 0.1);
  color: var(--cyan);
}

/* Chevron */
.nav-chevron {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav-links > li:hover .nav-chevron {
  transform: rotate(180deg);
}

/* CTA "Réserver" */
.nav-cta-wrap {
  margin-left: 10px;
}

.nav-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--cyan);
  color: white !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(46, 196, 196, 0.28);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.15s;
}

.nav-cta:hover {
  background: var(--cyan-deep);
  box-shadow: 0 4px 16px rgba(46, 196, 196, 0.38);
  transform: translateY(-1px);
}

/* ── Dropdown ─────────────────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: white;
  border-radius: 18px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 14px 8px 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.22s;
  z-index: 100;
}

/* Pont invisible entre le lien et le dropdown */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-links > li:hover .nav-dropdown,
.nav-links > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown large (2 colonnes) */
.nav-dropdown-wide {
  min-width: 500px;
  left: 0;
  transform: translateX(-20%) translateY(10px);
}

.nav-links > li:hover .nav-dropdown-wide,
.nav-links > li:focus-within .nav-dropdown-wide {
  transform: translateX(-20%) translateY(0);
}

.nav-dd-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* Items dans le dropdown */
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.nav-dropdown a:hover {
  background: var(--cyan-soft);
  color: var(--cyan-deep);
}

/* Icône carrée dans le dropdown */
.nav-dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dd-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddi-cyan {
  background: var(--cyan-soft);
  color: var(--cyan-deep);
}
.ddi-lav {
  background: var(--lavande-soft);
  color: var(--lavande);
}
.ddi-gold {
  background: var(--gold-soft);
  color: var(--gold);
}
.ddi-stone {
  background: rgba(120, 113, 108, 0.08);
  color: var(--stone-500);
}

/* Label de section */
.nav-dd-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone-400);
  padding: 6px 10px 2px;
}

/* Nom + description dans la fiche gîte */
.nav-dd-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.nav-dd-desc {
  display: block;
  font-size: 0.74rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* Séparateur */
.nav-dd-sep {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 6px 4px;
}

/* ── Bouton burger mobile ──────────────────────────────────── */
.nav-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--stone-800);
  transition: color 0.3s;
}

.nav:not(.scrolled) .nav-mobile {
  color: white;
}

.nav-mobile:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* ── Drawer mobile ────────────────────────────────────────── */
/* Overlay */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.nav-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Panneau */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  background: var(--cream, #fdfbf7);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer.open {
  transform: translateX(0);
}

/* Bouton fermeture */
.nav-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--stone-500);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-drawer-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Corps */
.nav-drawer-body {
  padding: 3.5rem 1.25rem 2rem;
}

/* Liens */
.nav-drawer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 400;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-drawer a:hover {
  background: var(--cyan-soft);
  color: var(--cyan-deep);
}

.nav-drawer a small {
  font-size: 0.75rem;
  color: var(--stone-400);
  font-weight: 400;
}

/* Titre de section */
.nav-drawer h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--stone-400);
  margin: 1.2rem 0 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Lien mis en valeur (tarifs) */
.nav-drawer-highlight {
  color: var(--cyan) !important;
  font-weight: 600 !important;
}

/* Bloc CTA bas de drawer */
.nav-drawer-cta-wrap {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-drawer-cta {
  display: block;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Réduire padding sur tablette */
  .nav-links > li > a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  /* Masquer nav desktop, afficher burger */
  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }
} /* Section separators via CSS pseudo-elements — no extra HTML */
.gites {
  position: relative;
}
.gites::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 196, 0.2) 30%,
    rgba(46, 196, 196, 0.2) 70%,
    transparent
  );
}
.parallax {
  position: relative;
}
.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan),
    var(--lavande),
    var(--cyan),
    transparent
  );
  z-index: 3;
  opacity: 0.35;
}
.parallax::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan),
    var(--lavande),
    var(--cyan),
    transparent
  );
  z-index: 3;
  opacity: 0.35;
}
.region {
  position: relative;
}
.region::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 110, 0.22) 30%,
    rgba(200, 169, 110, 0.22) 70%,
    transparent
  );
}
.testi {
  position: relative;
}
.testi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 110, 0.18) 30%,
    rgba(200, 169, 110, 0.18) 70%,
    transparent
  );
}
.cta {
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 196, 0.18) 30%,
    rgba(46, 196, 196, 0.18) 70%,
    transparent
  );
}
.seo {
  position: relative;
}
.seo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 196, 0.12) 30%,
    rgba(46, 196, 196, 0.12) 70%,
    transparent
  );
}

/* ═══ SHARED SECTION STYLES ═══ */
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
}
.sec-line {
  height: 1px;
  width: 40px;
  background: rgba(46, 196, 196, 0.35);
}
.sec-dot {
  color: var(--cyan);
  font-size: 14px;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.sec-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ═══ CTA BOX (reusable) ═══ */
.cta-box {
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.cta-left {
  position: relative;
  z-index: 2;
}
.cta-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-left > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cta-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  color: #b3f0ee;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--cyan-deep);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cta-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  transition: background 0.3s;
}
.price-row:hover {
  background: rgba(255, 255, 255, 0.16);
}
.price-season {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.price-val {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.price-unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--stone-800);
  color: white;
  padding: 4rem 1.5rem 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.footer-brand-icon {
  color: #22d3ee;
  width: 44px;
  height: 44px;
}
.footer-brand-name {
  font-weight: 600;
  font-size: 1.15rem;
}
.footer-brand-sub {
  font-size: 0.82rem;
  color: var(--stone-400);
}
.footer-desc {
  color: var(--stone-400);
  margin-bottom: 1.5rem;
  font-size: 0.84rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--stone-400);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: #22d3ee;
}
.footer-contact {
  color: var(--stone-400);
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--stone-500);
}
.footer-bottom a {
  color: var(--stone-500);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--stone-400);
}

/* Buttons */
.btn-cyan {
  padding: 14px 30px;
  background: var(--cyan);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(46, 196, 196, 0.4);
  transition: 0.3s;
  display: inline-block;
}
.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46, 196, 196, 0.5);
  background: var(--cyan-deep);
}
.btn-ghost {
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline {
  padding: 13px 26px;
  border: 1.5px solid var(--cyan);
  color: var(--cyan-deep);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--cyan-soft);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-mobile {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .cta-box {
    grid-template-columns: 1fr !important;
  }
}

/* ═══ RESPONSIVE GLOBAL ═══ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-mobile {
    display: block !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .cta-box {
    grid-template-columns: 1fr !important;
  }
}
