/* ═══════════════════════════════════════════════
   Quite Contrary Cafe
   Terracotta · Cream · Coffee First
   ═══════════════════════════════════════════════ */

:root {
  --primary:        #A84832;
  --primary-deep:   #8B3020;
  --primary-light:  #C45438;
  --cream:          #F0EDD4;
  --cream-mid:      #E8E3C8;
  --gold:           #C9975A;
  --dark:           #2C1B16;
  --muted:          rgba(44, 27, 22, 0.55);
  --status-open:    #7ED99A;
  --status-closed:  rgba(240, 237, 212, 0.38);
  --radius-pill:    999px;
  --radius-card:    16px;
  --shadow-warm:    0 4px 16px rgba(139,48,32,0.12), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-float:   0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  background: #FAF8F0;
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: calc(68px + env(safe-area-inset-bottom));
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Splash ─────────────────────────────────────────────── */

.splash {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 1.4s ease, visibility 0s linear 1.4s;
}

.splash.is-hidden { opacity: 0; visibility: hidden; }

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeUp 0.7s ease both;
}

.splash-icon { width: clamp(88px, 16vw, 120px); height: auto; }

.splash-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(240, 237, 212, 0.7);
}

/* ─── Nav ────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(139, 48, 32, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(240, 237, 212, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.65rem;
}

.site-nav a {
  color: rgba(240, 237, 212, 0.85);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(240, 237, 212, 0.14);
  color: var(--cream);
  text-decoration: none;
}

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  min-height: 90vh;
  background: radial-gradient(ellipse at 28% 58%, var(--primary-light) 0%, var(--primary) 42%, var(--primary-deep) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 4rem 1.75rem 3rem;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -0.08em;
  right: -0.05em;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(11rem, 26vw, 20rem);
  font-weight: 700;
  color: rgba(240, 237, 212, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ─── Hero Left ──────────────────────────────────────────── */

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Staggered entrance */
.hero-animate .hero-left > * {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-animate .hero-left > *:nth-child(1) { animation-delay: 0.06s; }
.hero-animate .hero-left > *:nth-child(2) { animation-delay: 0.14s; }
.hero-animate .hero-left > *:nth-child(3) { animation-delay: 0.21s; }
.hero-animate .hero-left > *:nth-child(4) { animation-delay: 0.30s; }
.hero-animate .hero-left > *:nth-child(5) { animation-delay: 0.40s; }
.hero-animate .hero-left > *:nth-child(6) { animation-delay: 0.48s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
  animation: floatIcon 5s ease-in-out infinite;
  margin-bottom: 0.9rem;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero-wordmark {
  width: min(240px, 62vw);
  height: auto;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.2));
  margin-bottom: 0.5rem;
}

.slogan {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.56rem;
  font-weight: 500;
  color: rgba(240, 237, 212, 0.58);
  margin-bottom: 0.9rem;
}

.slogan span { color: var(--gold); letter-spacing: 0; }

/* ─── CTA Buttons ────────────────────────────────────────── */

.hero-cta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease;
  will-change: transform;
  cursor: pointer;
}

/* Shimmer */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -120%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }

/* ORDER NOW */
.btn-order {
  background: var(--cream);
  color: var(--primary);
  font-size: 0.85rem;
  padding: 1rem 2.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.1);
  z-index: 0;
}
.btn-order:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.24); }

/* Sonar pulse */
.btn-order::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(240, 237, 212, 0.5);
  animation: sonar 2.4s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes sonar {
  0%   { transform: scale(1);    opacity: 0.65; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* CATERING */
.btn-catering {
  background: rgba(240, 237, 212, 0.16);
  color: var(--cream);
  border: 1.5px solid rgba(240, 237, 212, 0.6);
  backdrop-filter: blur(4px);
  transition: transform 0.22s ease, background 0.22s, border-color 0.22s;
}
.btn-catering:hover {
  background: rgba(240, 237, 212, 0.26);
  border-color: rgba(240, 237, 212, 0.9);
}

/* ─── Status pill ────────────────────────────────────────── */

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(240, 237, 212, 0.13);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(240, 237, 212, 0.75);
  backdrop-filter: blur(4px);
  transition: box-shadow 0.4s;
}
.status-pill.is-open {
  box-shadow: 0 0 0 1px rgba(126,217,154,0.35), 0 0 14px rgba(126,217,154,0.16);
}
.status-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--status-closed);
  transition: background 0.4s;
  flex-shrink: 0;
}

/* ─── Hero right / Menu ──────────────────────────────────── */

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pdf-label {
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(240, 237, 212, 0.52);
  margin: 0;
}

.menu-pages {
  display: flex;
  gap: 0.65rem;
  width: 100%;
}

.menu-page {
  flex: 1;
  width: 0;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.16),
    0 14px 36px rgba(0,0,0,0.2),
    0 0 0 1px rgba(240,237,212,0.1);
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-page:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.2),
    0 20px 48px rgba(0,0,0,0.24),
    0 0 0 1px rgba(240,237,212,0.15);
}

.menu-download {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 212, 0.8);
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(240,237,212,0.25);
  border-radius: var(--radius-pill);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.menu-download:hover {
  color: var(--cream);
  border-color: rgba(240,237,212,0.6);
  background: rgba(240,237,212,0.08);
  text-decoration: none;
}

/* ─── Ticker ─────────────────────────────────────────────── */

.hero-ticker {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(240,237,212,0.09);
  z-index: 2;
}

.ticker-track {
  display: inline-flex;
  gap: 1.75rem;
  white-space: nowrap;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240, 237, 212, 0.5);
  animation: ticker 32s linear infinite;
  will-change: transform;
}
.tick-dot { color: var(--gold); font-size: 0.52rem; letter-spacing: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Ornament divider ───────────────────────────────────── */

.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 2rem;
  background: var(--cream);
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,72,50,0.2), transparent);
}
.divider-icon {
  width: 26px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(330deg) brightness(0.72);
}

/* ─── Section icon (decorative) ─────────────────────────── */

.section-icon {
  width: 36px;
  height: auto;
  margin: 0 auto 0.5rem;
  opacity: 0.75;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(330deg) brightness(0.72);
}

/* ─── Section typography ─────────────────────────────────── */

.section-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 500;
  margin: 0 0 0.55rem;
  color: var(--gold);
}

.section-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  color: var(--dark);
  line-height: 1.18;
}

/* ─── Instagram / Community ──────────────────────────────── */

.instagram-section {
  background: var(--cream);
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
}

/* ─── Feature grid ───────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 auto 1.75rem;
  max-width: 520px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.9rem 0.6rem;
  background: rgba(168,72,50,0.05);
  border: 1px solid rgba(168,72,50,0.12);
  border-radius: 12px;
  text-align: center;
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.feature-item strong {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.feature-item span {
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.4;
}

.instagram-bio {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.keyword-chips span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(168,72,50,0.08);
  color: var(--primary);
  border: 1px solid rgba(168,72,50,0.18);
}

.instagram-card {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.6rem 0.85rem 1.1rem;
  border: 1.5px solid rgba(168,72,50,0.14);
  box-shadow: var(--shadow-warm);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.instagram-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
  text-decoration: none;
}
.instagram-icon { width: 32px; height: 32px; flex-shrink: 0; }

.instagram-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  flex: 1;
}

.instagram-handle { color: var(--primary); font-weight: 700; }
.instagram-sub    { font-size: 0.7rem; font-weight: 400; color: var(--muted); }
.instagram-arrow  { color: var(--gold); margin-left: 0.2rem; flex-shrink: 0; }

/* ─── Location (compact) ─────────────────────────────────── */

.location-section {
  background: #FBF8F0;
  padding: 1.5rem 1.25rem 1.5rem;
}

.location-section .section-eyebrow {
  text-align: center;
  margin-bottom: 1rem;
}

.location-grid {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 1px solid rgba(168,72,50,0.07);
  display: flex;
  flex-direction: column;
}

.directions-link {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--cream);
  text-decoration: none;
  transition: background 0.18s;
}
.directions-link:hover {
  background: var(--primary-deep);
  text-decoration: none;
}

.hours-card {
  background: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-warm);
  border: 1px solid rgba(168,72,50,0.07);
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.hours-icon {
  width: 22px;
  height: auto;
  opacity: 0.8;
  flex-shrink: 0;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(330deg) brightness(0.72);
}

.hours-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary);
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(44,27,22,0.07);
  font-size: 0.78rem;
}
.hour-row:last-child { border-bottom: none; }
.hour-row.sunday dd { color: var(--muted); }
.hour-row dt { font-weight: 700; color: var(--dark); }
.hour-row dd { margin: 0; color: rgba(44,27,22,0.6); }

.cafe-address {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(44,27,22,0.1);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: normal;
}

/* ─── Footer ─────────────────────────────────────────────── */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 1.75rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-icon { width: 36px; height: auto; opacity: 0.65; margin-bottom: 0.15rem; }

.footer-social {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-social:hover { text-decoration: underline; }

.footer-address {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(240,237,212,0.45);
  letter-spacing: 0.04em;
}

.footer-copy {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240,237,212,0.25);
}

.footer-supplier {
  margin: 0;
  font-size: 0.62rem;
  color: rgba(240,237,212,0.35);
}

.footer-supplier a {
  color: rgba(240,237,212,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-supplier a:hover { color: rgba(240,237,212,0.8); }

/* ─── Sticky CTA bar ─────────────────────────────────────── */

.cta-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 16px rgba(44,27,22,0.14);
}

.cta-link {
  flex: 1;
  text-align: center;
  padding: 0.9rem;
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.15s;
  text-decoration: none;
}
.cta-link:hover { opacity: 0.9; text-decoration: none; }
.cta-link.order    { background: var(--primary); color: var(--cream); }
.cta-link.catering { background: var(--cream);   color: var(--primary); }

/* ─── Scroll reveal ──────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ─── Lightbox ───────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }

.lightbox-img {
  max-width: min(90vw, 600px);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 2.2rem; height: 2.2rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ─── Breakpoints ────────────────────────────────────────── */

/* 480px — small phone */
@media (min-width: 480px) {
  .hero { padding: 4rem 2rem 3rem; }
  .keyword-chips span { font-size: 0.65rem; }
}

/* Feature grid: stack to single column on very small phones */
@media (max-width: 380px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 260px; }
}

/* 768px — tablet / desktop breakpoint */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .hero {
    flex-direction: row;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 3rem;
    min-height: 88vh;
  }

  .hero-left {
    flex: 0 0 42%;
    align-items: center;
    text-align: center;
  }

  .hero-right { flex: 1; }

  .menu-pages { gap: 0.85rem; }
  .menu-page  { border-radius: 12px; }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  #cta-bar { display: none; }
}

/* 1024px — wider desktop */
@media (min-width: 1024px) {
  .hero { padding: 3rem 5rem; gap: 4rem; }
  .hero-left { flex: 0 0 40%; }
  .instagram-section { padding: 2.5rem 3rem; }
  .location-section  { padding: 1.75rem 3rem; }
}

/* 1280px — large desktop */
@media (min-width: 1280px) {
  .hero { padding: 3rem 7rem; min-height: 84vh; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
