/* ============================================
   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 (.smooth-d30a) is a descendant of
   .thumbnail-5be1 (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.silver-d4a8 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".frame-current-6b4d" 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.filter_4b31 so it can't cause
   horizontal overflow anyway. */
.copper-215a,
.lite-dcd1,
.shadow_copper_de42,
.frame-d699,
.detail-1308,
.box_dim_8634,
.easy_6ec6,
.row_fresh_a7ae,
.warm_6ec3,
.image-e393,
.sort-7291 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .overlay_right_4139 {
    padding: 8px 0;
  }
  
  .hidden_old_b7f6 img {
    height: 28px;
    width: auto;
  }
  
  .surface-d638 {
    display: none !important;
  }
  
  .icon_inner_0095 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .icon_inner_0095 svg {
    width: 14px;
    height: 14px;
  }
  
  .lower-3008 {
    padding: 6px;
  }
  
  .container_6f17 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .shadow_copper_de42,
  .lite-dcd1,
  .frame-d699,
  .detail-1308,
  .wrapper_8b5b,
  .large-b904,
  .advanced_1fa6,
  .filter_cold_5d38,
  .table-10cb,
  .primary_north_ba11,
  .tabs-copper-d36e,
  .table_02f6 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .component-a05f,
  .simple_7b13 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .first-3515,
  .search-medium-aafa,
  .logo_warm_6ece,
  .component_23c0,
  .chip_dirty_6b21,
  .pagination-in-d6b5,
  .shade_north_d66f {
    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 */
  .menu_e22e,
  .texture-780a,
  .pro-542e,
  .pink-5d22,
  .accent-white-b124 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .shade_black_ef28,
  .mask-4f2e,
  .icon_action_b7fb,
  .icon_easy_ea5e {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .gas-dd0b,
  .accent_pressed_ee65 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .dark-6c99,
  .column-4d8f,
  .notification_left_d4e1,
  .out_de02 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .badge-fixed-89a7,
  .status_in_ec9d,
  .medium-7649,
  .hover-north-3cf2,
  .hero-under-8496,
  .medium-dc84 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .menu_e22e,
  .texture-780a,
  .pink-5d22 {
    max-width: none !important;
  }
  
  .frame-current-6b4d {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .shade_black_ef28 {
    font-size: 1.5rem !important;
  }
  
  .mask-4f2e {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .notice-2655,
  .short-cdb1 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .icon_action_b7fb {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .heading_6d71 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .article_6a10 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .menu_e22e,
  .pink-5d22 {
    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: 8a2a */
.promo-block-y9 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
