/* ==========================================================================
   VF MPV7 Product Detail Page
   Design: Figma 1440px desktop / 390px mobile
   Tokens: Mulish, #3C3C3C, #1464F4, #F7F9F9
   ========================================================================== */

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  color: #3c3c3c;
  -webkit-font-smoothing: antialiased;
}

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

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

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 60px;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  background: #fff;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid #f7f9f9;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 75px;
}

.site-header .logo img {
  height: 20px;
  width: auto;
}

.site-header .main-nav {
  display: flex;
  gap: 30px;
  height: 100%;
  align-items: center;
}

.site-header .main-nav a {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #3c3c3c;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color 0.2s;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #1464f4;
}

.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1464f4;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.site-header .btn-book:hover {
  opacity: 0.9;
  color: #fff;
}

.site-header .btn-book svg {
  width: 16px;
  height: 16px;
}

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

.site-header .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3c3c3c;
  transition: transform 0.3s;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.mpv7-hero {
  position: relative;
}

.mpv7-hero picture {
  display: block;
}

.mpv7-hero picture img {
  width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   PDP SUB-NAV (sticky)
   ========================================================================== */

.mpv7-pdp-nav {
  background: #fff;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f7f9f9;
  width: 100%;
}

.mpv7-pdp-nav .nav-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
}

.mpv7-pdp-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 75px;
}

.mpv7-pdp-nav .nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.mpv7-pdp-nav .nav-logo {
  display: flex;
  align-items: center;
}

.mpv7-pdp-nav .nav-logo img,
.mpv7-pdp-nav .nav-logo svg {
  height: 21px;
  width: 80px;
  --fill-0: #3c3c3c;
}

.mpv7-pdp-nav .nav-links {
  display: flex;
  gap: 30px;
  height: 100%;
}

.mpv7-pdp-nav .nav-links a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #3c3c3c;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.mpv7-pdp-nav .nav-links a:hover,
.mpv7-pdp-nav .nav-links a.active {
  color: #1464f4;
}

.mpv7-pdp-nav .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #1464f4;
}

.mpv7-pdp-nav .nav-cta .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1464f4;
  border: 1px solid #1464f4;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 12px 12px 16px;
  width: 190px;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.mpv7-pdp-nav .nav-cta .btn-book:hover {
  opacity: 0.9;
  color: #fff;
}

.mpv7-pdp-nav .nav-cta .btn-book svg {
  width: 20px;
  height: 20px;
}


/* ==========================================================================
   OVERVIEW
   ========================================================================== */

.mpv7-overview {
  padding: 96px 0;
  background: #fff;
  overflow: hidden;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.mpv7-overview .overview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1070px;
  margin: 0 auto 30px;
}

.mpv7-overview .overview-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  width: 520px;
  margin: 0;
}

.mpv7-overview .overview-arrows {
  display: flex;
  gap: 30px;
}

.mpv7-overview .overview-carousel {
  margin-left: 185px;
  overflow: hidden;
}

.mpv7-overview .overview-swiper {
  overflow: visible;
}

.mpv7-overview .swiper-slide {
  width: 85%;
  flex-shrink: 0;
}

.mpv7-overview .overview-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1070 / 600;
  overflow: hidden;
}

.mpv7-overview .overview-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mpv7-overview .overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpv7-overview .overview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.mpv7-overview .overview-card .card-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
  width: 414px;
}

.mpv7-overview .overview-card .card-text p {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.mpv7-overview .overview-disclaimer {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 30px;
  font-size: 16px;
  color: #fff;
}

.mpv7-overview .overview-mobile-cta {
  display: none;
  padding: 30px 16px 0;
}


/* ==========================================================================
   ARROW BUTTONS
   ========================================================================== */

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
  flex-shrink: 0;
}

.arrow-btn:hover {
  opacity: 0.8;
}

.arrow-btn--nav {
  background: #000;
}

.arrow-btn--nav.swiper-button-disabled,
.arrow-btn--nav.nav-disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: default;
  pointer-events: none;
}

.arrow-btn--white {
  background: #fff;
}

.arrow-btn svg {
  width: 24px;
  height: 24px;
}


/* ==========================================================================
   SWIPER PAGINATION DOTS (Figma exact)
   Active: 24×8 blue pill | Inactive: 8×8 gray circle | Gap: 12px
   ========================================================================== */

.swiper-pagination-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #d9e1e2;
  opacity: 1;
  transition: all 0.3s;
  margin: 0 6px !important;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  width: 24px;
  height: 8px;
  background: #1464f4;
}


/* ==========================================================================
   PRICES
   ========================================================================== */

.mpv7-prices {
  padding: 96px 75px;
  background: #fff;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.mpv7-prices .prices-inner {
  display: flex;
  align-items: center;
  gap: 140px;
  max-width: 1290px;
  margin: 0 auto;
}

.mpv7-prices .prices-img {
  flex-shrink: 0;
  width: 630px;
}

.mpv7-prices .prices-img img {
  width: 100%;
  height: auto;
}

.mpv7-prices .prices-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mpv7-prices .prices-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}


/* ==========================================================================
   TRIM CARD
   ========================================================================== */

.trim-card {
  border: 1px solid #d9e1e2;
}

.trim-card .trim-hd {
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trim-card .trim-hd h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.trim-card .trim-price {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #3c3c3c;
}

.trim-card .trim-bd {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trim-card .trim-desc {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.trim-card .trim-specs {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.trim-card .trim-spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trim-card .trim-spec .val {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.trim-card .trim-spec .lbl {
  font-size: 12px;
  line-height: 1.5;
}

.trim-card .trim-div {
  width: 1px;
  align-self: stretch;
  background: #f0f3f3;
  flex-shrink: 0;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-outline-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid #1464f4;
  background: #fff;
  color: #1464f4;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  padding: 12px 16px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-blue:hover {
  background: #1464f4;
  color: #fff;
}

.btn-primary-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  background: #1464f4;
  border: 1px solid #1464f4;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 12px 12px 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary-full svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-primary-full:hover {
  opacity: 0.9;
  color: #fff;
}


/* ==========================================================================
   INTERIOR
   ========================================================================== */

.mpv7-interior {
  position: relative;
  background: #000;
}

.mpv7-interior .interior-body {
  position: relative;
}

.mpv7-interior .swiper-slide {
  background: #000;
}

.mpv7-interior .swiper-slide picture {
  display: block;
  width: 100%;
  aspect-ratio: 1440 / 760;
}

.mpv7-interior .interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpv7-interior .interior-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  padding: 120px 75px;
  pointer-events: none;
}

.mpv7-interior .interior-overlay .arrow-btn {
  pointer-events: auto;
}

.mpv7-interior .interior-text {
  flex: 1;
  text-align: center;
}

.mpv7-interior .interior-text h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.mpv7-interior .interior-disclaimer {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 75px;
  font-size: 12px;
  /*font-style: italic;*/
  color: #fff;
}

.mpv7-interior .interior-overlay-mobile {
  display: none;
}

/* Hide desktop overlay on mobile */
@media (max-width: 767px) {
  .mpv7-interior .interior-overlay {
    display: none;
  }
}


/* ==========================================================================
   SPECS
   ========================================================================== */

.mpv7-specs {
  background: #3c3c3c;
}

.mpv7-specs .specs-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 185px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mpv7-specs .specs-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.mpv7-specs .specs-table {
  width: 100%;
  display: block;
}

.mpv7-specs .specs-table .specs-hd {
  background: #141414;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mpv7-specs .specs-table .specs-hd img {
  height: 30px;
  width: auto;
}

.mpv7-specs .specs-table .specs-hd-price {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.mpv7-specs .specs-table .specs-row {
  display: flex;
  gap: 30px;
  padding: 16px 30px;
  border-bottom: 1px solid rgba(247, 249, 249, 0.15);
  color: #fff;
}

.mpv7-specs .specs-table .specs-row:last-child {
  border-bottom: none;
}

.mpv7-specs .specs-table .spec-lbl {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
}

.mpv7-specs .specs-table .spec-val {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

.mpv7-specs .specs-btn {
  display: flex;
  gap: 30px;
  max-width: 410px;
}

.mpv7-specs .specs-btn .btn-outline-blue {
  flex: 1;
  background: #fff;
  color: #1464f4;
  border-color: #1464f4;
}

.mpv7-specs .specs-btn .btn-outline-blue:hover {
  background: #1464f4;
  color: #fff;
}

.mpv7-specs .specs-btn .btn-solid-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  padding: 12px 16px;
  background: #1464f4;
  color: #fff;
  border: 1px solid #1464f4;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.mpv7-specs .specs-btn .btn-solid-blue:hover {
  background: #0d50c7;
}


/* ==========================================================================
   NEWS (Stories & Events)
   ========================================================================== */

.mpv7-news {
  padding: 80px 0;
  background: #fff;
}

.mpv7-news .news-inner {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 16px;
}

.mpv7-news .news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mpv7-news .news-head h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.mpv7-news .news-tabs {
  display: flex;
  gap: 16px;
}

.mpv7-news .news-tabs button {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: #3c3c3c;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.mpv7-news .news-tabs button.active {
  color: #1464f4;
  border-bottom-color: #1464f4;
}

.mpv7-news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mpv7-news .news-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.mpv7-news .news-card .date {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.mpv7-news .news-card .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.mpv7-news .news-card .title a {
  color: #3c3c3c;
}

.mpv7-news .news-card .title a:hover {
  color: #1464f4;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 40px;
}

.site-footer .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 75px;
}

.site-footer .footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.site-footer .footer-tagline {
  flex: 1;
}

.site-footer .footer-tagline h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
}

.site-footer .footer-newsletter {
  flex: 1;
}

.site-footer .footer-newsletter h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}

.site-footer .footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
}

.site-footer .footer-newsletter .input-group {
  display: flex;
  gap: 0;
}

.site-footer .footer-newsletter input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.site-footer .footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-newsletter .submit-btn {
  background: #1464f4;
  border: 1px solid #1464f4;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.site-footer .footer-menu {
  flex: 1;
}

.site-footer .footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.site-footer .footer-menu a:hover {
  color: #fff;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer .social-links {
  display: flex;
  gap: 16px;
}

.site-footer .social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: color 0.2s;
}

.site-footer .social-links a:hover {
  color: #fff;
}

.site-footer .footer-legal {
  display: flex;
  gap: 24px;
}

.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.site-footer .footer-logo {
  margin-top: 40px;
  text-align: center;
}

.site-footer .footer-logo img {
  height: 16px;
  width: auto;
  opacity: 0.5;
  margin: 0 auto;
}

.site-footer .footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}


/* ==========================================================================
   MOBILE (max-width: 767px)
   ========================================================================== */

@media (max-width: 767px) {

  /* ── Header ── */
  .site-header .header-inner {
    padding: 0 16px;
  }

  .site-header .main-nav {
    display: none;
  }

  .site-header .hamburger {
    display: flex;
  }

  .site-header .btn-book {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* ── Mobile Nav Overlay ── */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 300;
    flex-direction: column;
    padding: 80px 16px 16px;
  }

  .mobile-nav-overlay.open {
    display: flex;
  }

  .mobile-nav-overlay a {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid #f7f9f9;
    color: #3c3c3c;
  }

  .mobile-nav-overlay .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* ── Hero ── */
  .mpv7-hero {
    height: auto;
  }

  .mpv7-hero picture,
  .mpv7-hero picture img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  /* ── PDP Nav ── */
  .mpv7-pdp-nav .nav-inner {
    padding: 0 16px;
  }

  .mpv7-pdp-nav .nav-logo {
    display: none;
  }

  .mpv7-pdp-nav .nav-left {
    gap: 0;
    width: 100%;
  }

  .mpv7-pdp-nav .nav-links {
    gap: 30px;
    width: 100%;
    flex: 1;
  }

  .mpv7-pdp-nav .nav-links a {
    font-size: 16px;
    flex: 1;
    justify-content: center;
  }

  .mpv7-pdp-nav .nav-cta {
    display: none;
  }

  /* ── Overview ── */
  .mpv7-overview {
    padding: 60px 0 60px;
  }

  .mpv7-overview .overview-head {
    padding: 0 16px;
    margin-bottom: 30px;
  }

  .mpv7-overview .overview-title {
    font-size: 32px;
    width: auto;
  }

  .mpv7-overview .overview-arrows {
    display: none;
  }

  .mpv7-overview .overview-carousel {
    margin: 0 16px;
    overflow: hidden;
  }

  .mpv7-overview .overview-swiper {
    overflow: hidden;
  }

  .mpv7-overview .swiper-slide {
    width: 100%;
  }

  .mpv7-overview .overview-card {
    height: 600px;
  }

  .mpv7-overview .overview-card .card-text {
    width: auto;
    padding: 16px;
  }

  .mpv7-overview .overview-card .card-text p {
    font-size: 20px;
    line-height: 1.2;
  }

  .mpv7-overview .overview-disclaimer {
    padding: 0 16px;
    font-size: 10px;
    bottom: 8px;
  }

  .mpv7-overview .overview-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    z-index: 2;
  }

  .mpv7-overview .overview-mobile-cta {
    display: block;
    padding: 30px 16px 0;
  }

  /* ── Prices — Figma: img 358px, info gap 30px, px-16 ── */
  .mpv7-prices {
    padding: 0;
  }

  .mpv7-prices .prices-inner {
    flex-direction: column;
    gap: 0;
  }

  .mpv7-prices .prices-img {
    width: 100%;
    height: 358px;
    padding: 0 16px;
  }

  .mpv7-prices .prices-info {
    padding: 0 16px 60px;
    gap: 30px;
  }

  .mpv7-prices .prices-title {
    font-size: 32px;
  }

  .trim-card .trim-hd {
    background: #f7f9f9;
  }

  /* ── Interior — Figma: body 760px, image cover, overlay at bottom ── */
  .mpv7-interior .interior-body {
    height: auto;
    overflow: visible;
  }

  .mpv7-interior .interior-swiper {
    height: 760px;
  }

  .mpv7-interior .swiper-slide {
    background: #0a0e11;
    height: 760px;
  }

  .mpv7-interior .swiper-slide picture {
    height: 760px;
    aspect-ratio: unset;
  }

  .mpv7-interior .interior-img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    object-position: center;
  }

  .mpv7-interior .interior-overlay-mobile {
    display: flex;
    position: absolute;
    z-index: 1;
    inset: 0;
    bottom: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
    pointer-events: none;
  }

  .mpv7-interior .interior-overlay-mobile .interior-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding-top: 30px;
    width: 358px;
    max-width: 100%;
    pointer-events: auto;
  }

  .mpv7-interior .interior-overlay-mobile .interior-text h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin: 0;
  }

  .mpv7-interior .interior-overlay-mobile .btn-outline-blue {
    border-color: #1464f4;
    color: #1464f4;
    background: #fff;
    width: 100%;
    pointer-events: auto;
  }

  .mpv7-interior .interior-overlay-mobile .swiper-pagination-custom {
    position: static;
    pointer-events: auto;
    margin-top: 12px;
  }

  .mpv7-interior .interior-disclaimer {
    padding: 0 16px;
    font-size: 8px;
    /*white-space: nowrap;*/
  }

  /* ── Specs ── */
  .mpv7-specs .specs-inner {
    padding: 60px 0;
    gap: 30px;
  }

  .mpv7-specs .specs-title {
    font-size: 32px;
    padding: 0 16px;
  }

  .mpv7-specs .specs-table .specs-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 30px;
  }

  .mpv7-specs .specs-table .specs-row {
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px;
    border-bottom: 1px solid rgba(247, 249, 249, 0.15);
  }

  .mpv7-specs .specs-table .spec-lbl {
    font-size: 18px;
    font-weight: 400;
  }

  .mpv7-specs .specs-table .spec-val {
    font-size: 16px;
    font-weight: 400;
  }

  .mpv7-specs .specs-btn {
    max-width: 100%;
    padding: 0 16px;
    flex-direction: column;
    gap: 16px;
  }

  .mpv7-specs .specs-btn .btn-solid-blue {
    width: 100%;
    order: -1;
  }

  .mpv7-specs .specs-btn .btn-outline-blue {
    width: 100%;
  }

  /* ── News ── */
  .mpv7-news .news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mpv7-news .news-head h2 {
    font-size: 28px;
  }

  .mpv7-news .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ── Footer ── */
  .site-footer .footer-inner {
    padding: 0 16px;
  }

  .site-footer .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer .footer-tagline h2 {
    font-size: 32px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}


/* ==========================================================================
   UTILITY
   ========================================================================== */

.d-desktop {
  display: block;
}

.d-mobile {
  display: none;
}

@media (max-width: 767px) {
  .d-desktop {
    display: none;
  }

  .d-mobile {
    display: block;
  }
}
