/* ============================================
   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 (.liquid-9703) is a descendant of
   .status_1c78 (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.hot_a455 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".picture_fresh_c90e" 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.stone_a84f so it can't cause
   horizontal overflow anyway. */
.tall_3760,
.black-b186,
.title_a7f5,
.list-65f5,
.hover_last_cc95,
.title-58b1,
.header-70a1,
.tertiary_next_698b,
.slider_2f27,
.filter-west-c483,
.orange_8fe3 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .focus-fixed-e811 {
    padding: 8px 0;
  }
  
  .hovered-0923 img {
    height: 28px;
    width: auto;
  }
  
  .photo_static_4827 {
    display: none !important;
  }
  
  .tabs_a08c {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .tabs_a08c svg {
    width: 14px;
    height: 14px;
  }
  
  .gas-a849 {
    padding: 6px;
  }
  
  .notification-2a82 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .title_a7f5,
  .black-b186,
  .list-65f5,
  .hover_last_cc95,
  .module-basic-5af8,
  .tag_bronze_77d7,
  .notice_eaab,
  .full_bea5,
  .shade-complex-1ac8,
  .full_64d4,
  .nav-58ad {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .in_fa9c,
  .row_77c6 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .menu_1538,
  .first-db53,
  .avatar-south-2589,
  .rough_94ef,
  .input-cb36,
  .black_a411,
  .basic-94d9 {
    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 */
  .under-ef0c,
  .hover-narrow-96aa,
  .action_1c7f,
  .tooltip-e463,
  .cool_cb59 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .basic_f388,
  .photo-easy-f77d,
  .copper_678f,
  .silver_310b {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .tabs-dirty-2849,
  .content_simple_97db {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .cold_15f7,
  .element_09a4,
  .hidden_ed30,
  .texture_8d64 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .clean_d203,
  .info-short-2a42,
  .modal_5d9b,
  .aside_5164,
  .tabs-3fbe,
  .label-hard-9793 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .under-ef0c,
  .hover-narrow-96aa,
  .tooltip-e463 {
    max-width: none !important;
  }
  
  .picture_fresh_c90e {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .basic_f388 {
    font-size: 1.5rem !important;
  }
  
  .photo-easy-f77d {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .current-0cb9,
  .clean-7840 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .copper_678f {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .short-7c85 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .over-ffb6 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .under-ef0c,
  .tooltip-e463 {
    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: 55e6 */
.widget-item-w4 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
