/*
 * agx-core.css - Avant-Garde Pools & Spas Global AGX Core
 * Prefix: agx-
 * Scope: Global header, mobile menu, mobile action bar, and shared AGX tokens
 * Phase: 2 core architecture
 */

:root {
  --agx-bg-primary: #DCEAF2;
  --agx-bg-secondary: #FFFFFF;
  --agx-color-navy: #17324D;
  --agx-color-gold: #C9A96B;
  --agx-text-primary: #223548;
  --agx-text-secondary: #6E7D8B;
  --agx-font-heading: 'Satoshi', sans-serif;
  --agx-font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--agx-font-body) !important;
  color: var(--agx-text-primary) !important;
  background: var(--agx-bg-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body.agx-menu-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   HEADER SYSTEM (REFINED HEIGHT & ALIGNMENT)
   ============================================= */
.agx-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: rgba(220, 236, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: height 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  max-width: 100%;
  padding: 0;
}

.agx-site-header.scrolled {
  height: 90px;
  background: rgba(252, 252, 250, 0.96);
  box-shadow: 0 14px 40px rgba(23, 50, 77, 0.08);
  border-bottom-color: rgba(23, 50, 77, 0.1);
}

.agx-header-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(36px, 3.5vw, 72px);
  padding-inline: clamp(32px, 4vw, 72px);
}

/* LOGO */
.agx-brand {
  align-self: center;
  justify-self: start;
  display: flex;
  align-items: center;
  width: clamp(92px, 6vw, 116px);
}

.agx-logo {
  width: 100%;
  max-height: 88px;
  object-fit: contain;
  display: block;
}

/* NAVIGATION */
.agx-nav-links {
  position: static;
  justify-self: center;
  display: flex;
  gap: clamp(28px, 2.5vw, 56px);
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  transform: none;
}

.agx-nav-links > a, .agx-nav-dropdown > a {
  font-family: var(--agx-font-heading);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--agx-color-navy);
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 0;
  white-space: nowrap;
}

.agx-nav-dropdown { position: relative; display: flex; align-items: center; }
.agx-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(23,50,77,0.05);
  box-shadow: 0 10px 30px rgba(23,50,77,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: all 0.3s ease;
}
.agx-nav-dropdown:hover .agx-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.agx-dropdown-menu a {
  font-family: var(--agx-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--agx-text-primary);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.agx-dropdown-menu a:hover { color: var(--agx-color-gold); }

/* ACTIONS */
.agx-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(32px, 2.5vw, 48px);
  min-width: max-content;
  white-space: nowrap;
}

.agx-header-phone {
  font-family: var(--agx-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;
  color: var(--agx-color-navy);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.agx-header-phone:hover {
  color: var(--agx-color-gold);
}

.agx-header-cta {
  font-family: var(--agx-font-body);
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--agx-color-navy);
  border: 2px solid var(--agx-color-navy);
  border-radius: 4px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(34px, 2.5vw, 54px);
  background: transparent;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
  width: clamp(240px, 20vw, 410px);
  min-width: 240px;
}

.agx-header-cta:hover {
  background: var(--agx-color-navy);
  color: #ffffff;
  border-color: var(--agx-color-navy);
}

.agx-hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0 4px;
  background: transparent;
  border: 0;
  color: var(--agx-color-navy);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.agx-hamburger span {
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: width 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.agx-hamburger span:nth-child(2) {
  width: 23px;
}

.agx-hamburger:hover,
.agx-hamburger:focus-visible {
  color: var(--agx-color-gold);
}

body.agx-menu-open .agx-hamburger span:nth-child(1) {
  width: 36px;
  transform: translateY(9px) rotate(45deg);
}

body.agx-menu-open .agx-hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

body.agx-menu-open .agx-hamburger span:nth-child(3) {
  width: 36px;
  transform: translateY(-9px) rotate(-45deg);
}

.agx-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  max-height: calc(100svh - 96px);
  overflow: auto;
  padding: 22px clamp(20px, 4vw, 40px) 28px;
  background: rgba(220, 236, 244, 0.96);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 54px rgba(23, 50, 77, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.agx-mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 50, 77, 0.08);
  font-family: var(--agx-font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--agx-color-navy);
}

.agx-mobile-dropdown {
  border-bottom: 1px solid rgba(23, 50, 77, 0.08);
}

.agx-mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--agx-color-navy);
  font-family: var(--agx-font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-align: left;
  text-transform: uppercase;
}

.agx-mobile-dropdown-toggle em {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.24s ease;
}

.agx-mobile-dropdown-toggle:hover,
.agx-mobile-dropdown-toggle:focus-visible {
  color: var(--agx-color-gold);
}

.agx-mobile-dropdown.is-open .agx-mobile-dropdown-toggle em {
  transform: translateY(3px) rotate(225deg);
}

.agx-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.agx-mobile-dropdown.is-open .agx-mobile-submenu {
  max-height: 420px;
}

.agx-mobile-submenu a {
  padding: 11px 0 11px 16px;
  border-bottom: 0;
  color: rgba(23, 50, 77, 0.78);
  font-size: 12px;
  letter-spacing: 1.25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.agx-mobile-dropdown.is-open .agx-mobile-submenu a {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.agx-mobile-menu a:hover,
.agx-mobile-menu a:focus-visible {
  color: var(--agx-color-gold);
}

.agx-mobile-menu-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.agx-mobile-menu-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--agx-color-navy);
  font-family: var(--agx-font-body);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-align: center;
}

.agx-mobile-menu-actions .agx-mobile-cta {
  background: var(--agx-color-navy);
  color: #ffffff;
}

.agx-mobile-menu-actions .agx-mobile-phone {
  color: var(--agx-color-navy);
}

.agx-mobile-action-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 990;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 77, 0.1);
  border-radius: 6px;
  background: rgba(252, 252, 250, 0.95);
  box-shadow: 0 18px 48px rgba(23, 50, 77, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.agx-mobile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 12px;
  font-family: var(--agx-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.agx-mobile-action--call {
  background: rgba(255, 255, 255, 0.86);
  color: var(--agx-color-navy);
}

.agx-mobile-action--consult {
  background: var(--agx-color-navy);
  color: #ffffff;
}

.agx-mobile-action:active {
  transform: scale(0.985);
}

/* =============================================
   RESPONSIVE BREAKPOINTS (ALIGNMENT LOCK)
   ============================================= */

@media (max-width: 1365px) and (min-width: 1180px) {
  .agx-header-inner {
    width: 100%;
    max-width: none;
    grid-template-columns: auto minmax(0, 1fr) max-content;
    gap: 24px;
    padding-inline: clamp(28px, 3vw, 48px);
  }
  .agx-brand { width: clamp(88px, 6vw, 104px); }
  .agx-nav-links { gap: clamp(18px, 1.6vw, 28px); }
  .agx-nav-links > a, .agx-nav-dropdown > a { font-size: clamp(13px, 0.95vw, 15px); letter-spacing: 1.8px; }
  .agx-header-actions { gap: clamp(18px, 1.6vw, 24px); }
  .agx-header-phone { font-size: 15px; letter-spacing: 1.2px; }
  .agx-header-cta { width: auto; min-width: 240px; padding: 0 28px; font-size: 13px; letter-spacing: 2.2px; }
}

@media (max-width: 1179px) and (min-width: 1024px) {
  .agx-header-inner {
    width: 100%;
    max-width: none;
    grid-template-columns: auto minmax(0, 1fr) max-content;
    gap: 22px;
    padding-inline: clamp(24px, 3vw, 40px);
  }
  .agx-brand { width: 92px; }
  .agx-header-phone { display: none !important; }
  .agx-nav-links { gap: clamp(16px, 1.7vw, 24px); }
  .agx-nav-links > a, .agx-nav-dropdown > a { font-size: 13px; letter-spacing: 1.6px; }
  .agx-header-cta { height: 56px; width: auto; min-width: 240px; padding: 0 24px; font-size: 12px; letter-spacing: 2.2px; }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
  .agx-site-header { height: 80px; }
  .agx-header-inner {
    width: 100%;
    max-width: none;
    grid-template-columns: auto auto;
    justify-content: stretch;
    gap: 16px;
    padding-inline: clamp(20px, 4vw, 40px);
  }
  .agx-brand { width: clamp(92px, 16vw, 118px); }
  .agx-nav-links { display: none !important; }
  .agx-header-phone { display: none !important; }
  .agx-header-cta { display: none !important; }
  .agx-hamburger { display: flex; margin-left: 0; }
  .agx-header-actions { justify-self: end; gap: 0; }
  .agx-mobile-menu { display: block; }
  .agx-mobile-action-bar { display: grid; }
  body.agx-menu-open .agx-site-header { background: rgba(220, 236, 244, 0.96); }
  body.agx-menu-open .agx-mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .agx-site-header { height: 85px; }
  .agx-site-header.scrolled { height: 85px; }
  .agx-header-inner {
    width: 100%;
    max-width: none;
    padding-left: 6px;
    padding-right: 14px;
  }
  .agx-brand { width: clamp(72px, 23vw, 94px); }
  .agx-header-actions { justify-self: end; }
  .agx-hamburger { margin-right: -4px; }
  .agx-mobile-menu {
    max-height: calc(100svh - 84px);
    padding: 18px 20px 24px;
  }
  .agx-mobile-menu-actions {
    grid-template-columns: 1fr;
  }
  .agx-mobile-action-bar {
    left: 14px;
    right: 14px;
    min-height: 56px;
    border-radius: 6px;
  }
  .agx-mobile-action {
    min-height: 56px;
    font-size: 11px;
    letter-spacing: 1.1px;
  }
}

:root {
  --ag-header-height: 100px;
}

@media (max-width: 1023px) {
  :root {
    --ag-header-height: 84px;
  }
}

/* =============================================
   AUTHORITATIVE FIXED HEADER OFFSET RULE
   ============================================= */
.ag-has-fixed-header-offset,
.ag-generic-page,
.ag-about-page,
.ag-services-page,
.ag-service-areas-page,
.ag-portfolio-page,
.ag-contact-page,
.ag-cost-page-main,
.agx-guide,
.agx-destination {
  padding-top: var(--ag-header-height);
}

/* =============================================
   AUTHORITATIVE GLOBAL FOOTER SYSTEM
   ============================================= */
.ag-site-footer,
.agx-site-footer,
.ag-site-footer.agx-site-footer {
  margin: 0 !important;
  padding: clamp(56px, 6vw, 88px) 0 28px !important;
  background: linear-gradient(180deg, #eef7fb 0%, #fcfcfa 100%) !important;
  color: var(--agx-color-navy, #10293f) !important;
  border-top: 1px solid rgba(23, 50, 77, 0.1) !important;
}

.ag-site-footer .ag-container,
.agx-site-footer .ag-container,
.ag-site-footer.agx-site-footer .ag-container {
  width: min(1680px, calc(100% - clamp(32px, 6vw, 96px))) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.ag-site-footer .ag-footer-grid,
.agx-site-footer .ag-footer-grid,
.ag-site-footer.agx-site-footer .ag-footer-grid {
  display: grid !important;
  grid-template-columns: minmax(260px, 1.2fr) minmax(230px, 1fr) minmax(170px, 0.75fr) minmax(180px, 0.8fr) minmax(190px, 0.85fr) !important;
  align-items: start !important;
  gap: clamp(28px, 3.2vw, 60px) !important;
  padding-bottom: clamp(34px, 4vw, 52px) !important;
  border-bottom: 1px solid rgba(23, 50, 77, 0.1) !important;
}

.ag-site-footer .ag-footer-brand,
.agx-site-footer .ag-footer-brand,
.ag-site-footer.agx-site-footer .ag-footer-brand {
  display: grid !important;
  gap: 22px !important;
}

.ag-site-footer .ag-footer-logo,
.agx-site-footer .ag-footer-logo,
.ag-site-footer.agx-site-footer .ag-footer-logo {
  display: inline-flex !important;
  width: auto !important;
  max-width: 140px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ag-site-footer .ag-footer-logo img,
.agx-site-footer .ag-footer-logo img,
.ag-site-footer.agx-site-footer .ag-footer-logo img {
  display: block !important;
  width: 132px !important;
  height: auto !important;
}

.ag-site-footer p,
.agx-site-footer p,
.ag-site-footer.agx-site-footer p {
  margin: 0 !important;
  color: rgba(23, 50, 77, 0.7) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.ag-site-footer .ag-footer-contact,
.agx-site-footer .ag-footer-contact,
.ag-site-footer.agx-site-footer .ag-footer-contact {
  display: grid !important;
  gap: 8px !important;
}

.ag-site-footer .ag-footer-contact a,
.ag-site-footer .ag-footer-contact span,
.agx-site-footer .ag-footer-contact a,
.agx-site-footer .ag-footer-contact span,
.ag-site-footer.agx-site-footer .ag-footer-contact a,
.ag-site-footer.agx-site-footer .ag-footer-contact span {
  display: block !important;
  margin: 0 !important;
  color: var(--agx-color-gold, #c8a96b) !important;
  font-weight: 850 !important;
  text-decoration: none !important;
}

.ag-site-footer h2,
.agx-site-footer h2,
.ag-site-footer.agx-site-footer h2 {
  margin: 0 0 18px !important;
  color: var(--agx-color-navy, #10293f) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.ag-site-footer a,
.agx-site-footer a,
.ag-site-footer.agx-site-footer a {
  display: block !important;
  margin: 0 0 11px !important;
  color: rgba(23, 50, 77, 0.68) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.42 !important;
  text-decoration: none !important;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease !important;
}

.ag-site-footer a:hover,
.ag-site-footer a:focus-visible,
.agx-site-footer a:hover,
.agx-site-footer a:focus-visible,
.ag-site-footer.agx-site-footer a:hover,
.ag-site-footer.agx-site-footer a:focus-visible {
  color: var(--agx-color-gold, #c8a96b) !important;
}

.ag-site-footer .ag-footer-social-heading,
.agx-site-footer .ag-footer-social-heading,
.ag-site-footer.agx-site-footer .ag-footer-social-heading {
  margin-top: 30px !important;
}

.ag-site-footer .ag-footer-social-icons,
.agx-site-footer .ag-footer-social-icons,
.ag-site-footer.agx-site-footer .ag-footer-social-icons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 0 28px !important;
}

.ag-site-footer .ag-footer-social-icons a,
.agx-site-footer .ag-footer-social-icons a,
.ag-site-footer.agx-site-footer .ag-footer-social-icons a {
  display: inline-flex !important;
  width: auto !important;
  min-width: 40px !important;
  height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 11px !important;
  border: 1px solid rgba(23, 50, 77, 0.16) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--agx-color-navy, #10293f) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

.ag-site-footer .ag-footer-social-icons a:hover,
.ag-site-footer .ag-footer-social-icons a:focus-visible,
.agx-site-footer .ag-footer-social-icons a:hover,
.agx-site-footer .ag-footer-social-icons a:focus-visible,
.ag-site-footer.agx-site-footer .ag-footer-social-icons a:hover,
.ag-site-footer.agx-site-footer .ag-footer-social-icons a:focus-visible {
  border-color: var(--agx-color-gold, #c8a96b) !important;
  background: var(--agx-color-navy, #10293f) !important;
  color: #fff !important;
}

.ag-site-footer .ag-footer-bottom,
.agx-site-footer .ag-footer-bottom,
.ag-site-footer.agx-site-footer .ag-footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding-top: 24px !important;
}

.ag-site-footer .ag-footer-bottom p,
.ag-site-footer .ag-footer-bottom nav a,
.agx-site-footer .ag-footer-bottom p,
.agx-site-footer .ag-footer-bottom nav a,
.ag-site-footer.agx-site-footer .ag-footer-bottom p,
.ag-site-footer.agx-site-footer .ag-footer-bottom nav a {
  color: rgba(23, 50, 77, 0.62) !important;
  font-size: 13px !important;
}

.ag-site-footer .ag-footer-bottom nav,
.agx-site-footer .ag-footer-bottom nav,
.ag-site-footer.agx-site-footer .ag-footer-bottom nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
}

.ag-site-footer .ag-footer-bottom nav a,
.agx-site-footer .ag-footer-bottom nav a,
.ag-site-footer.agx-site-footer .ag-footer-bottom nav a {
  margin: 0 !important;
}

@media (max-width: 1180px) {
  .ag-site-footer .ag-footer-grid,
  .agx-site-footer .ag-footer-grid,
  .ag-site-footer.agx-site-footer .ag-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .ag-site-footer,
  .agx-site-footer,
  .ag-site-footer.agx-site-footer {
    padding: 52px 0 104px !important;
  }

  .ag-site-footer .ag-container,
  .agx-site-footer .ag-container,
  .ag-site-footer.agx-site-footer .ag-container {
    width: min(100% - 28px, 680px) !important;
  }

  .ag-site-footer .ag-footer-grid,
  .agx-site-footer .ag-footer-grid,
  .ag-site-footer.agx-site-footer .ag-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .ag-site-footer .ag-footer-bottom,
  .agx-site-footer .ag-footer-bottom,
  .ag-site-footer.agx-site-footer .ag-footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

