/* Responsive */
/* Global container fix for all screen sizes */
.container {
    box-sizing: border-box !important;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.site-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.site-content__wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.site-content__inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ev-content-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .px-header-top-bar {
        display: block !important;
    }
    
    .hidden-desktop {
        display: none !important;
    }
    
    /* Hide mobile logo column on desktop */
    .px-menu .px-menu-col.left {
        display: none !important;
    }
    
    /* Flickity viewport margin-top on desktop */
    .flickity-viewport {
        margin-top: 75px;
    }
  }
  
  @media (max-width: 1200px) {
    .px-header-top-search {
        max-width: 400px;
    }
    
    .px-header-top-right {
        gap: 20px;
    }
    
    .px-header-top-item {
        gap: 10px;
    }
    
    .px-header-top-item-label {
        font-size: 10px;
    }
    
    .px-header-top-item-value {
        font-size: 13px;
    }
  }
  
  @media (max-width: 991px) {
    /* Ensure body and html are full width on mobile */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .site-header{
        top: unset;
      }
    
    /* Fix container overflow on mobile */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Ensure all content inside container doesn't overflow */
    .container > * {
        box-sizing: border-box !important;
    }
    
    /* Fix site-content wrapper */
    .site-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .site-content__wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .site-content__inner {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .ev-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Hide product menu images on mobile */
    .px-menu-mobile .px-menu-product-image,
    .px-menu-mobile .px-menu-product-image img {
        display: none !important;
    }
    #mobile-main-menu{
        padding-left: 0 !important;
    }
    #mobile-main-menu .menu-item-arrow__button{
        border: none !important;
    }
    
    .px-header-top-bar {
        display: none !important;
    }
    
    .hidden-desktop {
        display: block !important;
    }
    
    /* Hide menu column on mobile */
    .px-menu .px-menu-col.mid {
        display: none !important;
    }
    
    /* Mobile header layout: logo left, hamburger right */
    .px-menu .px-menu-row.main {
        justify-content: space-between;
        align-items: center;
        padding: 0px 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .px-menu .px-menu-col.left {
        display: flex !important;
        flex: 0 0 auto;
        padding-left: 16px;
    }

    .px-menu-block.hamburger.show-touch-devices .px-hamburger-button{
        border: none;
    }
    
    /* Align hamburger button to the right on mobile */
    .px-menu .px-menu-col.right {
        justify-content: flex-end;
        flex: 0 0 auto;
        padding-right: 16px;
    }
    
    .px-menu .px-hamburger-button {
        margin-left: 0;
    }
    
    /* Remove margin-top for flickity-viewport on mobile */
    .flickity-viewport {
        margin-top: 0;
    }
  }
  
  @media (max-width: 768px) {
    .px-menu-logo-mobile-img{
        max-width: 100px;
    }
    .px-header-top-bar-inner {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .px-header-top-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .px-header-top-right {
        gap: 15px;
    }
    
    .px-header-top-item {
        gap: 8px;
    }
    
    .px-header-top-item-icon {
        width: 36px;
        height: 36px;
    }
    
    .px-header-top-item-label {
        font-size: 10px;
    }
    
    .px-header-top-item-value {
        font-size: 13px;
    }
  }