body {
    position: relative;

    .catalogTopContainer {
        position: sticky;
        top: 0;
        z-index: 900;
        box-shadow: 0px 1px 1px 0px rgba(0,0,0, 0.4);
    }

    #filtersRoot {
        #filtersPanel[hidden]{ display:none !important; }

        #filtersPanel {
            padding: 0;
        }
        
        .filterOpenerContainer {
            background-color: white;
            padding: 1rem;
            display: flex;
            gap: 2rem;
            width: fit-content;
            align-items: center;
            justify-content: center;
            padding-bottom: 0.5rem;
            
            .filterOpener {
                border: none;
                text-transform: uppercase;
                color: white;
                background-color: #232F3E;
                width: fit-content;
                font-size: 0.7rem;
                padding: 0.5rem;
                border-radius: 0.25rem;
                cursor: pointer;
            }

            .resetLink {
                text-decoration: none;
                background-color: #232F3E;
                padding: 0.5rem;
                color: white;
                border-radius: 0.25rem;
                text-transform: uppercase;
                font-size: 0.7rem;
            }
        }
        
        .filtersContainer {
            padding: 0 0.25rem 0.25rem 0.25rem;
            background-color: white;
            
            #filtersForm {
                .filtersGrid {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    padding: 0.5rem;
                    
                    .firstFieldsetContainer {
                        display: flex;
                        gap: 0.5rem;
                        flex-direction: column;
                        text-align: center;
                        
                        @media (min-width: 1024px) {
                            flex-direction: row;
                            margin: 0 auto;
                        }
                    }
                    
                    .secondFieldsetContainer {
                        display: grid;
                        text-align: center;
                        gap: 0.25rem;
                        grid-template-columns: repeat(auto-fit, minmax(100px, max-content));
                        margin: 0 auto;
                        
                        @media (min-width: 1024px) {
                            grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
                        }
                    }

                    .fieldsetContainer {
                        @media (min-width: 1024px) {
                            display: flex;
                            gap: 0.5rem;
                        }
                        
                        .filterBlock {
                            width: fit-content;
                            background-color: #f2f2f2;
                            border-radius: 0.25rem;
                            border: solid 1px #222;
                            height: fit-content;    

                            .filterBlockTitle {
                                background-color: #232F3E;
                                border-top-left-radius: 0.25rem;
                                border-top-right-radius: 0.25rem;
                                color: white;
                                padding: 0.25rem;
                                font-weight: bolder;
                                font-size: 0.7rem;

                                @media (min-width: 1024px) {
                                    font-size: 1rem;
                                }
                            }

                            .filterBlockContent {
                                padding: 0.5rem;
                            }
                        }

                        label {
                            font-size: 0.7rem;
    
                            @media (min-width: 1024px) {
                                font-size: 1rem;
                            }
                        }
                        
                        select {
                            font-size: 0.7rem;
                            border: none;
                            border-radius: 0;
                            width: 100%;
                            height: fit-content;
                            border-bottom-left-radius: 0.25rem;
                            border-bottom-right-radius: 0.25rem;
                            scrollbar-width: none;
                            background-color: #f2f2f2;
                            padding: 0.25rem;
                            
                            &::-webkit-scrollbar {
                                width: 0;
                                height: 0;
                            }
                            
                            @media (min-width: 1300px) {
                                font-size: 1rem;
                            }
                        }
                    }

                    .dd { 
                        position: relative; 
                    }

                    .dd-trigger { 
                        display: flex; 
                        align-items: center; 
                        gap: 0.25rem; 
                        width: 100%; 
                        padding: 0.25rem; 
                        cursor: pointer; 
                        border-radius: 0;
                        border: 0;
                        border-bottom-left-radius: 0.25rem;
                        border-bottom-right-radius: 0.25rem;
                        background: #f2f2f2; 
                    }

                    .dd-caret { 
                        margin-left: auto; 
                    }

                    .dd-menu { 
                        position: absolute; 
                        left: 0; 
                        right: 0; 
                        margin-top: 0.25rem; 
                        background: #f2f2f2; 
                        border: 1px solid #ddd; 
                        border-radius: 0.25rem; 
                        padding: 0.25rem; 
                        z-index: 20; 
                        max-height: 240px; 
                        overflow: auto; 
                    }

                    .dd-option { 
                        display: flex; 
                        align-items: center; 
                        gap: 0.25rem; 
                        padding: 0.25rem; 
                        cursor: pointer; 
                        border-radius: 0.25rem; 
                        
                        @media (min-width: 1024px) {
                            padding: 0.5rem; 
                        }
                    }

                    .dd-label {
                        font-size: 0.7rem;

                        @media (min-width: 1024px) {
                            font-size: 1rem;
                        }
                    }
                    
                    .dd-swatch { 
                        width: 16px; 
                        height: 16px; 
                        border-radius: 50%; 
                        object-fit: cover; 
                        border: 1px solid #cfcfcf;
                        display: inline-block; 
                    }

                    .dd-swatch--empty { 
                        background: repeating-conic-gradient(#eee 0% 25%, #fff 0% 50%) 50% / 8px 8px; 
                    }
                }

                .filtersActions {
                    display: flex;
                    gap: 1rem;
                    margin: 0.5rem 0.25rem;

                    .filtersActionBtn {
                        padding: 0.5rem;
                        border-radius: 0.25rem;
                        color: white;
                        border: none;
                        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
                        text-transform: uppercase;
                        font-size: 0.7rem;
                    }

                    .applyBtn {
                        background-color: mediumseagreen;
                    }
                }
            }
        }
    }

    .anchorContainer {
        justify-content: space-around;
        align-items: center;
        background-color: #232F3E;
        display: grid;
        padding: 0.5rem 0;
        grid-template-columns: 1fr 1fr 1fr;
        
        @media (min-width: 768px) {
            padding: 1rem 0;
            grid-template-columns: 1fr 1fr 1fr 1fr;
        }

        @media (min-width: 1024px) {
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        }

        @media (min-width: 1600px) {
            display: flex;
        }

        li {
            list-style: none;
            display: flex;
            align-items: center;
            
            a {
                text-decoration: none;
                color: white;
                font-size: 0.5rem;
                padding: 0.25rem;
                
                @media (min-width: 1024px) {
                    font-size: 0.7rem;
                    padding: 0.45rem;
                    border-radius: 0.25rem;
                    transition: 0.3s;

                    &:hover {
                        color: #004eb4;
                        transition: 0.3s;
                        background-color: white;
                    }
                }
            }
        }
    }
    
    .aboutUsMain {
        position: relative;
        background-image: url('/assets/img/quiSommeNous/machine_à_coudre.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
        z-index: 1;
        padding-top: 2rem;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.35);
            z-index: -1;
        }

        h1, h2 {
            color: white;
            text-transform: uppercase;
            text-align: center;
            font-size: 1rem;
            padding: 0.5rem;
            border-radius: 0.25rem;
            width: fit-content;
            margin: 0 auto;

            .frenchFlagContainer {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                border-bottom-left-radius: 0.25rem;
                border-bottom-right-radius: 0.25rem;

                .frenchFlagPiece {
                    height: 2px;
                }

                #frenchFlagBluePiece {
                    background-color: #004eb4;
                    border-bottom-left-radius: 0.25rem;
                }
                
                #frenchFlagWhitePiece {
                    background-color: white;
                }
                
                #frenchFlagRedPiece {
                    background-color: rgb(255, 17, 17);
                    border-bottom-right-radius: 0.25rem;
                }
            }

            @media (min-width: 764px) {
                font-size: 1.25rem;
            }
        }

        #aboutUs {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;

            @media (min-width: 1024px) {
                gap: 4rem;
            }
    
            .aboutUsSectionContainer {
                display: flex;
                flex-direction: column;
                gap: 1rem;

                @media (min-width: 1024px) {
                    flex-direction: row;
                }
                
                .aboutUsSectionCard {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    border-radius: 0.25rem;
                    background-color: white;
                    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
                    max-width: 450px;
                    margin: 0 auto;
                    height: fit-content;
                    
                    .aboutUsCardTopContent {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 1rem;

                        h3 {
                            text-transform: uppercase;
                            color: #232F3E;
                            font-size: 1rem;
                            padding: 0.5rem 1rem;
                        }

                        img {
                            width: 32px;
                        }
                    }

                    .aboutUsSectionContent {
                        text-align: center;
                        padding: 0.5rem 1rem;

                        ul {
                            display: flex;
                            flex-direction: column;
                            gap: 0.5rem;

                            li {
                                list-style: none;
                            }
                        }
                    }

                    .frenchFlagContainer {
                        display: grid;
                        grid-template-columns: 1fr 1fr 1fr;
                        border-bottom-left-radius: 0.25rem;
                        border-bottom-right-radius: 0.25rem;

                        .frenchFlagPiece {
                            height: 10px;
                        }

                        #frenchFlagBluePiece {
                            background-color: #004eb4;
                            border-bottom-left-radius: 0.25rem;
                        }
                        
                        #frenchFlagWhitePiece {
                            background-color: white;
                        }
                        
                        #frenchFlagRedPiece {
                            background-color: rgb(255, 17, 17);
                            border-bottom-right-radius: 0.25rem;
                        }
                    }
                }
            }
        }

        #aboutUsBetweenSectionContent {
            background-color: white;
            text-align: center;
            color: #222;
            text-align: center;
            padding: 1rem;
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);

            @media (min-width: 1024px) {
                font-size: 1.25rem;
            }
        }

        .aboutUsSection {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            justify-content: center;

            .aboutUsSectionImgContainer {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;

                @media (min-width: 1024px) {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    align-items: center;
                    justify-content: center;
                }
            }

            h2 {
                color: white;
                margin-top: 2rem;
            }

            .aboutUsSectionP {
                background-color: white;
                color: #232F3E;
                text-align: center;
                padding: 1rem;
                width: 100%;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);

                @media (min-width: 1024px) {
                    font-size: 1.25rem;
                }
            }

            .black {
                background-color: #222;
                color: white;
                text-align: center;
                padding: 1rem 0;
            }

            h2 {
                text-transform: uppercase;
                text-align: center;
                font-size: 1.25rem;
            }

            .aboutUsBlackH2 {
                color: #222;
            }

            img {
                width: 90%;
                margin: 0 auto;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
                border-radius: 0.25rem;

                @media (min-width: 1024px) {
                    max-width: 600px;
                }
            }
        }

        #exceptionalCostume {
            background-color: #222;
            padding-bottom: 2rem;
        }

        #disfraPants {
            background-color: white;
            padding-bottom: 2rem;
        }

        #trustUs {
            background-color: #002B5C;
            display: flex; 
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            padding-bottom: 2rem;

            div {
                background-color: white;
                color: #222;
                text-align: center;
                padding: 1rem 0;
            }

            .aboutUsVideoContainer {
                height: fit-content;
                padding: 0;
                border-radius: 0.25rem;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
                position: relative;
                width: 80%;
                max-width: 960px;
                margin: 0 auto;
                margin-top: 2rem;
                aspect-ratio: 16 / 9;

                @media (min-width: 1024px) {
                max-width: 1200px;
                }
                
                iframe {
                    position: absolute;
                    inset: 0;
                    width: 100%;
                    height: 100%;
                    border: 0;
                }
            }

            .trustSectionImgContainer {
                display: flex;
                align-items: center;
                gap: 2rem;
                background-color: unset;

                @media (min-width: 1024px) {
                    justify-content: space-around;
                    gap: unset;
                    width: 50%;
                }

                img {
                    max-width: 150px;
                    padding: 1rem;
                    background-color: white;
                    border-radius: 0.25rem;
                    margin: 0 auto;
                    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
                }
            }
        }
    }

    .sellerDashboardMain {
        background-color: #e0e0e0;

        h1 {
            text-align: center;
            font-size: 1.25rem;
            padding: 0.5rem;
            background-color: #232F3E;
            color: white;
            text-transform: uppercase;
            width: 100%;
        }

        .sellerHelloName {
            background-color: white;
            width: 100%;
            font-weight: bolder;
            text-align: center;
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
            padding: 0.5rem;
        }

        #sellerDashboardCustomerHandlerSection {
            padding: 2rem;

            h2 {
                font-size: 1rem;
                width: fit-content;
                margin: 1rem 0;
                margin-left: 0.5rem;
                margin-right: auto;
                border-radius: 0.25rem;
                padding: 1rem;
                background-color: #232F3E;
                color: white;
                text-transform: uppercase;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
            }

            .sellerDashboardCustomerContainer {
                display: grid;
                max-width: 1800px;
                gap: 0.25rem;

                @media (min-width: 600px) {
                    grid-template-columns: 1fr 1fr;
                }

                @media (min-width: 900px) {
                    grid-template-columns: 1fr 1fr 1fr;
                }

                @media (min-width: 1200px) {
                    grid-template-columns: 1fr 1fr 1fr 1fr;
                }
                
                @media (min-width: 1600px) {
                    grid-template-columns: 1fr 1fr 1fr 1fr;
                }

                @media (min-width: 1900px) {
                    grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
                }

                .sellerDashboardCustomers {
                    border: solid 1px #232F3E;
                    border-radius: 0.25rem;
                    width: fit-content;
                    display: flex;
                    flex-direction: column;
                    gap: 0.5rem;
                    background-color: white;

                    .sellerDashboardCustomerContent {
                        list-style: none;
                        display: flex;
                        gap: 0.5rem;
                        align-items: center;
                        padding: 0.25rem;

                        img {
                            width: 16px;
                        }
                    }

                    .sellerDashboardCustomerCodeContainer {
                        width: 100%;
                        background-color: rgba(0, 50, 255, 0.3);
                        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.6);
                        display: flex;
                        justify-content: space-between;
                        align-items: center;

                        img {
                            width: 16px;

                            @media (min-width: 1024px) {
                                transition: 0.3s;

                                &:hover {
                                    filter: invert(50%);
                                    cursor: pointer;
                                    transition: 0.3s;
                                }
                            }
                        }   
                    }
                }
            }
        }
    }

    .legalSheetMain {
        padding: 1rem;
        background-color: #e0e0e0;

        h1 {
            font-size: 1.25rem;
            color: #232F3E;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            li {
                list-style: none;
                margin-left: 1rem;
            }
        }

        div {
            h2 {
                color: #232F3E;
                text-transform: uppercase;
                margin: 1rem 0;
                font-size: 1rem;
            }
        }
    }

    .searchResultMain {
        h1 {
            padding: 2rem;
            color: #232F3E;
            text-transform: uppercase;
        }

        .searchResults {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
            gap: 2rem;
            margin: 0 auto;
            max-width: 1400px;
            justify-content: center;
            margin-bottom: 2rem;

            .productCard {
                list-style: none;
                border: solid 1px #232F3E;
                border-radius: 0.25rem;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.8);
                /* width: 250px; */
                height: fit-content;
                overflow: hidden;
                width: fit-content;
                position: relative;

                .productCardItem {
                    text-align: center;
                    background-color: #232F3E;
                    color: white;
                    padding: 0.5rem;
                    text-align: center;
                    font-size: 0.9rem;
                }

                .productCardMainContent {
                    position: relative; 
                    overflow: hidden;
                    display: block;
                    background-color: white; 

                    .productCardPriceContainer {
                        color: white;
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        padding: 0.5rem;
                        font-size: 0.8rem;
                        border-top-left-radius: 0.25rem;
                        background-color: #232F3E;
                    }

                    .productFilter {
                        position: absolute;
                        z-index: 1;
                        background-color: rgba(0, 0, 0, 0.2);
                        top: 200%;
                        bottom: 0;
                        right: 0;
                        left: 0;
                        transition: 0.6s;
                        text-align: center;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        gap: 2rem;

                        div {
                            background-color: white;
                            color: black;
                            padding: 0.5rem;
                            border-radius: 0.25rem;
                            font-weight: bold;
                            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
                        }

                        .linkIcon {
                            width: 64px;
                            filter: invert(100%);
                        }
                    }

                    .productImg {
                        display: block;
                        object-fit: contain;
                        max-height: 220px;
                        margin: 0 auto;
                        width: 100%;
                    }

                    &:hover {
                        .productFilter {
                            transition: 0.6s;
                            top: 0;
                            cursor: pointer;
                        }
                    }
                }

                .productQuickShow {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0 1rem;

                    .productQuickShowBtn {
                        text-transform: uppercase;
                        transition: 0.3s;
                        font-weight: bolder;
                    }

                    .loopIcon {
                        width: 16px;
                        filter: invert(100%);
                    }
                    
                    &:hover {
                        cursor: pointer;
                        color: #004eb4;
                        transition: 0.3s;

                        .loopIcon {
                            transform: scale(1.2);
                        }
                    }
                }
            }
        }
    }

    /* MDP RESET MODAL */

            .resetPasswordModalContent {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                padding: 0.5rem;
                align-items: center;

                .resetPasswordContent {
                    display: flex;
                    flex-direction: column;
                    gap: 0.5rem;
                    align-items: center;
                    padding: 0.5rem;

                    code {
                        color: #204b68;
                    }
                }
            }
}