/* MMASHOP - mobile overflow fix v3 SAFE
   Oprava horizontálního swipu bez zásahu do loga, headeru a produktového gridu.
   Nahrazuje v1/v2. Desktop beze změny. */

@media (max-width: 767px){

  /* Pouze vypne horizontální posun viewportu, nerozbíjí vnitřní layouty. */
  html,
  body{
    overflow-x:clip !important;
    max-width:100% !important;
  }

  @supports not (overflow-x: clip){
    html,
    body{
      overflow-x:hidden !important;
    }
  }

  /* Dlouhé H1 na kategoriích - zalomit/zmenšit, ne roztahovat stránku. */
  .type-category h1,
  .type-category .content h1,
  .type-category .category-title h1,
  .type-category .category-header h1{
    display:block !important;
    width:auto !important;
    max-width:calc(100vw - 50px) !important;
    white-space:normal !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
    hyphens:auto !important;
    box-sizing:border-box !important;
    font-size:clamp(34px, 9.8vw, 52px) !important;
    line-height:1.12 !important;
  }

  /* Dlouhé názvy podkategorií uvnitř karet. */
  .type-category .subcategories,
  .type-category .subcategories-list{
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  .type-category .subcategories li,
  .type-category .subcategories-list li,
  .type-category .subcategories .subcategory,
  .type-category .subcategories-list .subcategory{
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
  }

  .type-category .subcategories a,
  .type-category .subcategories-list a,
  .type-category .subcategories .subcategory a,
  .type-category .subcategories-list .subcategory a{
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
    white-space:normal !important;
  }

  .type-category .subcategories a span,
  .type-category .subcategories-list a span,
  .type-category .subcategories .text,
  .type-category .subcategories-list .text,
  .type-category .topic-title,
  .type-category .topic-title a{
    max-width:100% !important;
    min-width:0 !important;
    white-space:normal !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
    box-sizing:border-box !important;
  }

  /* Pojistka pro názvy produktů v katalogu, bez změny gridu. */
  .type-category .products-block .name,
  .type-category .products-block .name a,
  .type-category .products .name,
  .type-category .products .name a,
  .type-category .product .name,
  .type-category .product .name a{
    max-width:100% !important;
    min-width:0 !important;
    white-space:normal !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
    box-sizing:border-box !important;
  }

  /* Chatbot držet vpravo ve viewportu, ale bez globálních zásahů do všech chat tříd. */
  #smartsupp-widget-container,
  .smartsupp-widget,
  .smartsupp-widget-button,
  #chat-application{
    right:14px !important;
    max-width:calc(100vw - 28px) !important;
  }
}
