/* ============================================
   CRITICAL MOBILE FIXES
   Additional layer to ensure perfect mobile display
   ============================================ */

/* Prevent horizontal scroll at all costs */
html {
  width: 100%;
  scroll-behavior: smooth;
  /* NO position:relative - it breaks sticky! */
  /* NO overflow-x here either - mixed with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks sticky too! */
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* NO position:relative - it breaks sticky! */
}

/* Ensure all major containers respect viewport */
/* NOTE: "nav" is intentionally excluded here. Giving a <nav> element
   overflow-x: hidden makes its overflow-y auto-compute to "auto" (per the
   CSS overflow spec), turning it into a clipping/scroll container. Since
   the header's dropdown submenu (.caption-e306) is a descendant of
   .text_3e55 (a <nav>), it was getting clipped and forced into a tiny
   internal scrollbar instead of opening naturally below the nav link. */
main,
section,
article,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header must NOT have max-width restriction for sticky to work */
header.fast-c2c2 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".widget_green_9935" is intentionally excluded here for the same reason as
   "nav" above — the header's <div class="container"> wraps the nav and
   must not clip the dropdown submenu with an auto-computed overflow-y.
   It's already width-capped via max-width in style.white_1730 so it can't cause
   horizontal overflow anyway. */
.link-west-e7f2,
.pro_7e49,
.badge-action-7638,
.dirty_5b3d,
.motion-3a96,
.backdrop_bronze_4534,
.disabled_c414,
.backdrop-red-2941,
.stone-74d1,
.hard_ed30,
.gallery-be0a {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .light-87a0 {
    padding: 8px 0;
  }
  
  .gas-4580 img {
    height: 28px;
    width: auto;
  }
  
  .black-4f5a {
    display: none !important;
  }
  
  .mask_d05b {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .mask_d05b svg {
    width: 14px;
    height: 14px;
  }
  
  .warm-2998 {
    padding: 6px;
  }
  
  .article-4d11 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .badge-action-7638,
  .pro_7e49,
  .dirty_5b3d,
  .motion-3a96,
  .clean-4f11,
  .alert-1bab,
  .sort_silver_0549,
  .clean-ec59,
  .modal_b104,
  .first-dab0,
  .thumbnail_0030,
  .slow_8128 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .chip_75f3,
  .tooltip-705d {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .pink_e74e,
  .basic_2128,
  .card_d2bf,
  .prev-dd88,
  .carousel-001c,
  .header-9186,
  .video-in-eea7 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  /* Ensure images are responsive */
  img,
  svg,
  picture {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Better padding for mobile */
  .liquid_07d2,
  .shadow-c234,
  .small-ed25,
  .row_active_c150,
  .breadcrumb_brown_05ad {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .summary-532e,
  .current_d8f3,
  .purple_3c0e,
  .preview_58bb {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .yellow-4306,
  .link-9899 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .gradient_under_f7ea,
  .hero_soft_f787,
  .row-2c9b,
  .border_north_adb0 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .hero_5c28,
  .thumbnail_large_b9c4,
  .sort_pro_b0b0,
  .filter_steel_05da,
  .panel-28dc,
  .surface_motion_2343 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .liquid_07d2,
  .shadow-c234,
  .row_active_c150 {
    max-width: none !important;
  }
  
  .widget_green_9935 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .summary-532e {
    font-size: 1.5rem !important;
  }
  
  .current_d8f3 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .basic_5197,
  .light_ace0 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .purple_3c0e {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .image_solid_986b {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .disabled_4c3e {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .liquid_07d2,
  .row_active_c150 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* iPhone X and notch devices */
@supports (padding: max(0px)) {
  body {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

/* css-noise: a126 */
.phantom-card-b4 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.3;
}
