﻿


/* =====================================================
   MODERN SHOWROOM DESIGN SYSTEM — Product Detail Pages
   Dealer Yamaha Malang
   Style: Clean Premium Showroom & High Contrast
   ===================================================== */

:root {
  --ym-red: #e31837;
  --ym-red-dark: #c01230;
  --ym-red-light: rgba(227, 24, 55, 0.08);
  --ym-red-tint: rgba(227, 24, 55, 0.04);
  --ym-dark: #0f1729;
  --ym-dark-2: #1e293b;
  --ym-dark-3: #0b1120;
  --ym-text: #1e293b;
  --ym-text-body: #334155;
  --ym-text-muted: #64748b;
  --ym-bg: #ffffff;
  --ym-bg-alt: #f8fafc;
  --ym-border: #e2e8f0;
  --ym-border-light: #f1f5f9;
  --ym-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --ym-shadow-md: 0 4px 16px rgba(15, 23, 41, 0.07);
  --ym-shadow-lg: 0 14px 40px rgba(15, 23, 41, 0.09);
  --ym-shadow-hover: 0 20px 48px rgba(227, 24, 55, 0.12);
  --ym-radius: 16px;
  --ym-radius-sm: 10px;
  --ym-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ym-text);
  background: var(--ym-bg-alt);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* =====================================================
   NAVBAR (Unified Showroom Standard)
   ===================================================== */
.navbar-ym {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 3px solid var(--ym-red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
  transition: all 0.3s ease;
}

.navbar-ym.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.navbar-brand-logo,
.navbar-ym .navbar-brand img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

.navbar-ym .nav-link {
  color: var(--ym-text) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--ym-radius-sm);
  transition: all 0.2s ease;
}

.navbar-ym .nav-link:hover,
.navbar-ym .nav-link.active {
  color: var(--ym-red) !important;
  background: var(--ym-red-light);
}

.navbar-toggler {
  border: none !important;
  min-width: 44px;
  min-height: 44px;
  padding: 8px !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,41,59,.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-ym {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ym-red) 0%, var(--ym-red-dark) 100%);
  border: 1px solid var(--ym-red);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(227, 24, 55, 0.28);
  transition: all 0.25s ease;
}

.btn-ym:hover {
  background: linear-gradient(135deg, #c51230 0%, #a00e26 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(227, 24, 55, 0.38);
  color: #ffffff !important;
}

.btn-outline-ym {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.btn-outline-ym:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-outline-dark-ym {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid var(--ym-border);
  color: var(--ym-dark) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline-dark-ym:hover {
  border-color: var(--ym-red);
  color: var(--ym-red) !important;
  background: var(--ym-red-light);
  transform: translateY(-2px);
}

/* =====================================================
   PRODUCT HERO SECTION (Modern Showroom Dark)
   ===================================================== */
.product-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1120 0%, #101d36 55%, #16294d 100%);
  color: #ffffff;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ym-red);
}

.product-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 24, 55, 0.15), transparent 70%);
  pointer-events: none;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.breadcrumb-wrap {
  margin-bottom: 1rem;
}

.breadcrumb-ym {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  list-style: none;
  margin: 0;
}

.breadcrumb-ym a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-ym a:hover {
  color: #ffffff;
}

.breadcrumb-ym .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.breadcrumb-ym .active {
  color: #ff8597;
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(227, 24, 55, 0.16);
  border: 1px solid rgba(227, 24, 55, 0.35);
  color: #ff8597;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.product-hero h1 {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.5px;
}

.product-hero h1 span {
  color: #ff3352;
  display: inline;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.hero-price-tag,
.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--ym-radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-price i,
.hero-price-tag i {
  color: var(--ym-red);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ym-radius);
  padding: 1rem 1.1rem;
  color: #ffffff;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-image {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.hero-main-image:hover {
  transform: scale(1.03);
}

/* =====================================================
   INTERACTIVE GALLERY SHELL
   ===================================================== */
.gallery-shell {
  margin-top: -36px;
  position: relative;
  z-index: 3;
}

.gallery-panel {
  background: #ffffff;
  border-radius: var(--ym-radius-lg);
  border: 1px solid var(--ym-border);
  box-shadow: var(--ym-shadow-lg);
  padding: 1.5rem;
}

.gallery-main {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--ym-radius);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid var(--ym-border-light);
}

.gallery-main-image {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(15, 23, 41, 0.1));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 1.25rem;
}

.thumb-btn {
  border: 2px solid transparent;
  border-radius: var(--ym-radius-sm);
  background: #f8fafc;
  padding: 0.6rem;
  min-height: 84px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-btn:hover {
  background: #f1f5f9;
  border-color: var(--ym-border);
  transform: translateY(-2px);
}

.thumb-btn.active {
  border-color: var(--ym-red);
  background: #fff5f6;
  box-shadow: 0 4px 14px rgba(227, 24, 55, 0.18);
  transform: scale(1.02);
}

.gallery-thumb-image {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

/* =====================================================
   CONTENT SECTIONS & HEADINGS
   ===================================================== */
.content-section {
  margin-top: 3.5rem;
}

.section-label-alt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ym-red-light);
  color: var(--ym-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--ym-dark);
  font-weight: 800;
  line-height: 1.25;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.3px;
}

.section-heading p {
  color: var(--ym-text-muted);
  font-size: 1.02rem;
  max-width: 820px;
  margin: 0;
}

/* =====================================================
   OVERVIEW CARDS (Why this page, Focus, Next Steps)
   ===================================================== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--ym-border);
  border-radius: var(--ym-radius);
  padding: 1.6rem;
  box-shadow: var(--ym-shadow-sm);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  box-shadow: var(--ym-shadow-md);
  border-color: #cbd5e1;
  transform: translateY(-3px);
}

.card-title-ym {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ym-dark);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.card-copy-ym {
  color: var(--ym-text-body);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   VARIANT GRID & CARDS
   ===================================================== */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.variant-card {
  background: #ffffff;
  border-radius: var(--ym-radius);
  border: 1px solid var(--ym-border);
  padding: 1.25rem;
  box-shadow: var(--ym-shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.variant-card:hover {
  box-shadow: var(--ym-shadow-hover);
  border-color: rgba(227, 24, 55, 0.4);
  transform: translateY(-4px);
}

.variant-media {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--ym-radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  margin-bottom: 1rem;
  border: 1px solid var(--ym-border-light);
}

.variant-media-image {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.variant-card:hover .variant-media-image {
  transform: scale(1.05);
}

.variant-price {
  color: var(--ym-red);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem;
}

.variant-colors {
  font-size: 0.88rem;
  color: var(--ym-text-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
}

/* =====================================================
   FEATURE GRID & CARDS
   ===================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--ym-radius);
  border: 1px solid var(--ym-border);
  overflow: hidden;
  box-shadow: var(--ym-shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: var(--ym-shadow-md);
  border-color: #cbd5e1;
  transform: translateY(-3px);
}

.feature-media-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--ym-border-light);
  padding: 0.75rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-media-image {
  transform: scale(1.02);
}

.feature-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-card-body .card-title-ym {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card-body .card-copy-ym {
  font-size: 0.9rem;
  color: var(--ym-text-body);
}

/* =====================================================
   SPECIFICATIONS ACCORDION
   ===================================================== */
.accordion-ym .accordion-item {
  border: 1px solid var(--ym-border);
  border-radius: var(--ym-radius) !important;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--ym-shadow-sm);
  background: #ffffff;
}

.accordion-ym .accordion-button {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ym-dark);
  background: #ffffff;
  padding: 1.15rem 1.4rem;
  box-shadow: none !important;
  border-radius: var(--ym-radius) !important;
  transition: all 0.2s ease;
}

.accordion-ym .accordion-button:not(.collapsed) {
  background: #fff8f9;
  color: var(--ym-red);
  border-bottom: 1px solid rgba(227, 24, 55, 0.15);
}

.accordion-ym .accordion-button::after {
  filter: grayscale(1);
  transition: transform 0.2s ease;
}

.accordion-ym .accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-ym .accordion-body {
  padding: 1.25rem 1.4rem;
}

.spec-table {
  display: grid;
  gap: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--ym-border-light);
  align-items: baseline;
}

.spec-row:nth-child(even) {
  background: #fbfcfe;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  color: var(--ym-text-muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.spec-value {
  color: var(--ym-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

/* =====================================================
   SUPPORT & CREDIT CONSULTATION PANEL
   ===================================================== */
.support-panel {
  border-radius: var(--ym-radius-lg);
  padding: 2.5rem;
  background: linear-gradient(145deg, #0f1729 0%, #162444 60%, #1e3567 100%);
  color: #ffffff;
  margin: 3.5rem auto 0;
  box-shadow: var(--ym-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.support-panel::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 24, 55, 0.2), transparent 70%);
  pointer-events: none;
}

.support-panel h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.support-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: 780px;
  line-height: 1.65;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.support-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.support-list i {
  color: #4ade80;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* =====================================================
   FOOTER (Showroom Unified Standard)
   ===================================================== */
.footer-ym {
  margin-top: 4rem;
  background: var(--ym-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand-logo,
.footer-ym img {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  display: inline-block !important;
  filter: brightness(0) invert(1) !important;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ym-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  font-size: 1.6rem;
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}

/* =====================================================
   RESPONSIVE (Mobile, Tablet, Desktop)
   ===================================================== */
@media (max-width: 991.98px) {
  .navbar-ym .navbar-collapse {
    background: #ffffff;
    padding: 10px 14px 16px;
    border-top: 1px solid var(--ym-border);
    margin-top: 8px;
    border-radius: var(--ym-radius-sm);
    box-shadow: var(--ym-shadow-md);
  }
  .navbar-ym .nav-link {
    padding: 10px 16px !important;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-shell {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .product-hero {
    padding-top: 96px;
    padding-bottom: 40px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.1rem;
  }
  .hero-stat strong {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-ym,
  .btn-outline-ym {
    width: 100%;
  }
  .gallery-main {
    min-height: 260px;
    padding: 1rem;
  }
  .gallery-main-image {
    max-height: 240px;
  }
  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.75rem 0.4rem;
  }
  .support-panel {
    padding: 1.75rem 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* =====================================================
   MOBILE VIEWPORT RESTRAINT (Active ONLY on Mobile/Tablet <= 991px)
   Desktop layout is preserved 100% untouched.
   ===================================================== */
@media (max-width: 991.98px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: clip !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    header, section, footer, main, nav, article,
    .container, .container-fluid, .section-shell,
    .product-hero, .catalog-hero, .about-hero, .hero-section,
    .support-panel, .support-card, .cta-panel, .showroom-cta {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: clip;
    }
    
    .container, .section-shell {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .row {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }
    
    .row > * {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100% !important;
    }
    
    p, h1, h2, h3, h4, h5, h6, span, a, li, td, th {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    img, svg, video, iframe, canvas {
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Disable all off-screen absolute decorative shapes on mobile */
    .product-hero::after,
    .catalog-hero::after,
    .about-hero::after,
    .support-panel::after,
    .support-card::after,
    .cta-panel::after,
    .story-visual::after,
    .showroom-cta::after {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .container, .section-shell {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .row {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }
    .row > * {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
    .hero-stat, .stat-card {
        min-width: 0 !important;
    }
    .catalog-actions, .card-btn-group {
        grid-template-columns: 1fr !important;
    }
    .catalog-actions .btn-ym,
    .catalog-actions .btn-outline-ym {
        width: 100% !important;
    }
}