/* ===========================================================================
   stays-header-footer.css
   Header + footer replicated from the live vizagstays.com theme
   (RentalSpace / "homely" — resources/views/themes/homely, assets/themes/homely/css).
   Scoped to .main-header / .main-footer so it does not touch the rest of the app.
   Loaded LAST in app/views/layouts/public.php.
   =========================================================================== */

:root {
  /* Theme palette — from assets/themes/homely/css/color.css */
  --vs-primary:      #f23f3f;
  --vs-primary-rgb:  242, 63, 63;
  --vs-primary-dark: #b32020;

  --vs-text-1: #484848;
  --vs-text-2: #e7e7e7;
  --vs-text-3: #717171;

  --vs-black: #10100f;
  --vs-white: #ffffff;

  --vs-border-1: #eaeaea;
  --vs-border-2: #dddddd;
  --vs-border-3: #e1e1e1;
  --vs-border-4: #3e3e3a;

  --vs-bg-1: #f6f6f6;
  --vs-bg-3: #070705;

  --vs-shadow-1: 0px 2px 3.8px 0px rgba(146, 146, 146, 0.2);
  --vs-shadow-2: 0px 2px 3.8px 5px rgba(146, 146, 146, 0.05);
  --vs-shadow-3: 0 8px 20px rgba(0, 0, 0, 0.1);

  --vs-font: "Sen", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Shared container — mirrors the theme's Bootstrap container widths. */
.vs-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 12px;
}
@media (min-width: 576px)  { .vs-container { max-width: 540px;  } }
@media (min-width: 768px)  { .vs-container { max-width: 720px;  } }
@media (min-width: 992px)  { .vs-container { max-width: 960px;  } }
@media (min-width: 1200px) { .vs-container { max-width: 1200px; } }
@media (min-width: 1400px) { .vs-container { max-width: 1480px; } }

.main-header,
.main-footer { font-family: var(--vs-font); }

.main-header *,
.main-footer * { box-sizing: border-box; }

/* ===========================================================================
   Buttons (01-global.css: .btn-1 / .btn-3 with the sliding main/hover text)
   =========================================================================== */
.main-header .btn-1,
.main-footer .btn-1 {
  background-color: var(--vs-primary);
  color: var(--vs-white);
  padding: 0 32px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  gap: 5px;
  font-weight: 400;
  border-radius: 9999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.main-header .btn-1:hover,
.main-footer .btn-1:hover { color: var(--vs-white); }

.main-header .btn-3 {
  background-color: transparent;
  color: var(--vs-black);
  padding: 0 32px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  gap: 5px;
  font-weight: 400;
  border-radius: 9999px;
  border: 0;
  outline: 1px solid var(--vs-border-1);
  cursor: pointer;
  text-decoration: none;
}
.main-header .btn-3:hover { color: var(--vs-black); }

.main-header .btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
  gap: 8px;
  height: 48px;
}
.main-header .btn-1 .btn-wrapper { height: 52px; }
.main-header .btn-wrapper .btn-single {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
  gap: 8px;
  height: 48px;
}
.main-header .btn-1 .btn-wrapper .btn-single { height: 52px; }
.main-header .btn-wrapper .main-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
}
.main-header .btn-wrapper .hover-text {
  position: absolute;
  left: 0;
  transform: translateY(130%) translateZ(0);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
}
.main-header .btn-1:hover .btn-wrapper .main-text,
.main-header .btn-3:hover .btn-wrapper .main-text { transform: translateY(-130%) translateZ(0); }
.main-header .btn-1:hover .btn-wrapper .hover-text,
.main-header .btn-3:hover .btn-wrapper .hover-text { transform: translateY(0) translateZ(0); }

.main-header .btn-wrapper.h-45,
.main-header .btn-wrapper.h-45 .btn-single { height: 45px !important; }

/* ===========================================================================
   Header  (module-css/01-header.css)
   =========================================================================== */
.main-header {
  position: relative;
  display: block;
  width: 100%;
  z-index: 9990;
  top: 0;
  left: 0;
  clear: both;
  background: var(--vs-white);
}
.main-header a { text-decoration: none; }
.main-header ul { list-style: none; margin: 0; padding: 0; }

.header-style-one .header-lower {
  position: relative;
  box-shadow: var(--vs-shadow-1);
  background: var(--vs-white);
}

.main-header .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.main-header .logo-box .logo { position: relative; display: block; max-width: 180px; }
.main-header .logo-box .logo img { width: 100%; height: auto; display: block; }

.main-header .nav-outer { display: flex; flex-wrap: wrap; align-items: center; }

.main-header .header-right-column { display: flex; align-items: center; gap: 56px; }

/* ---- main menu ---- */
.main-menu .navbar-collapse { padding: 0; display: block !important; }
.main-menu .navigation { margin: 0; display: flex; flex-wrap: wrap; align-items: center; }
.main-menu .navigation > li {
  position: relative;
  padding: 31px 0;
  margin-right: 40px;
  padding-right: 20px;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child { margin-right: 0; padding-right: 0 !important; }
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 24px;
  color: var(--vs-text-3);
  letter-spacing: 0.16px;
  font-weight: 400;
}
.main-menu .navigation > li.current > a,
.main-menu .navigation > li > a:hover { color: var(--vs-black); }
.main-menu .navigation > li > a::after {
  content: "";
  width: 0;
  height: 3px;
  border-radius: 10px;
  background-color: var(--vs-primary);
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: 0.5s;
}
.main-menu .navigation > li.current > a::after,
.main-menu .navigation > li > a:hover::after { width: 50%; }

/* ---- right-hand buttons ---- */
.header-right-btn-area { display: flex; align-items: center; gap: 20px; }

.header-right-btn-area .icon-btn.btn-3 { padding: 0; }
.header-right-btn-area .icon-btn .btn-wrapper,
.header-right-btn-area .icon-btn .btn-wrapper .btn-single {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-right-btn-area .icon-btn svg { width: 20px; height: 20px; }

.plan-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--vs-primary);
  color: var(--vs-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

/* ---- language + currency dropdown ---- */
.lang-currency-dropdown { position: relative; }
.lang-currency-dropdown-menu {
  position: absolute;
  background-color: var(--vs-white);
  width: 320px;
  border: 1px solid var(--vs-border-1);
  box-shadow: var(--vs-shadow-3);
  padding: 18px 24px 24px;
  border-radius: 16px;
  top: calc(100% + 10px);
  right: calc(0% - 30px);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transform-origin: right top;
  transition: all 0.5s ease;
  z-index: 1001;
}
.lang-currency-dropdown-menu.show { opacity: 1; visibility: visible; transform: scale(1); }
.lang-currency-dropdown-menu h6 { font-size: 16px; font-weight: 600; margin: 0; color: var(--vs-black); }
.lang-currency-dropdown-menu .form-label {
  display: block;
  font-size: 14px;
  color: var(--vs-text-3);
  margin-bottom: 6px;
}
.lang-currency-dropdown-menu select {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid var(--vs-border-1);
  border-radius: 10px;
  background: var(--vs-white);
  color: var(--vs-black);
  font-family: inherit;
  font-size: 15px;
}
.lang-currency-dropdown-menu .lc-head {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.lang-currency-dropdown-menu .mt-3 { margin-top: 16px; }
.lang-currency-dropdown-menu .btn-1.w-100 { width: 100%; margin-top: 16px; padding: 0; }
.lang-currency-btn-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  color: var(--vs-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-currency-btn-close:hover { background-color: var(--vs-bg-1); }
.lang-currency-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.lang-currency-overlay.show { opacity: 1; visibility: visible; }

/* ---- account dropdown ---- */
.vs-dropdown { position: relative; }
.vs-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  background: var(--vs-white);
  border: 1px solid var(--vs-border-1);
  box-shadow: var(--vs-shadow-3);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}
.vs-dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.vs-dropdown-menu a,
.vs-dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--vs-text-1);
  cursor: pointer;
  text-align: left;
}
.vs-dropdown-menu a:hover,
.vs-dropdown-menu button:hover { background: var(--vs-bg-1); color: var(--vs-black); }
.vs-dropdown-menu .danger { color: var(--vs-primary); }
.vs-dropdown-divider { height: 1px; background: var(--vs-border-1); margin: 6px 4px; }

/* ---- sticky header ---- */
.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: top 300ms ease;
}
.fixed-header .sticky-header {
  opacity: 1;
  z-index: 9991;
  visibility: visible;
  background: var(--vs-white);
  box-shadow: var(--vs-shadow-1);
}
.sticky-header .header-lower .logo-box .logo { padding: 18.5px 0; max-width: 160px; }
.sticky-header .inner-container { min-height: 70px; }
.sticky-header .main-menu .navigation > li { padding: 22px 0; padding-right: 15px; }

/* ---- mobile toggler + drawer (module-css/02-mobile-menu.css) ---- */
.nav-outer .mobile-nav-toggler {
  position: relative;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: var(--vs-black);
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  border: 0;
  background: transparent;
  margin: 13px 0;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.mobile-menu {
  position: fixed;
  right: -300px;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu { right: 0; opacity: 1; visibility: visible; }
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateX(101%);
  transition: all 900ms ease;
  background-color: rgba(0, 0, 0, 0.9);
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.7;
  visibility: visible;
  transition: all 0.7s ease;
  transform: translateX(0%);
}
.mobile-menu .menu-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--vs-bg-1);
  box-shadow: 2px 2px 5px 1px rgba(255, 255, 255, 0.05), -2px 0 5px 1px rgba(255, 255, 255, 0.05);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateX(101%);
  transition: all 0.8s ease;
}
.mobile-menu-visible .mobile-menu .menu-box { opacity: 1; visibility: visible; transform: translateX(0%); }
.mobile-menu .close-btn {
  position: absolute;
  right: 10px;
  top: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--vs-primary);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.9s ease;
}
.mobile-menu .nav-logo {
  position: relative;
  padding: 0 10px 30px;
  text-align: left;
  margin: 25px 0 50px 15px;
  max-width: 160px;
}
.mobile-menu .nav-logo img { width: 100%; height: auto; }
.mobile-menu .navigation { position: relative; display: block; width: 100%; list-style: none; padding: 0; margin: 0; }
.mobile-menu .navigation li { position: relative; display: block; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.mobile-menu .navigation li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: var(--vs-black);
  text-transform: uppercase;
  transition: all 500ms ease;
}
.mobile-menu .navigation li > a:hover,
.mobile-menu .navigation li.current > a { color: var(--vs-primary); }
.mobile-menu .social-media { margin-top: 40px; }
.mobile-menu .social-media ul { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 0; list-style: none; }
.mobile-menu .social-media ul li a {
  width: 27px;
  height: 27px;
  border-radius: 4px;
  border: 1px solid #909090;
  background: var(--vs-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #909090;
  transition: 0.5s;
}
.mobile-menu .social-media ul li a:hover { background: var(--vs-white); color: var(--vs-primary); }
.mobile-menu .social-media svg { width: 15px; height: 15px; }

/* ===========================================================================
   Explore sub-navigation
   Second-level bar under the main header. The top-level menu belongs to
   vizagstays.com; these are the sections inside /explore/.
   Rendered by app/views/partials/explore-subnav.php on /explore-map.
   =========================================================================== */
.explore-subnav {
  position: relative;
  z-index: 20;
  background: var(--vs-white);
  border-bottom: 1px solid var(--vs-border-1);
  font-family: var(--vs-font);
}
.explore-subnav ul {
  display: flex;
  align-items: center;
  /* flex-start, not center: this is a scroll container, and centering an
     overflowing flex row makes the leading items unreachable (they overflow
     past scrollLeft: 0). Centering is re-enabled below only at widths where
     the whole row is known to fit. */
  justify-content: flex-start;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1200px) {
  .explore-subnav ul { justify-content: center; }
}
.explore-subnav ul::-webkit-scrollbar { display: none; }
.explore-subnav li { flex: 0 0 auto; }
.explore-subnav a {
  position: relative;
  display: block;
  padding: 15px 14px;
  font-size: 15px;
  line-height: 22px;
  white-space: nowrap;
  color: var(--vs-text-3);
  text-decoration: none;
  transition: color 0.3s ease;
}
.explore-subnav a:hover { color: var(--vs-black); }
.explore-subnav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
  background-color: var(--vs-primary);
  transition: width 0.4s ease;
}
.explore-subnav a:hover::after { width: 40%; }
.explore-subnav a.current { color: var(--vs-black); font-weight: 600; }
.explore-subnav a.current::after { width: calc(100% - 28px); }

@media (max-width: 767px) {
  .explore-subnav a { padding: 13px 12px; font-size: 14px; }
  /* Bleed the scroller to the viewport edges so the last item isn't clipped. */
  .explore-subnav .vs-container { padding-inline: 0; }
  .explore-subnav ul { padding-inline: 12px; }
}

/* The map fills the viewport below the header, so the sub-nav has to come out
   of its height budget too. These are fallbacks only — stays-header.js measures
   the real header + sub-nav and overwrites --vs-chrome-h, because the header's
   height moves with the logo, font loading and wrapping. --vs-announce-h is 0
   unless the announcement bar shows (it is fixed, so it overlays rather than
   pushes, but it still visually occupies the top of the page). */
:root { --vs-header-h: 86px; --vs-subnav-h: 53px; --vs-announce-h: 0px; }
@media (max-width: 1199px) { :root { --vs-header-h: 78px; } }
@media (max-width: 767px)  { :root { --vs-subnav-h: 49px; } }
body.has-announcement { --vs-announce-h: 36px; }
@media (max-width: 640px) { body.has-announcement { --vs-announce-h: 0px; } }

.explore-map-section {
  position: relative;
  height: calc(100vh - var(--vs-chrome-h, calc(var(--vs-announce-h) + var(--vs-header-h) + var(--vs-subnav-h))));
  min-height: 380px;
}

/* ===========================================================================
   Footer  (module-css/04-footer.css)
   =========================================================================== */
.main-footer {
  position: relative;
  background: var(--vs-black);
  overflow: hidden;
}
.main-footer a { text-decoration: none; }
.main-footer ul { list-style: none; margin: 0; padding: 0; }
.main-footer .bg-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  opacity: 0.12;
  z-index: 0;
}
.main-footer .vs-container { position: relative; z-index: 1; }

.footer-widget-container { position: relative; padding: 100px 0 93px; }
.footer-widget-row {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  gap: 24px;
}

.footer-logo { max-width: 190px; }
.footer-logo img { width: 100%; height: auto; display: block; }

.footer-widget-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 24px;
  color: var(--vs-white) !important;
  text-transform: uppercase;
}
.newsletter-widget .footer-widget-title { text-transform: none; margin-bottom: 15px; }

.logo-widget p {
  max-width: 400px;
  width: 100%;
  color: var(--vs-text-2) !important;
  margin-top: 20px;
  margin-bottom: 38px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.social-media ul { display: flex; align-items: center; gap: 16px; }
.social-media ul li a {
  width: 27px;
  height: 27px;
  border-radius: 4px;
  border: 1px solid #909090;
  background: var(--vs-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #909090;
  transition: 0.5s;
}
.social-media ul li a:hover { background: var(--vs-white); color: var(--vs-primary); }
.social-media svg { width: 15px; height: 15px; }

.footer-widget-list { padding-left: 0; margin-bottom: 0; }
.footer-widget-list li { margin-bottom: 12px; }
.footer-widget-list li:last-child { margin-bottom: 0; }
.footer-widget-list li a {
  color: var(--vs-text-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: 0.3s;
}
.footer-widget-list li a:hover,
.footer-widget-list li a.active { color: var(--vs-primary); }

.newsletter-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid var(--vs-border-4);
  padding: 30px 20px;
  border-radius: 20px;
  margin-left: 50px;
}
.newsletter-widget p { font-size: 16px; line-height: 24px; color: var(--vs-text-2) !important; margin: 0; }
.footer-newsletter-form { position: relative; margin-top: 15px; }
.footer-newsletter-form input {
  width: 100%;
  border-radius: 24px;
  border: 0.5px solid var(--vs-border-4);
  background-color: transparent;
  padding: 13px 60px 13px 14px;
  color: var(--vs-white);
  font-family: inherit;
  font-size: 15px;
}
.footer-newsletter-form input::placeholder { color: var(--vs-text-2); }
.footer-newsletter-form input:focus { outline: 1px solid var(--vs-primary); }
.footer-newsletter-form .btn-1 {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 45px;
  height: 45px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-newsletter-form .btn-1 svg { transition: 0.5s; width: 18px; height: 18px; }
.footer-newsletter-form .btn-1:hover svg { transform: rotate(-30deg); }
.footer-newsletter-note { display: block; margin-top: 10px; font-size: 13px; color: var(--vs-text-2); }

/* ---- copyright bar ---- */
.footer-copyright-content {
  position: relative;
  border-top: 1px solid var(--vs-border-4);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright-content p,
.footer-copyright-content a {
  color: var(--vs-text-2) !important;
  margin-bottom: 0;
  font-size: 16px;
}
.copyright-left { display: flex; align-items: center; gap: 30px; }
.copyright-left p a { color: var(--vs-primary) !important; }
.footer-language { display: flex; align-items: center; gap: 24px; }
.footer-language p { display: inline-flex; align-items: center; gap: 6px; }
.footer-language svg { width: 16px; height: 16px; }

/* ===========================================================================
   Responsive
   =========================================================================== */
@media only screen and (max-width: 1199px) {
  .main-header .inner-container { padding: 8px 0; }
  .nav-outer .mobile-nav-toggler { display: flex !important; }
  .main-menu { display: none; }
  .main-header .header-right-column { gap: 30px; }
}

@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .main-menu .navigation > li { margin-right: 28px; }
}

@media (max-width: 1199px) {
  .footer-widget-row { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .newsletter-widget { margin-left: 0; margin-top: 10px; }
  .logo-widget { grid-column: 1 / -1; }
  .newsletter-widget { grid-column: 1 / -1; }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header .header-right-column { gap: 30px; flex-direction: row-reverse; }
  .footer-copyright-content { flex-direction: column-reverse; align-items: center; gap: 15px; }
  .footer-copyright-content p,
  .footer-copyright-content a { font-size: 14px; }
}

@media (max-width: 991px) {
  .footer-widget-container { padding: 80px 0; }
}

@media only screen and (max-width: 767px) {
  .main-header .logo-box .logo { width: 130px; }
  .sticky-header .logo-box .logo { width: 120px; }
  .main-header .header-right-column { gap: 15px; flex-direction: row-reverse; }
  .header-right-btn-area { gap: 10px; }
  .header-right-btn-area .login-btn { padding: 0 14px; }
  .login-btn .label { display: none; }

  .footer-widget-container { padding: 60px 0 53px; }
  .footer-widget-row { grid-template-columns: 1fr; }
  .footer-copyright-content { align-items: center; flex-direction: column-reverse; gap: 20px; }
  .footer-copyright-content p,
  .footer-copyright-content a { font-size: 14px; text-align: center; }
  .copyright-left { flex-direction: column-reverse; gap: 12px; }
  .lang-currency-dropdown-menu { width: min(320px, calc(100vw - 32px)); right: -10px; }
}

@media (max-width: 575px) {
  .header-right-btn-area .icon-btn.btn-3 { padding: 0; }
  .header-right-btn-area .icon-btn .btn-wrapper,
  .header-right-btn-area .icon-btn .btn-wrapper .btn-single { width: 36px !important; height: 36px !important; }
  .header-right-btn-area .icon-btn svg { width: 17px; height: 17px; }
  .main-header .btn-wrapper,
  .main-header .btn-wrapper .btn-single { height: 40px; }
}

/* The app's fixed announcement bar sits above the header. */
.has-announcement .main-header { margin-top: 36px; }
.has-announcement.fixed-header .sticky-header { top: 0; }
@media (max-width: 640px) { .has-announcement .main-header { margin-top: 0; } }

@media (prefers-reduced-motion: reduce) {
  .main-header *,
  .main-footer * { transition: none !important; }
}

/* ===========================================================================
   Explore install — the nine Explore sections inside the mobile drawer
   The standalone .explore-subnav bar only fits from 1200px up (that is where
   the theme centres it and where .main-menu itself gives way to the drawer), so
   below that the bar is hidden and the sections live inside the drawer's
   "Explore" item as a tap-to-expand accordion instead. Desktop keeps the bar
   and gets no dropdown. Markup comes from $navigation() in
   partials/navbar.php, which emits the sub-menu for the drawer only.
   =========================================================================== */

/* ---- mobile drawer accordion ---- */
.mobile-menu .navigation li.dropdown > a { padding-right: 54px; }
.mobile-menu .navigation .dropdown-btn {
  position: absolute;
  right: 8px;
  top: 3px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--vs-black);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.mobile-menu .navigation li.open > .dropdown-btn { transform: rotate(180deg); color: var(--vs-primary); }

.mobile-menu .navigation .sub-menu {
  display: none;
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  background: rgba(0, 0, 0, 0.03);
}
.mobile-menu .navigation li.open > .sub-menu { display: block; }
.mobile-menu .navigation .sub-menu li { border: 0; }
.mobile-menu .navigation .sub-menu a {
  padding: 8px 25px 8px 42px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  color: var(--vs-text-1);
}
.mobile-menu .navigation .sub-menu li.current > a { color: var(--vs-primary); font-weight: 600; }

/* ---- the sections ride along with the sticky header ----
   A second .explore-subnav lives inside .sticky-header (see partials/navbar.php)
   so the sections stay reachable once the page is scrolled. It inherits every
   .explore-subnav rule, including the max-width:1199px hide below. */
.explore-subnav--sticky { border-top: 1px solid var(--vs-border-1); border-bottom: 0; }
.sticky-header .explore-subnav--sticky ul { padding-block: 0; }
.sticky-header .explore-subnav--sticky a { padding-block: 11px; }

/* ---- the horizontal bar is the desktop view of these sections ----
   It shows from 1200px up, which is exactly where .main-menu itself gives way
   to the drawer. Below that the bar would overflow, so it hides and the Explore
   sub-menu above carries the sections instead. --vs-subnav-h is the height the
   explore-map calculation reserves for the bar, so it drops to 0 there too. */
@media (max-width: 1199px) {
  .explore-subnav { display: none; }
  :root { --vs-subnav-h: 0px; }
}
