@media screen and (min-width: 991px) {
    
    /* ----------HEADER---------- */

    /* Removes mobile bottom header */
    #bot-header-mobile {
        display: none;
    }

    /* Displays desktop bottom header */
    #bot-header-center-desktop {
        justify-content: space-between;
    }
    
    #bot-header-desktop {
        display: flex;
    }



    /* ----------PRODUCT SECTION - IMAGES & NAV---------- */

    #product-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    #product-section > div {
        display: flex;
        flex-direction: row;
        gap: 40px;
        width: calc(100% - 40px);
        max-width: 1200px;
        margin: 0 auto;
    }

    #product-visual-and-nav {
        display: flex;
        flex-direction: column-reverse;
        width: 60%;
    }

    #product-photos {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    #product-photos > figure {
        flex: 1 1 34%;
        display: block;
    }

    .product-photo-arrows {
        display: none;
    }

    .product-photo-description:last-child {
        display: none;
    }

    #product-information {
        padding-top: 46px;
    }

    /* ----------HEADLINE, REVIEW & PRICE---------- */
    
    #product-headline {
        font-size: 30px;
        font-weight: 800;
    }

    #underline-review {
        font-size: 14px;
    }

    #pricetag {
        font-size: 25px;
    }

    /* ----------COLOR PICKER---------- */

    #color-picker {
        padding: 25px 16px 0 16px;
    }

    #color-picker-bold-text {
        font-size: 16px;
    }

    #color-picker-regular-text {
        font-size: 16px;
    }

    /* ----------SIZING PICKER---------- */
    
    #sizing-picker {
        padding: 25px 16px 25px 16px;
    }
    
    #size-text {
        font-size: 16px;
    }

    #size-guide-text {
        font-size: 16px;
    }

    .size-button {
        /* 7,5px da der er 30px gap i det hele som skal fordeles på de 4 elementer på rækken */
        width: calc(25% - 7.5px);
    }

    /* ----------FOOTER---------- */

    #footer-center {
        display: flex;
        justify-content: center;
    }

    #footer-elements {
        flex-direction: row-reverse;
        justify-content: space-between;
        max-width: 1280px;
    }

    #get-help-container {
        padding: 0;
        width: 280px;
    }

    #info-container {
        padding: 0;
        width: 496px;
    }
}

/* styling for buttons and dropdown shopping bag */
#search-icon {
    border: none;
    background-color: transparent;
}

#person-icon {
    border: none;
    background-color: transparent;
}

#heart-icon {
    border: none;
    background-color: transparent;
}

#shoppingbag-button { /* shopping-bag icon */
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu-icon {
    border: none;
    background-color: transparent;
}