/*
Theme Name: 8DAY VN Guide
Description: Domain-specific Flatsome child theme for 8dayvnguide.com.
Author: 8DAY VN Guide
Template: flatsome
Version: 1.1.6
Text Domain: eightday-vnguide
*/

:root {
  --eight-bg: #04272b;
  --eight-bg-deep: #020d0f;
  --eight-panel: #0a3438;
  --eight-panel-soft: #17474a;
  --eight-line: rgba(171, 224, 220, 0.23);
  --eight-teal: #17d2c7;
  --eight-gold: #f3c55d;
  --eight-coral: #ef3c2f;
  --eight-coral-dark: #c9221b;
  --eight-paper: #f4fbfa;
  --eight-muted: #b8cfcd;
  --eight-radius: 14px;
  --eight-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
}

body.eightday-vnguide-site {
  margin: 0;
  color: var(--eight-paper);
  background: var(--eight-bg);
  font-family: Arial, Helvetica, sans-serif;
}

body.eightday-vnguide-site * {
  box-sizing: border-box;
}

.eight-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100000;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  border-radius: 8px;
  transform: translateY(-160%);
}

.eight-skip-link:focus {
  transform: translateY(0);
}

.eight-container {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.eight-site-header {
  position: relative;
  z-index: 30;
  background: var(--eight-bg-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.eight-header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
}

.eight-brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
}

.eight-brand:hover {
  color: #fff;
}

.eight-brand img {
  display: block;
  width: auto;
  max-width: 190px;
  height: 66px;
  object-fit: contain;
}

.eight-brand-text {
  display: block;
  text-align: center;
}

.eight-header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 12px;
}

.eight-button,
.eight-header-button,
.eight-action-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, filter 160ms ease;
}

.eight-header-button {
  min-height: 40px;
  padding: 0 22px;
  color: #fff;
  border-radius: 4px;
  background: #090b0c;
  box-shadow: 0 0 18px rgba(243, 197, 93, 0.35);
  text-transform: uppercase;
  font-size: 13px;
}

.eight-header-button--primary {
  background: linear-gradient(180deg, #fa4c3d, var(--eight-coral-dark));
  box-shadow: 0 0 22px rgba(239, 60, 47, 0.52);
}

.eight-header-button:hover,
.eight-button:hover,
.eight-action-card:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.eight-desktop-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.eight-desktop-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eight-desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 11px;
  color: #eef7f6;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eight-desktop-nav .current-menu-item > a,
.eight-desktop-nav a:hover {
  color: var(--eight-gold);
}

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

.eight-site-main {
  min-height: 55vh;
  overflow: hidden;
  background: var(--eight-bg);
}

.eight-hero {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #021518;
}

.eight-hero-media,
.eight-hero-media::after,
.eight-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.eight-hero-media img {
  object-fit: cover;
  object-position: center;
}

.eight-hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(1, 17, 20, 0.96) 0%, rgba(1, 17, 20, 0.77) 38%, rgba(1, 17, 20, 0.12) 74%, rgba(1, 17, 20, 0.25) 100%);
}

.eight-hero-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: 64px 0;
}

.eight-eyebrow {
  margin: 0 0 10px;
  color: var(--eight-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eight-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.eight-hero-lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: #d7e7e5;
  font-size: 18px;
  line-height: 1.65;
}

.eight-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eight-button {
  min-height: 48px;
  padding: 0 26px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, #fb4e3e, var(--eight-coral-dark));
  box-shadow: 0 10px 28px rgba(239, 60, 47, 0.28);
}

.eight-button--dark {
  color: #fff;
  border: 1px solid rgba(243, 197, 93, 0.4);
  background: #070b0c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.eight-action-strip {
  padding: 22px 0;
  background: #07272a;
}

.eight-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.eight-action-card {
  min-height: 46px;
  padding: 9px 18px;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(180deg, #fa493b, #d3271d);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.eight-action-card:last-child {
  background: #050708;
}

.eight-intro,
.eight-topics,
.eight-overview,
.eight-faq,
.eight-guides,
.eight-disclaimer {
  padding: 58px 0;
}

.eight-intro {
  padding-top: 34px;
}

.eight-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.eight-section-heading::before,
.eight-section-heading::after {
  content: "";
  width: min(170px, 14vw);
  height: 1px;
  background: var(--eight-line);
}

.eight-intro-copy {
  padding: 6px 0 6px 28px;
  border-left: 3px solid var(--eight-coral);
  color: #dce9e7;
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
}

.eight-intro-copy p:last-child {
  margin-bottom: 0;
}

.eight-topics {
  background: #062d31;
}

.eight-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.eight-topic-card {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(23, 210, 199, 0.19);
  border-radius: var(--eight-radius);
  color: #fff;
  background: #0a292c;
  box-shadow: var(--eight-shadow);
}

.eight-topic-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.eight-topic-card:hover img {
  transform: scale(1.035);
}

.eight-topic-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(1, 9, 10, 0.96));
}

.eight-topic-card strong {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
}

.eight-overview-box {
  padding: 34px;
  border: 2px solid #278dde;
  border-radius: 10px;
  background: rgba(1, 26, 29, 0.36);
  box-shadow: inset 0 0 40px rgba(23, 210, 199, 0.05);
}

.eight-overview-box h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 28px;
}

.eight-overview-box p,
.eight-overview-box li {
  color: #d9e8e6;
  font-size: 16px;
  line-height: 1.75;
}

.eight-overview-box ul {
  margin: 20px 0 0;
}

.eight-faq {
  padding-top: 10px;
}

.eight-faq-list {
  border-top: 1px solid var(--eight-line);
}

.eight-faq-list details {
  border-bottom: 1px solid var(--eight-line);
}

.eight-faq-list summary {
  position: relative;
  padding: 20px 44px 20px 10px;
  color: #eaf5f4;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}

.eight-faq-list summary::-webkit-details-marker {
  display: none;
}

.eight-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 12px;
  color: var(--eight-gold);
  font-size: 26px;
}

.eight-faq-list details[open] summary::after {
  content: "−";
}

.eight-faq-answer {
  padding: 0 44px 20px 10px;
  color: var(--eight-muted);
  line-height: 1.7;
}

.eight-guides {
  background: #052327;
}

.eight-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.eight-guide-card {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #081416;
}

.eight-guide-card:hover {
  color: var(--eight-gold);
  border-color: rgba(243, 197, 93, 0.5);
}

.eight-guide-card span {
  color: var(--eight-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eight-guide-card strong {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.4;
}

.eight-disclaimer {
  padding-top: 42px;
  padding-bottom: 42px;
}

.eight-disclaimer-box {
  padding: 22px 26px;
  color: #d8e6e4;
  border-left: 4px solid var(--eight-gold);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.7;
}

.eight-page-shell {
  min-height: 560px;
  padding: 76px 0;
}

.eight-page-card {
  min-height: 290px;
  padding: 38px;
  border: 1px solid var(--eight-line);
  border-radius: var(--eight-radius);
  background: rgba(0, 0, 0, 0.12);
}

.eight-page-card h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
}

.eight-page-content {
  color: #dbe9e7;
  font-size: 17px;
  line-height: 1.75;
}

.eight-page-content:empty {
  display: none;
}

.eight-site-footer {
  color: #eff9f7;
  background: linear-gradient(145deg, #246f4b 0%, #36865d 52%, #246f4b 100%);
}

.eight-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.25fr;
  gap: 34px;
  padding-top: 62px;
  padding-bottom: 50px;
}

.eight-footer-brand img {
  width: auto;
  max-width: 210px;
  height: 76px;
  object-fit: contain;
}

.eight-footer-brand p,
.eight-footer-column li,
.eight-footer-column a {
  color: #edf6f2;
  line-height: 1.7;
}

.eight-footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

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

.eight-footer-column li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.eight-footer-column li:last-child {
  border-bottom: 0;
}

.eight-footer-column a:hover {
  color: var(--eight-gold);
}

.eight-footer-note {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.eight-footer-note strong {
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eight-provider-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.eight-provider-row span {
  min-width: 94px;
  padding: 9px 14px;
  color: #0f4b37;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.eight-copyright {
  padding: 24px 0;
  color: #9db9b6;
  background: #06262a;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 980px) {
  .eight-header-top {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .eight-mobile-menu {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .eight-mobile-menu summary {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    border-radius: 5px;
    background: var(--eight-coral);
    cursor: pointer;
    list-style: none;
    font-size: 20px;
  }

  .eight-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .eight-mobile-menu .menu {
    position: absolute;
    top: 92px;
    right: 18px;
    left: 18px;
    z-index: 10;
    margin: 0;
    padding: 12px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #071719;
    box-shadow: var(--eight-shadow);
  }

  .eight-mobile-menu a {
    display: block;
    padding: 12px 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .eight-desktop-nav {
    display: none;
  }

  .eight-brand {
    grid-column: 2;
  }

  .eight-header-actions {
    grid-column: 3;
  }

  .eight-header-button {
    padding: 0 14px;
    font-size: 12px;
  }

  .eight-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eight-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .eight-container {
    width: min(100% - 30px, 1140px);
  }

  .eight-header-top {
    min-height: 120px;
    grid-template-columns: 42px 1fr 42px;
    grid-template-rows: 68px 52px;
    gap: 0 10px;
  }

  .eight-brand {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
  }

  .eight-brand img {
    max-width: 150px;
    height: 58px;
  }

  .eight-mobile-menu {
    grid-column: 1;
    grid-row: 1;
  }

  .eight-mobile-menu .menu {
    top: 68px;
  }

  .eight-header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    align-self: start;
  }

  .eight-header-button {
    min-height: 38px;
    padding: 0 21px;
  }

  .eight-hero {
    min-height: 420px;
    align-items: end;
  }

  .eight-hero-media::after {
    background: linear-gradient(180deg, rgba(1, 17, 20, 0.05) 0%, rgba(1, 17, 20, 0.64) 52%, rgba(1, 17, 20, 0.97) 100%);
  }

  .eight-hero-content {
    max-width: none;
    padding: 110px 0 34px;
    text-align: center;
  }

  .eight-hero h1 {
    font-size: 34px;
  }

  .eight-hero-lead {
    font-size: 15px;
  }

  .eight-hero-buttons {
    justify-content: center;
  }

  .eight-button {
    width: 100%;
  }

  .eight-action-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .eight-intro,
  .eight-topics,
  .eight-overview,
  .eight-faq,
  .eight-guides,
  .eight-disclaimer {
    padding: 42px 0;
  }

  .eight-section-heading {
    font-size: 23px;
  }

  .eight-section-heading::before,
  .eight-section-heading::after {
    width: 36px;
  }

  .eight-intro-copy {
    padding-left: 20px;
    font-size: 16px;
  }

  .eight-topic-grid,
  .eight-guide-grid,
  .eight-footer-top {
    grid-template-columns: 1fr;
  }

  .eight-topic-card,
  .eight-topic-card img {
    min-height: 290px;
    height: 290px;
  }

  .eight-overview-box {
    padding: 24px 20px;
  }

  .eight-page-shell {
    padding: 44px 0;
  }

  .eight-page-card {
    min-height: 260px;
    padding: 26px 20px;
  }

  .eight-footer-top {
    padding-top: 46px;
  }
}

/* Reference-matched shared header and footer (8day3.jp.net visual shell). */
.eight-site-header,
.eight-site-footer,
.eight-mobile-drawer {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.eight-site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  color: #fff;
  background: #082f32;
  box-shadow: none;
}

.admin-bar .eight-site-header {
  top: 32px;
}

.eight-header-main {
  background: #082f32;
}

.eight-header-top {
  min-height: 90px;
  grid-template-columns: 1fr 200px 1fr;
}

.eight-brand {
  width: 200px;
  height: 72px;
}

.eight-brand img {
  width: 200px;
  max-width: 200px;
  height: 72px;
}

.eight-header-actions {
  gap: 14px;
}

.eight-header-button {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 3px;
  background: #0a0a0a;
  box-shadow: 0 0 17px rgba(255, 239, 80, 0.68), 0 0 26px rgba(17, 221, 219, 0.23);
  font-size: 13px;
  font-weight: 700;
  line-height: 34px;
}

.eight-header-button--primary {
  background: #f52820;
  box-shadow: 0 0 17px rgba(255, 239, 80, 0.78), 0 0 28px rgba(17, 221, 219, 0.35);
}

.eight-desktop-nav {
  height: 50px;
  border: 0;
  background: rgba(1, 12, 14, 0.86);
}

.eight-desktop-nav .menu {
  position: relative;
  min-height: 50px;
  gap: 0;
}

.eight-desktop-nav .menu > li {
  position: relative;
  margin: 0 13px;
  border-top: 0 !important;
}

.eight-desktop-nav a {
  min-height: 50px;
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16px;
}

.eight-desktop-nav a i {
  margin-right: 6px;
  font-size: 18px;
}

.eight-home-icon {
  display: inline-block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}

.eight-desktop-nav .icon-angle-down {
  margin: 1px 0 0 4px;
  font-size: 11px;
}

.eight-desktop-nav .current-menu-item > a,
.eight-desktop-nav a:hover,
.eight-desktop-nav a:focus-visible {
  color: #eed620;
}

.eight-submenu {
  position: absolute;
  top: 48px;
  left: -18px;
  z-index: 40;
  display: none;
  width: 220px;
  margin: 0;
  padding: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  list-style: none;
}

.eight-nav-dropdown:hover .eight-submenu,
.eight-nav-dropdown:focus-within .eight-submenu {
  display: block;
}

.eight-submenu li,
.eight-desktop-nav .eight-submenu li {
  margin: 0;
}

.eight-desktop-nav .eight-submenu a {
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  text-transform: none;
}

.eight-desktop-nav .eight-submenu a:hover {
  color: #eed620;
  background: rgba(255, 255, 255, 0.06);
}

.eight-site-footer {
  color: #fff;
  background: #2f7f59;
}

.eight-footer-main {
  position: relative;
  padding: 44px 0 96px;
  background-color: #2f7f59;
  background-image: linear-gradient(rgba(47, 127, 89, 0.88), rgba(47, 127, 89, 0.9)), url("assets/footer-background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.eight-footer-top {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 1fr 1fr;
  gap: 38px;
  padding: 0 0 42px;
}

.eight-footer-brand img {
  display: block;
  width: 263px;
  max-width: 100%;
  height: 95px;
  margin: 0 0 12px;
}

.eight-footer-brand p,
.eight-footer-column li,
.eight-footer-column a {
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.eight-footer-brand p {
  margin: 0;
}

.eight-footer-column h2 {
  margin: 10px 0 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.eight-footer-column li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.eight-footer-column li:last-child {
  border-bottom: 0;
}

.eight-footer-column a:hover,
.eight-footer-column a:focus-visible {
  color: #f5db2e;
}

.eight-footer-divider {
  height: 1px;
  margin: 0 0 20px;
  background: rgba(255, 255, 255, 0.62);
}

.eight-footer-asset-section {
  margin: 0 0 36px;
  text-align: center;
}

.eight-footer-asset-section h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.eight-payment-image,
.eight-provider-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.eight-payment-image {
  max-height: 66px;
}

.eight-provider-image {
  max-height: 162px;
}

.eight-footer-providers {
  margin-bottom: 20px;
}

.eight-footer-map,
.eight-footer-map iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.eight-footer-map {
  overflow: hidden;
  background: #e8e7e2;
}

.eight-footer-map iframe {
  border: 0;
}

.eight-footer-bottom {
  padding: 14px 0 16px;
  color: rgba(255, 255, 255, 0.5);
  background: #01292d;
  text-align: center;
}

.eight-related-keywords {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.eight-copyright {
  margin: 8px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-size: 12px;
}

@media (max-width: 980px) {
  .eight-desktop-nav {
    display: none;
  }

  .eight-header-top {
    grid-template-columns: 48px 1fr auto;
  }

  .eight-mobile-menu {
    position: static;
    display: block;
    grid-column: 1;
    grid-row: 1;
    z-index: 10020;
  }

  .eight-mobile-menu > summary {
    position: relative;
    z-index: 10030;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    border: 0;
    border-radius: 5px;
    background: #ef3c2f;
    box-shadow: 0 0 18px rgba(239, 60, 47, 0.55);
    cursor: pointer;
    list-style: none;
    outline: 0;
  }

  .eight-mobile-menu > summary::-webkit-details-marker,
  .eight-mobile-submenu > summary::-webkit-details-marker {
    display: none;
  }

  .eight-mobile-menu > summary i {
    margin: 0;
    font-size: 20px;
  }

  .eight-menu-close-icon {
    display: none;
  }

  .eight-mobile-menu[open] > summary {
    position: fixed;
    top: 5px;
    right: 1px;
    left: auto;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    box-shadow: none;
    outline: 0;
  }

  .admin-bar .eight-mobile-menu[open] > summary {
    top: 58px;
  }

  .eight-mobile-menu[open] .eight-menu-open-icon {
    display: none;
  }

  .eight-mobile-menu[open] .eight-menu-close-icon {
    display: block;
  }

  .eight-mobile-menu[open]::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.68);
  }

  .eight-mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10010;
    width: min(300px, calc(100vw - 55px));
    overflow-y: auto;
    padding: 50px 0 28px;
    color: #fff;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 12px 0 36px rgba(0, 0, 0, 0.48);
  }

  .admin-bar .eight-mobile-drawer {
    top: 46px;
  }

  .eight-mobile-search {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 20px 16px;
  }

  .eight-mobile-search input {
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0 48px 0 15px;
    color: #fff;
    border: 0;
    border-radius: 22px;
    background: #3c3c3c;
    font-size: 14px;
    font-weight: 700;
  }

  .eight-mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.82);
  }

  .eight-mobile-search button {
    position: absolute;
    top: 0;
    right: 2px;
    width: 44px;
    height: 42px;
    margin: 0;
    padding: 0;
    color: #fff;
    border: 0;
    background: transparent;
    font-size: 19px;
  }

  .eight-mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .eight-mobile-nav li {
    margin: 0;
  }

  .eight-mobile-nav a,
  .eight-mobile-submenu > summary {
    display: flex;
    min-height: 28px;
    align-items: center;
    margin: 0;
    padding: 3px 0;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
  }

  .eight-mobile-nav a i {
    margin-right: 3px;
    color: #eed620;
  }

  .eight-mobile-nav .current-menu-item > a {
    color: #eed620;
  }

  .eight-mobile-submenu > summary {
    width: 100%;
    height: auto;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .eight-mobile-submenu > summary .icon-angle-down {
    margin-right: 14px;
    transition: transform 180ms ease;
  }

  .eight-mobile-submenu[open] > summary .icon-angle-down {
    transform: rotate(180deg);
  }

  .eight-mobile-submenu ul a {
    min-height: 34px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
  }

  body:has(.eight-mobile-menu[open]) {
    overflow: hidden;
  }

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

@media (max-width: 640px) {
  .eight-site-header {
    min-height: 120px;
  }

  .eight-header-main {
    min-height: 120px;
  }

  .eight-header-top {
    min-height: 120px;
    grid-template-columns: 42px 1fr 42px;
    grid-template-rows: 68px 52px;
    gap: 0 10px;
  }

  .eight-brand {
    width: 150px;
    height: 58px;
  }

  .eight-brand img {
    width: 150px;
    max-width: 150px;
    height: 58px;
  }

  .eight-header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 14px;
  }

  .eight-header-button {
    min-height: 38px;
    padding: 0 17px;
    font-size: 12px;
    line-height: 38px;
  }

  .eight-footer-main {
    padding: 40px 0 72px;
    background-position: center top;
  }

  .eight-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 0 38px;
  }

  .eight-footer-brand img {
    width: 210px;
    height: 76px;
    margin: 0 auto 12px;
  }

  .eight-footer-brand p {
    text-align: center;
  }

  .eight-footer-column h2 {
    margin-top: 0;
  }

  .eight-footer-divider {
    margin-bottom: 18px;
  }

  .eight-footer-asset-section {
    margin-bottom: 30px;
  }

  .eight-footer-asset-section h2 {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .eight-payment-image,
  .eight-provider-image {
    width: 100%;
    max-height: none;
  }

  .eight-footer-map,
  .eight-footer-map iframe {
    height: 300px;
  }

  .eight-footer-bottom {
    padding: 18px 0 22px;
  }

  .eight-related-keywords {
    font-size: 13px;
    line-height: 1.65;
  }
}

@media (max-width: 782px) {
  .admin-bar .eight-site-header {
    top: 46px;
  }
}
