
html,
body{
    font-family:"Public Sans", Arial, sans-serif;
}

button,
input,
select,
textarea,
.select2-container{
    font-family:inherit;
}

body{
    background:#fafafc;
}

.catalog-loader{
    align-items:center;
    background:rgba(250,250,252,.78);
    bottom:0;
    display:flex;
    justify-content:center;
    left:0;
    opacity:0;
    pointer-events:none;
    position:fixed;
    right:0;
    top:0;
    transition:opacity .18s ease, visibility .18s ease;
    visibility:hidden;
    z-index:2000;
}

.catalog-loader.is-active{
    opacity:1;
    pointer-events:auto;
    visibility:visible;
}

.catalog-loader-card{
    align-items:center;
    background:#ffffff;
    border:1px solid #d7d7dc;
    border-radius:10px;
    box-shadow:0 18px 45px rgba(0,47,111,.16);
    color:#002f6f;
    display:flex;
    flex-direction:column;
    font-size:13px;
    font-weight:700;
    gap:12px;
    letter-spacing:0;
    min-width:180px;
    padding:22px 24px;
    text-align:center;
    text-transform:uppercase;
}

.catalog-loader-spinner{
    align-items:center;
    border:3px solid rgba(0,47,111,.15);
    border-top-color:#002f6f;
    border-radius:50%;
    display:flex;
    height:58px;
    justify-content:center;
    padding:10px;
    width:58px;
    animation:catalog-loader-spin .85s linear infinite;
}

.catalog-loader-spinner img{
    animation:catalog-loader-logo-spin .85s linear infinite;
    display:block;
    height:28px;
    width:28px;
}

@keyframes catalog-loader-spin{
    to{
        transform:rotate(360deg);
    }
}

@keyframes catalog-loader-logo-spin{
    to{
        transform:rotate(-360deg);
    }
}

.site-header{
    background:#ffffff;
    border-bottom:1px solid #d7d7dc;
}

.site-header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    gap:28px;
}

.site-logo{
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.site-logo img{
    max-height:54px;
    width:auto;
    display:block;
}

.site-nav{
    display:flex;
    align-items:center;
}

.site-nav-desktop{
    flex:1 1 auto;
    gap:22px;
}

.site-nav-offcanvas{
    align-items:stretch;
    flex-direction:column;
    gap:0;
}

.site-nav a{
    color:#002f6f;
    font-weight:700;
    text-decoration:none;
    text-transform:uppercase;
    font-size:14px;
}

.site-nav-offcanvas a{
    border-bottom:1px solid #d7d7dc;
    font-size:16px;
    padding:16px 0;
}

.site-header-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex:0 0 auto;
}

.area-clienti-btn{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-transform:uppercase;
    font-weight:700;
    white-space:nowrap;
}

.area-clienti-btn svg{
    width:18px;
    height:18px;
    fill:currentColor;
}

.area-clienti-btn:hover,
.area-clienti-btn:focus{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
}

.site-menu-btn{
    align-items:center;
    background:#ffffff;
    border:1px solid #d7d7dc;
    border-radius:6px;
    color:#002f6f;
    display:none;
    height:42px;
    justify-content:center;
    padding:0;
    width:42px;
}

.site-menu-btn:hover,
.site-menu-btn:focus{
    border-color:#002f6f;
    outline:none;
}

.site-menu-icon,
.site-menu-icon::before,
.site-menu-icon::after{
    background:currentColor;
    border-radius:2px;
    display:block;
    height:2px;
    width:20px;
}

.site-menu-icon{
    position:relative;
}

.site-menu-icon::before,
.site-menu-icon::after{
    content:"";
    left:0;
    position:absolute;
}

.site-menu-icon::before{
    top:-7px;
}

.site-menu-icon::after{
    top:7px;
}

.site-menu-offcanvas{
    max-width:360px;
    width:88vw;
}

.site-menu-offcanvas .offcanvas-title{
    color:#002f6f;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
}

.detail-breadcrumb a,
.detail-breadcrumb span{
    color:#002f6f;
    font-weight:700;
    text-decoration:none;
}

.catalog-breadcrumb{
    align-items:center;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:18px;
}

.detail-back-btn{
    background:#ffffff;
    border:1px solid #d7d7dc;
    border-radius:6px;
    color:#002f6f;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    margin-bottom:22px;
    padding:10px 16px;
    text-decoration:none;
}

.detail-back-btn:hover,
.detail-back-btn:focus{
    border-color:#002f6f;
    color:#002f6f;
}

.detail-main-box{
    background:#ffffff;
    border-radius:10px;
    padding:28px;
}

.detail-gallery{
    width:100%;
}

.detail-main-image,
.detail-image-placeholder{
    aspect-ratio:1 / 1;
    background:#ffffff;
    border-radius:10px;
    box-sizing:border-box;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    overflow:hidden;
    padding:18px;
}

.detail-main-image img{
    width:auto;
    height:auto;
    max-height:100%;
    max-width:100%;
    object-fit:contain;
    object-position:top center;
    display:block;
    margin-top:0;
}

.detail-main-image-trigger{
    align-items:flex-start;
    background:transparent;
    border:0;
    display:flex;
    height:100%;
    justify-content:center;
    padding:0;
    width:100%;
}

.detail-image-placeholder{
    background:#eeeeee;
    min-height:260px;
    color:#777777;
}

.detail-thumbnails{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:12px 2px 2px;
}

.detail-thumbnail{
    width:76px;
    height:76px;
    border:1px solid #d7d7dc;
    background:#ffffff;
    border-radius:6px;
    padding:4px;
    flex:0 0 auto;
}

.detail-thumbnail.active{
    border-color:#002f6f;
}

.detail-thumbnail img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.detail-summary{
    height:100%;
}

.detail-category{
    color:#002f6f;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
}

.detail-title{
    color:#002f6f;
    font-size:40px;
    font-weight:700;
    line-height:1.1;
    text-transform:uppercase;
    margin-bottom:16px;
}

.detail-code{
    color:#555555;
    font-weight:700;
    margin-bottom:14px;
}

.detail-subtitle{
    color:#777777;
    font-size:18px;
    margin-bottom:18px;
}

.detail-description{
    color:#555555;
    line-height:1.7;
}

.detail-colors-cta{
    background:#eeeeee;
    border-radius:8px;
    margin-top:28px;
    padding:24px;
    display:flex;
    align-items:flex-start;
    flex-direction:column;
    gap:16px;
}

.detail-colors-cta .detail-blue-btn{
    width:100%;
}

.detail-colors-cta h2,
.detail-sidebar h2,
.detail-colors-modal .modal-title{
    color:#002f6f;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin:0;
}

.detail-blue-btn{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
    text-align:center;
    text-transform:uppercase;
    font-weight:700;
}

.detail-blue-btn:hover,
.detail-blue-btn:focus{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
}

.detail-sidebar{
    background:#ffffff;
    border-radius:10px;
    padding:24px;
}

.detail-documents{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:18px;
}

.detail-document-images{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:18px;
}

.detail-document-image-group{
    display:flex;
    flex-direction:column;
    gap:0;
}

.detail-document-image-group h3{
    margin:0;
}

.detail-document-image-toggle{
    align-items:center;
    background:#002f6f;
    border:0;
    border-radius:6px;
    color:#ffffff;
    display:flex;
    font-size:14px;
    font-weight:700;
    gap:10px;
    justify-content:space-between;
    line-height:1.25;
    padding:10px 12px;
    text-align:left;
    text-transform:uppercase;
    width:100%;
}

.detail-document-image-toggle:hover,
.detail-document-image-toggle:focus{
    background:#002f6f;
    color:#ffffff;
}

.detail-document-image-arrow{
    align-items:center;
    display:flex;
    flex:0 0 auto;
    transform:rotate(180deg);
    transition:transform .18s ease;
}

.detail-document-image-toggle.collapsed .detail-document-image-arrow{
    transform:rotate(0deg);
}

.detail-document-image-arrow svg{
    fill:currentColor;
    height:20px;
    width:20px;
}

.detail-document-image-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding-top:10px;
}

.detail-document-image-card{
    background:#ffffff;
    border:1px solid #d7d7dc;
    border-radius:8px;
    color:#002f6f;
    display:block;
    padding:10px;
    text-align:left;
    text-decoration:none;
    width:100%;
}

.detail-document-image-card:hover,
.detail-document-image-card:focus{
    border-color:#002f6f;
    color:#002f6f;
}

.detail-document-image-card img{
    background:#ffffff;
    border-radius:6px;
    display:block;
    height:auto;
    max-height:280px;
    object-fit:contain;
    width:100%;
}

.detail-lightbox-modal .modal-content{
    border:0;
    border-radius:10px;
}

.detail-lightbox-modal .modal-title{
    color:#002f6f;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
}

.detail-lightbox-modal .modal-body{
    align-items:center;
    background:#ffffff;
    display:flex;
    justify-content:center;
    min-height:40vh;
    padding:18px;
}

.detail-lightbox-modal img{
    display:block;
    max-height:78vh;
    max-width:100%;
    object-fit:contain;
    width:auto;
}

.detail-document-card{
    background:#ffffff;
    border:1px solid #d7d7dc;
    border-radius:8px;
    color:#002f6f;
    display:grid;
    align-items:center;
    grid-template-columns:auto 1fr auto;
    gap:12px;
    font-weight:700;
    padding:16px;
    text-decoration:none;
}

.detail-document-card:hover,
.detail-document-card:focus{
    color:#002f6f;
    border-color:#002f6f;
}

.detail-document-type{
    min-width:44px;
    border:1px solid #002f6f;
    border-radius:4px;
    color:#002f6f;
    font-size:11px;
    font-weight:700;
    line-height:1;
    padding:6px 7px;
    text-align:center;
}

.detail-document-title{
    min-width:0;
}

.detail-document-download{
    color:#002f6f;
    display:flex;
    align-items:center;
    justify-content:center;
}

.detail-document-download svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

.detail-reserved-box{
    background:#eeeeee;
    border-radius:8px;
    margin-top:24px;
    padding:22px;
}

.detail-reserved-message{
    color:#555555;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:10px;
    line-height:1.5;
    margin-bottom:18px;
}

.detail-reserved-icon{
    color:#002f6f;
    display:flex;
    margin-top:2px;
}

.detail-reserved-icon svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

.detail-empty-box{
    background:#eeeeee;
    border-radius:8px;
    color:#777777;
    margin-top:18px;
    padding:16px;
}

.detail-modal-color-groups{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.detail-modal-color-group{
    border-top:1px solid #d7d7dc;
    padding-top:18px;
}

.detail-modal-color-group:first-child{
    border-top:0;
    padding-top:0;
}

.detail-modal-color-group h3{
    color:#002f6f;
    font-size:12px;
    font-weight:800;
    letter-spacing:0;
    margin:0 0 10px;
    text-transform:uppercase;
}

.detail-modal-colors{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(190px, 1fr));
    gap:14px;
}

.detail-modal-color{
    border:1px solid #d7d7dc;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:8px;
    color:#002f6f;
    font-weight:700;
    padding:12px;
}

.detail-modal-color small{
    color:#777777;
    display:block;
    font-weight:400;
    margin-top:2px;
}

.detail-modal-color-image{
    width:38px;
    height:38px;
    border:1px solid #d7d7dc;
    border-radius:4px;
    overflow:hidden;
    background:#ffffff;
    flex:0 0 38px;
}

.detail-modal-color-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.detail-options-section{
    margin-top:34px;
}

.detail-options-section > h2{
    color:#002f6f;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

.detail-option-group{
    background:#ffffff;
    border-radius:10px;
    padding:24px;
    height:100%;
}

.detail-option-group h3{
    color:#002f6f;
    font-size:18px;
    font-weight:700;
    margin-bottom:16px;
    text-transform:uppercase;
}

.detail-option-slider{
    position:relative;
}

.detail-option-carousel{
    display:flex;
    gap:14px;
    overflow-x:auto;
    padding-bottom:4px;
}

.detail-option-product{
    border:1px solid #d7d7dc;
    border-radius:8px;
    color:#002f6f;
    display:flex;
    flex:0 0 230px;
    flex-direction:column;
    gap:12px;
    padding:14px;
    text-decoration:none;
}

.detail-option-arrow{
    align-items:center;
    background:#002f6f;
    border:0;
    border-radius:50%;
    color:#ffffff;
    display:none;
    height:38px;
    justify-content:center;
    padding:0;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:38px;
    z-index:2;
}

.detail-option-arrow span{
    display:block;
    font-size:30px;
    line-height:1;
    margin-top:-2px;
}

.detail-option-arrow-prev{
    left:-8px;
}

.detail-option-arrow-next{
    right:-8px;
}

.detail-option-product:hover,
.detail-option-product:focus{
    border-color:#002f6f;
    color:#002f6f;
}

.detail-option-image{
    align-items:center;
    aspect-ratio:4 / 3;
    background:#ffffff;
    border-radius:6px;
    display:flex;
    justify-content:center;
    overflow:hidden;
}

.detail-option-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.detail-option-content{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.detail-option-content strong{
    font-size:15px;
    text-transform:uppercase;
}

.detail-option-content small,
.detail-option-content span{
    color:#777777;
    font-size:13px;
}

.filters-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    position:sticky;
    top:20px;
}

.filters-offcanvas .offcanvas-title{
    color:#002f6f;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
}

.filters-offcanvas-body{
    display:block;
}

.products-search-row{
    align-items:center;
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.products-search-field{
    flex:0 1 360px;
    max-width:360px;
    min-width:0;
}

.products-filter-btn{
    align-items:center;
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
    display:inline-flex;
    flex:0 0 auto;
    font-weight:700;
    gap:8px;
    justify-content:center;
    min-height:38px;
    text-transform:uppercase;
}

.products-filter-btn svg{
    fill:currentColor;
    height:20px;
    width:20px;
}

.products-filter-btn:hover,
.products-filter-btn:focus{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
}

.products-toolbar{
    align-items:center;
    display:flex;
    justify-content:space-between;
    gap:18px;
    margin-bottom:20px;
}

.products-count{
    color:#002f6f;
    font-weight:700;
    text-transform:uppercase;
}

.products-toolbar-options{
    align-items:center;
    display:flex;
    justify-content:flex-end;
    gap:10px;
    min-height:38px;
}

.products-sort-label{
    color:#002f6f;
    font-weight:700;
    margin:0;
    white-space:nowrap;
}

.products-sort{
    width:150px;
    border-color:#d7d7dc;
    color:#002f6f;
    font-weight:700;
}

.products-view-toggle{
    display:flex;
    border:1px solid #d7d7dc;
    border-radius:6px;
    overflow:hidden;
}

.products-view-btn{
    width:38px;
    height:38px;
    border:0;
    background:#ffffff;
    color:#002f6f;
    font-weight:700;
    line-height:1;
}

.products-view-btn + .products-view-btn{
    border-left:1px solid #d7d7dc;
}

.products-view-btn.active{
    background:#002f6f;
    color:#ffffff;
}

.sidebar-title,
.sidebar-section-title{
    color:#002f6f;
    font-weight:700;
    text-transform:uppercase;
}

.sidebar-title{
    border-top:1px solid #d7d7dc;
    padding-top:14px;
    margin-bottom:20px;
}

.sidebar-section{
    border-top:1px solid #d7d7dc;
    padding-top:14px;
    margin-bottom:24px;
}

.sidebar-section-title{
    margin-bottom:12px;
}

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:20px;
    transition:.2s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-3px);
}

.product-card-list{
    flex-direction:row;
}

.product-card-list .product-image{
    width:220px;
    height:auto;
    min-height:180px;
    flex:0 0 220px;
}

.product-card-list .product-content{
    padding:20px;
}

.product-image{
    height:220px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{
    max-width:100%;
    max-height:100%;
}

.product-content{
    padding:15px;
    display:flex;
    flex:1 1 auto;
    flex-direction:column;
}

.product-title{
    font-size:18px;
    color:#002f6f;
    font-weight:700;
    text-transform:uppercase;
}

.product-subtitle{
    font-size:14px;
    color:#777;
}

.subcategory-list{
    margin-top:4px;
}

.category-parent-label,
.category-filter-label{
    display:flex;
    align-items:center;
    gap:7px;
    color:#aaaaaa;
    font-weight:400 !important;
    width:100%;
}

.category-parent-label.selected,
.category-filter-label.selected{
    color:#002f6f;
    font-weight:700 !important;
}

.category-filter-name{
    flex:1 1 auto;
    min-width:0;
}

.category-filter-count{
    color:#777777;
    flex:0 0 auto;
    font-variant-numeric:tabular-nums;
    margin-left:auto;
    min-width:3ch;
    text-align:right;
}

.category-parent-label.selected .category-filter-count,
.category-filter-label.selected .category-filter-count{
    color:#002f6f;
}

.option-filter-group label{
    display:block;
}

.option-filter-group .select2-container{
    width:100% !important;
}

.option-filter-group .select2-container--default .select2-selection--multiple{
    border-color:#d7d7dc;
    border-radius:6px;
    min-height:38px;
}

.option-filter-group .select2-container--default.select2-container--focus .select2-selection--multiple{
    border-color:#002f6f;
}

.option-filter-group .select2-container--default .select2-selection--multiple .select2-selection__choice{
    background:#eeeeee;
    border-color:#d7d7dc;
    color:#002f6f;
    font-size:13px;
}

.option-filter-group .select2-container--default .select2-search--inline .select2-search__field{
    font-size:14px;
    margin-top:7px;
}

.apply-filters-btn{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
    text-align:center;
    text-transform:uppercase;
    font-weight:700;
}

.apply-filters-btn:hover,
.apply-filters-btn:focus{
    background:#002f6f;
    border-color:#002f6f;
    color:#ffffff;
}

.product-detail-btn{
    background:#ffffff;
    border:1px solid #d7d7dc;
    color:#002f6f;
    text-align:center;
    font-weight:700;
    margin-top:auto !important;
}

.product-detail-btn:hover,
.product-detail-btn:focus{
    background:#ffffff;
    border-color:#aaaaaa;
    color:#002f6f;
}

.pagination .page-link{
    background:#ffffff;
    border-color:#d7d7dc;
    color:#002f6f;
    min-width:38px;
    text-align:center;
}

.pagination .page-item.active .page-link{
    background:#ffffff;
    border-color:#002f6f;
    color:#002f6f;
    font-weight:700;
}

.pagination .page-link:hover,
.pagination .page-link:focus{
    background:#ffffff;
    border-color:#002f6f;
    color:#002f6f;
    box-shadow:none;
}

@media (min-width: 992px){
    .filters-offcanvas{
        width:100% !important;
    }

    .filters-offcanvas .filters-offcanvas-body{
        display:block !important;
        overflow:visible;
        padding:0 !important;
        width:100%;
    }

    .filters-box{
        width:100%;
    }
}

@media (max-width: 1199.98px){
    .site-header-inner{
        justify-content:center;
        min-height:74px;
        position:relative;
    }

    .site-nav-desktop{
        display:none;
    }

    .site-menu-btn{
        display:flex;
        left:0;
        position:absolute;
        top:50%;
        transform:translateY(-50%);
    }

    .site-header-actions{
        position:absolute;
        right:0;
        top:50%;
        transform:translateY(-50%);
    }

    .site-header-actions{
        flex-wrap:wrap;
    }

    .products-toolbar{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .products-toolbar-options{
        flex-wrap:wrap;
    }

    .product-image{
        height:200px;
    }

    .detail-title{
        font-size:34px;
    }

    .detail-main-box,
    .detail-sidebar,
    .detail-option-group{
        padding:22px;
    }

    .detail-option-product{
        flex-basis:210px;
    }
}

@media (max-width: 991.98px){
    .site-header-inner{
        flex-wrap:wrap;
        min-height:0;
        padding:16px 0;
        row-gap:14px;
    }

    .site-logo{
        order:1;
    }

    .site-menu-btn{
        top:18px;
        transform:none;
    }

    .site-header-actions{
        position:absolute;
        right:0;
        top:18px;
        transform:none;
        width:auto;
    }

    .filters-offcanvas{
        width:min(88vw, 380px);
    }

    .filters-offcanvas-body{
        padding:0;
    }

    .filters-box{
        border-radius:0;
        margin-bottom:24px;
        position:static;
        top:auto;
    }

    .products-count{
        flex:1 1 100%;
    }

    .products-toolbar-options{
        justify-content:flex-start;
        width:100%;
    }

    .products-search-field{
        flex:1 1 auto;
        max-width:none;
    }

    .product-card-list{
        flex-direction:column;
    }

    .product-card-list .product-image{
        flex:0 0 auto;
        min-height:220px;
        width:100%;
    }

    .detail-breadcrumb{
        line-height:1.6;
    }

    .detail-sidebar{
        margin-top:0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px){
    #products-container.products-grid-view > .col-md-3{
        flex:0 0 33.333333%;
        max-width:33.333333%;
    }
}

@media (max-width: 767.98px){
    body > .container-fluid,
    body > main.container-fluid{
        padding-left:16px;
        padding-right:16px;
    }

    .detail-main-box,
    .detail-sidebar,
    .detail-option-group{
        padding:18px;
    }

    .detail-title{
        font-size:28px;
    }

    .detail-subtitle{
        font-size:16px;
    }

    .detail-options-section > h2{
        font-size:20px;
    }

    .detail-colors-cta{
        align-items:flex-start;
        flex-direction:column;
        padding:18px;
    }

    .site-header-inner{
        min-height:0;
        padding:14px 0;
    }

    .site-logo img{
        max-height:46px;
    }

    .site-nav a{
        font-size:13px;
        line-height:1.4;
        padding:14px 0;
    }

    .area-clienti-btn{
        gap:0;
        height:42px;
        padding:0;
        width:42px;
    }

    .area-clienti-btn span{
        display:none;
    }

    .filters-box{
        padding:16px;
    }

    .products-toolbar{
        gap:12px;
    }

    .products-sort{
        flex:1 1 150px;
        min-width:0;
    }

    .product-image{
        height:190px;
    }

    .product-title{
        font-size:16px;
    }

    .detail-document-card{
        grid-template-columns:auto minmax(0, 1fr) auto;
        padding:14px;
    }

    .detail-option-slider{
        padding:0 28px;
    }

    .detail-option-carousel{
        gap:0;
        overflow-x:hidden;
        padding-bottom:0;
        scroll-behavior:smooth;
        scroll-snap-type:x mandatory;
    }

    .detail-option-product{
        flex:0 0 100%;
        max-width:none;
        scroll-snap-align:start;
    }

    .detail-option-arrow{
        display:flex;
    }

    .detail-option-arrow-prev{
        left:0;
    }

    .detail-option-arrow-next{
        right:0;
    }

    .detail-modal-colors{
        grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
    }

    .pagination{
        flex-wrap:wrap;
        gap:6px;
        justify-content:center;
    }
}

@media (max-width: 575.98px){
    .site-menu-btn{
        height:38px;
        width:38px;
    }

    .products-toolbar-options{
        display:grid;
        grid-template-columns:1fr auto;
        width:100%;
    }

    .products-sort-label{
        grid-column:1 / -1;
    }

    .product-card{
        border-radius:8px;
    }

    .product-image{
        height:180px;
    }

    .detail-title{
        font-size:24px;
    }

    .detail-main-box,
    .detail-sidebar,
    .detail-option-group{
        border-radius:8px;
        padding:16px;
    }

    .detail-thumbnail{
        flex-basis:64px;
        height:64px;
        width:64px;
    }

    .detail-option-slider{
        padding:0 28px;
    }

    .detail-option-carousel{
        gap:0;
        overflow-x:hidden;
        padding-bottom:0;
        scroll-behavior:smooth;
        scroll-snap-type:x mandatory;
    }

    .detail-option-product{
        flex:0 0 100%;
        max-width:none;
        scroll-snap-align:start;
    }

    .detail-option-arrow{
        display:flex;
    }

    .detail-option-arrow-prev{
        left:0;
    }

    .detail-option-arrow-next{
        right:0;
    }

    .detail-document-card{
        gap:10px;
        grid-template-columns:auto minmax(0, 1fr);
    }

    .detail-document-download{
        display:none;
    }

    .detail-modal-colors{
        grid-template-columns:1fr;
    }
}
