/* === MODALU — Test Homepage Styles === */
:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #6b6b6b;
  --color-light: #f5f5f5;
  --color-border: #e5e5e5;
  --color-dark: #000000;
  --color-accent: #111111;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 0;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
  --transition: 0.25s ease;
  /* Fallback bar height for first paint, before ticker-sync.js measures the real
     height and overwrites this var — keeps header/hero from jumping on load. */
  --ticker-h: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-dark);
  color: #ffffff;
  border-color: var(--color-dark);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--color-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-secondary:hover {
  background: var(--color-dark);
  color: #ffffff;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* === Live Aluminium Price Ticker ===
   Fixed slim black bar at the very top of every page.
   The iframe loads aluminium-ticker.php, which renders a self-contained,
   responsive price strip (current price + 24h/7d/30d change + mini chart).
   We use a fixed bar height so the fixed header and hero offset below are
   always in sync — no JS height-sync needed. */
.price-ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 76px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.price-ticker-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

body.has-ticker .site-header {
  top: 76px;
}

body.has-ticker .hero {
  padding-top: calc(8rem + 76px);
}

@media (max-width: 900px) {
  .price-ticker-bar {
    height: 68px;
  }

  body.has-ticker .site-header {
    top: 68px;
  }

  body.has-ticker .hero {
    padding-top: calc(8rem + 68px);
  }
}

@media (max-width: 680px) {
  .price-ticker-bar {
    height: 92px;
  }

  body.has-ticker .site-header {
    top: 92px;
  }

  body.has-ticker .hero {
    padding-top: calc(8rem + 92px);
  }
}

/* === Header === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-mark {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}

.nav-list a:hover {
  color: var(--color-dark);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '▾';
  margin-left: 0.35rem;
  font-size: 0.7rem;
}

.dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text);
}

.dropdown li a:hover {
  background: var(--color-light);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #444 0%, #111 100%);
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  opacity: 0.9;
  margin: 0 0 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-actions .btn-primary {
  background: #ffffff;
  color: var(--color-dark);
  border-color: #ffffff;
}

.hero-actions .btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.hero-actions .btn-secondary:hover {
  background: #ffffff;
  color: var(--color-dark);
  border-color: #ffffff;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* === Sections === */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-muted);
  font-weight: 300;
  margin: 0;
}

/* === Products === */
.products {
  background: var(--color-bg);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-media {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: #e0e0e0;
}

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.product-body p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.link-arrow {
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* === USPs === */
.usps {
  background: var(--color-light);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.usp-card {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.usp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
}

.usp-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.usp-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

/* === Process === */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step {
  padding: 2rem;
  border-top: 2px solid var(--color-dark);
  background: #ffffff;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

/* === CTA Section === */
.cta-section {
  background: var(--color-dark);
  color: #ffffff;
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.cta-text p {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: var(--color-dark);
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

/* === Contact === */
.contact {
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info p {
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}

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

.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-list li strong {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact-list li a,
.contact-list li span {
  font-size: 1rem;
  color: var(--color-text);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--color-text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-dark);
}

.form-group textarea {
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

/* === Footer === */
.site-footer {
  background: var(--color-light);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-mark {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-claim {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer-col a:hover {
  color: var(--color-dark);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-legal p {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links a:hover {
  color: var(--color-dark);
}

/* === Page Header === */
.page-header {
  background: var(--color-dark);
  color: #ffffff;
  padding: 10rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

/* === Alufile Ausführungsbeispiele === */
.gallery-section {
  background: var(--color-light);
}

.alufile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.alufile-card {
  margin: 0;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.alufile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.alufile-card figcaption {
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

@media (max-width: 900px) {
  .alufile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .alufile-grid {
    grid-template-columns: 1fr;
  }
}

/* === Content Layout === */
.content-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.content-main h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-aside {
  align-self: start;
}

.aside-box {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
}

.aside-box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.aside-box p {
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-dark);
  font-weight: 600;
}

/* === Product Detail === */
.product-detail .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.detail-row.reverse .detail-media {
  order: 2;
}

.detail-media {
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-light);
}

.detail-text h2 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.detail-text p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.detail-text ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--color-text);
}

.detail-text li {
  margin-bottom: 0.4rem;
}

/* === Downloads === */
.download-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.download-item {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.download-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.download-item p {
  color: var(--color-muted);
  margin: 0;
  font-size: 0.95rem;
}

.file-info {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.note {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.note a {
  text-decoration: underline;
}

/* === Language Switcher === */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 1.5rem;
}

.lang-switch a {
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.lang-switch a:hover,
.lang-switch a.active {
  border-color: var(--color-dark);
}

/* === Live Aluminium Price === */
.alu-price {
  background: var(--color-light);
}

.alu-price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.alu-price-info h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.alu-price-info p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

.alu-price-value {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-dark);
}

.alu-price-value span {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 400;
}


/* === FAQ === */
.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  color: var(--color-muted);
  margin: 0.75rem 0 0;
}

/* === Legal Pages === */
.legal h2 {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1.5rem 0 0.5rem;
}

.legal p {
  color: var(--color-text);
  margin: 0 0 1rem;
}

.legal .note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* === Contact Form Extras === */
.hidden-field {
  display: none;
}

.checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem !important;
}

.checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
}

.checkbox label a {
  text-decoration: underline;
}

.form-result {
  text-align: center;
  padding: 3rem 0;
}

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.alert-error {
  background: #fff5f5;
  border-color: #ffcccc;
  color: #cc0000;
}

.alert-error ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* === Responsive === */
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }

  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
  }

  .content-columns {
    grid-template-columns: 2fr 1fr;
  }

  .detail-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .detail-row.reverse .detail-media {
    order: 2;
  }

  .detail-row.reverse .detail-text {
    order: 1;
  }

  .download-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .alu-price-box {
    padding: 2.5rem;
  }
}

@media (max-width: 899px) {
  .nav-open .main-nav {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
  }

  .nav-open .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-open .nav-list a {
    display: block;
    padding: 0.9rem 5%;
  }

  .nav-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .nav-open .dropdown li a {
    padding-left: 10%;
    font-size: 0.85rem;
  }
}
