/* =========================================
   FITSABROAD — STARTER STYLES (Stage 1)
   Concept: "Clip & Save" — Sunny gold / Crimson / Ink navy / Cream paper
   Full perforated-coupon polish (scissor icons, peel animation) arrives
   in the dedicated design stage. This gives us a clean, working layout.
   ========================================= */

:root {
  --gold: #F5B700;
  --crimson: #D7263D;
  --navy: #1B1B2F;
  --cream: #FFF8E7;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.5;
  background: #fff;
}

h1, h2, h3, .logo {
  font-family: var(--font-display);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-accent {
  color: var(--crimson);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a.active {
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* HERO */
.hero {
  padding: 4rem 0;
  background: var(--cream);
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: #E6F4EA;
  color: #1A7F37;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: #444;
}

.hero-search {
  display: flex;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  gap: 0.5rem;
}

.hero-search input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #555;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-reveal {
  background: var(--navy);
  color: var(--gold);
  width: 100%;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.btn-reveal.revealed {
  background: #1A7F37;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

/* CATEGORY CHIPS */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.chip {
  background: var(--cream);
  border: 1px dashed var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

/* COUPON CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.coupon-card {
  border: 2px dashed var(--gold);
  border-radius: 10px;
  padding: 1.5rem;
  background: #fff;
  text-align: center;
}

.coupon-store {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coupon-discount {
  font-size: 1.8rem;
  color: var(--crimson);
  margin: 0.25rem 0 0.5rem;
}

.coupon-desc {
  color: #444;
  margin-bottom: 0.5rem;
}

.coupon-expiry {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.center-cta {
  text-align: center;
  margin-top: 2rem;
}

/* CTA BAND */
.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.cta .btn-primary {
  background: var(--gold);
  color: var(--navy);
  margin-top: 1rem;
}

/* FOOTER */
.site-footer {
  padding: 2rem 0;
  background: var(--cream);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
}

/* PAGE HEADER (non-home pages) */
.page-header {
  padding: 3rem 0;
  background: var(--cream);
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.contact-email {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.contact-email a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 700;
}

.incentive-text {
  background: #fdf1cc;
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.interest-group {
  border: none;
  padding: 0;
  margin-top: 1rem;
}

.interest-group legend {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.checkbox-label input {
  width: auto;
}

/* FILTER BAR (deals.html) */
.filter-section {
  padding-top: 2rem;
  padding-bottom: 0;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.chip-filter {
  border: 1px dashed var(--gold);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}

.chip-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.sort-select {
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
}

.no-results {
  text-align: center;
  color: #888;
  margin-top: 2rem;
}

/* TICKET/STORE LINK */
.ticket-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
}

/* STORE CARDS */
.store-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.store-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.store-count {
  color: #888;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.store-tag {
  background: #fdf1cc;
  color: #8a6d00;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* CATEGORY CARDS */
.category-card {
  border: 2px dashed var(--gold);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  display: block;
}

.category-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.category-card p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* STATS SECTION */
.stats-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-mono);
}

.stat-label {
  margin-top: 0.25rem;
  color: #ddd;
}

/* CONTACT / NEWSLETTER FORMS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.form-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-card label {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.form-card button {
  margin-top: 1.25rem;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status.success {
  color: #1a7f37;
}

.form-status.error {
  color: var(--crimson);
}

/* =========================================
   STAGE 3 — VISUAL POLISH
   Notched "paper coupon" cards, scissors divider, peel-on-hover,
   and general refinement of the Clip & Save identity.
   ========================================= */

/* NAVBAR — add depth so it reads as a fixed strip, not a flat template bar */
.site-header {
  box-shadow: 0 1px 0 rgba(27, 27, 47, 0.08);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a.active {
  border-bottom: none;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}

/* HERO — subtle paper texture using repeating diagonal lines */
.hero {
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(215, 38, 61, 0.035) 0px,
    rgba(215, 38, 61, 0.035) 2px,
    transparent 2px,
    transparent 14px
  );
}

.hero h1 {
  letter-spacing: -0.01em;
}

/* BUTTONS — a little more tactile */
.btn {
  box-shadow: 0 2px 0 rgba(27, 27, 47, 0.15);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

.btn-primary:hover {
  background: #b81f34;
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

/* COUPON CARDS — notched ticket shape + scissors divider + peel hover */
.coupon-card {
  position: relative;
  border: none;
  background: #fff;
  box-shadow: 0 3px 10px rgba(27, 27, 47, 0.08);
  border-radius: 14px;
  overflow: visible;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.coupon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(27, 27, 47, 0.14);
}

/* Notches — semicircle cutouts on left/right edges, like a real ticket */
.coupon-card::before,
.coupon-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--cream);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(27, 27, 47, 0.06);
}

.coupon-card::before {
  left: -10px;
}

.coupon-card::after {
  right: -10px;
}

/* Dashed divider with a scissors icon, sitting where the notches line up */
.coupon-discount {
  padding-bottom: 0.85rem;
  border-bottom: 2px dashed #e6ddc8;
  position: relative;
  margin-bottom: 1rem;
}

.coupon-discount::after {
  content: '✂';
  position: absolute;
  left: 50%;
  bottom: -0.7rem;
  transform: translateX(-50%) rotate(90deg);
  background: #fff;
  padding: 0 0.4rem;
  font-size: 0.9rem;
  color: var(--gold);
}

/* CATEGORY CHIPS — fill on hover for a "clip this" feel */
.chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.chip-filter:hover {
  background: #fdf1cc;
}

/* CATEGORY CARDS + STORE CARDS — matching lift-on-hover language */
.category-card,
.store-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(27, 27, 47, 0.05);
}

.category-card:hover,
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(27, 27, 47, 0.1);
}

/* SECTION DIVIDER — thin dashed rule to echo the coupon-cut motif site-wide */
.section + .section {
  position: relative;
}

.section + .section::before {
  content: '';
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 2px dashed #eee0c0;
}

/* BLOG INTRO (home page header) */
.blog-intro {
  padding: 3.5rem 0 2.5rem;
  background: var(--cream);
  text-align: center;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(215, 38, 61, 0.035) 0px,
    rgba(215, 38, 61, 0.035) 2px,
    transparent 2px,
    transparent 14px
  );
}

.blog-intro h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-intro .hero-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #444;
}

/* BLOG FILTER STRIP */
.blog-filter-section {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

/* FEATURED POST */
.featured-post-section {
  padding-top: 1.5rem;
}

.featured-post {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(27, 27, 47, 0.18);
}

.featured-post h2 {
  font-size: 1.8rem;
  margin: 0.75rem 0 0.5rem;
  max-width: 640px;
}

.featured-post .blog-meta {
  color: #cfcfe0;
}

.featured-post .blog-excerpt {
  max-width: 640px;
  color: #e8e8f0;
  margin: 1rem 0 1.25rem;
}

.featured-post .ticket-link {
  color: var(--gold);
  font-weight: 700;
}

.featured-post .blog-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
}

/* BLOG CARDS */
.blog-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(27, 27, 47, 0.07);
  padding: 1.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(27, 27, 47, 0.13);
}

.blog-tag {
  display: inline-block;
  background: #fdf1cc;
  color: #8a6d00;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.6rem;
}

.blog-excerpt {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

/* INDIVIDUAL ARTICLE PAGES */
.article-header {
  padding: 3rem 0 2rem;
  background: var(--cream);
  text-align: center;
}

.article-header .blog-tag {
  background: var(--gold);
  color: var(--navy);
}

.breadcrumb {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--crimson);
}

.breadcrumb span {
  color: var(--navy);
  font-weight: 600;
}

.article-header h1 {
  font-size: 2rem;
  max-width: 700px;
  margin: 0.75rem auto 0.5rem;
}

.article-header .blog-meta {
  justify-content: center;
}

.back-link {
  display: inline-block;
  margin: 1.5rem 0 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--crimson);
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
}

.article-body p {
  margin-bottom: 1.25rem;
  color: #333;
  font-size: 1.02rem;
}

.article-body h2 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.article-cta {
  max-width: 700px;
  margin: 2rem auto 0;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.article-cta p {
  margin-bottom: 1rem;
  color: #e8e8f0;
}

.related-posts {
  max-width: 700px;
  margin: 2rem auto 0;
}

.related-posts h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.related-posts ul {
  list-style: none;
}

.related-posts li {
  border-top: 1px dashed #e6ddc8;
  padding: 0.85rem 0;
}

.related-posts a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.related-posts a:hover {
  color: var(--crimson);
}

/* AD SLOTS — reserve minimum height to reduce layout shift as ads load */
.ad-section {
  padding-top: 0;
  padding-bottom: 0;
}

.ad-slot {
  min-height: 100px;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ad-slot::before {
  content: 'Advertisement';
  position: absolute;
  top: -1.1rem;
  left: 0;
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ad-slot-inarticle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ad-slot-display {
  min-height: 250px;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 600px;
  color: #e8e8f0;
}

.cookie-banner a {
  color: var(--gold);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-ghost {
  border-color: #fff;
  color: #fff;
}

/* =========================================
   THEME TOGGLE BUTTON
   ========================================= */
.theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-right: 0.75rem;
  line-height: 1;
}

/* =========================================
   RECENTLY VIEWED DEALS
   ========================================= */
.recently-viewed {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
}

.recently-viewed h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.recently-viewed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recently-viewed-chip {
  background: #fdf1cc;
  color: #8a6d00;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =========================================
   DARK MODE
   ========================================= */
body.dark-mode {
  background: #14141f;
  color: #e8e8f0;
}

body.dark-mode .site-header {
  background: #1b1b2f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.dark-mode .logo,
body.dark-mode .nav-links a {
  color: #e8e8f0;
}

body.dark-mode .hero,
body.dark-mode .blog-intro,
body.dark-mode .page-header,
body.dark-mode .article-header,
body.dark-mode .site-footer {
  background: #1b1b2f;
}

body.dark-mode .hero-sub,
body.dark-mode .footer-links a {
  color: #cfcfe0;
}

body.dark-mode .blog-card,
body.dark-mode .coupon-card,
body.dark-mode .store-card,
body.dark-mode .category-card,
body.dark-mode .form-card {
  background: #1f1f2e;
  color: #e8e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

body.dark-mode .coupon-card::before,
body.dark-mode .coupon-card::after {
  background: #1b1b2f;
}

body.dark-mode .coupon-discount {
  border-bottom-color: #3a3a4d;
}

body.dark-mode .coupon-discount::after {
  background: #1f1f2e;
}

body.dark-mode .article-body p,
body.dark-mode .blog-excerpt,
body.dark-mode .contact-email,
body.dark-mode .blog-meta,
body.dark-mode .coupon-desc {
  color: #cfcfe0;
}

body.dark-mode .form-card input,
body.dark-mode .form-card textarea {
  background: #14141f;
  border-color: #3a3a4d;
  color: #e8e8f0;
}

body.dark-mode .chip {
  background: #1f1f2e;
  color: #e8e8f0;
}

body.dark-mode .related-posts li {
  border-top-color: #3a3a4d;
}

body.dark-mode .recently-viewed-chip {
  background: #3a3320;
  color: #f5d98a;
}

/* =========================================
   DASHBOARD-UPLOADED IMAGES
   Paste this block before the mobile styles section.
   ========================================= */

/* Store logo image (replaces the initials circle when a real logo is uploaded) */
.store-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

/* Blog post cover image (top of the article page) */
.article-cover-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}

/* Blog card thumbnail (on the home page grid) */
.blog-card-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

/* MOBILE */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    z-index: 10;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-search {
    flex-direction: column;
  }
}