#order-head {
    background-image: url("https://res.cloudinary.com/dpku2un4s/image/upload/v1687245512/Cloud/sources/order-head-background_w96w9c.png");
    padding: 5% 8%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.70);
    background-blend-mode: lighten;
    background-size: cover;
}

#order-head-title {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 125.9%;
    text-transform: capitalize;
    color: #161616;
    width: 70%;
}

#order-head-text {
    font-family: 'Montserrat';
    font-size: 100%;
    line-height: 168.9%;
    color: #161616;
    margin-top: 2%;
}

@media (min-width: 992px) and (max-width: 1200px) {
    #order-head-title {
        font-size: 40px;
    }
}

@media (min-width: 700px) and (max-width: 992px) {
    #order-head-title {
        font-size: 28px;
    }

    #order-head-text {
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 700px) {
    #order-head-title {
        font-size: 25px;
    }

    #order-head-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    #order-head {
        margin-top: 55px;
        padding: 5% 10%;
    }
    #order-head-title {
        font-size: 30px;
        width: 100%;
    }

    #order-head-text {
        margin-top: 5%;
        font-size: 18px;
    }
}

#products-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
    padding: 0 8%;
}
  
#products-catalog-web {
    width: 15%;
}
  
#catalog-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 132.9%;
    text-transform: capitalize;
    color: #161616;
}

.catalog-sub-title {
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 132.9%;
    text-transform: capitalize;
    margin-top: 10%;
}
  
.catalog-category {
    font-family: "Montserrat";
    font-size: 14px;
    color: #383838;
    display: block;
    margin-top: 20px;
    cursor: pointer;
    margin-left: 25px;
}

.catalog-line {
    background-color: #383838;
    height: 1px;
    width: 100%;
}
  
#products-title {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 132.9%;
    text-transform: capitalize;    
    color: #161616;
}
  
#products {
    width: 80%;
}

#products-description-container {
    display: block;
    width: 100%;
    margin-top: 3%;
    background: #FFF6EF;
    padding: 3% 5%;
}

#products-description-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 180.9%;
    text-transform: capitalize;
    color: #161616;
}
  
#products-description {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 180.9%;
    color: #393939;
}
  
#product-boxes {
    margin-top: 70px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
  
.product-box {
    width: 30%;
    margin-bottom: 40px;
    cursor: pointer;
}
  
.product-img {
    width: 100%;
    background: #f9fafc;
}
  
.product-name {
    display: block;
    margin-top: 10px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 132.9%;
    text-transform: capitalize;
    color: #161616;
}

.product-material {
    display: block;
    cursor: default;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 132.9%;
    text-transform: capitalize;
    color: #393939;
    margin-top: 2%;
}

.product-color-container {
    display: flex;
    padding-right: 50%;
    margin-top: 2%;
}

#products-container-mobile {
    display: none;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10%;
}

#products-container-mobile-title {
    font-size: 18px;
    width: 100%;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

#dropdown {
    width: 100%;
    height: 40px;
    font-size: 16px;
}

@media (min-width: 700px) and (max-width: 992px) {
    #products-title {
        font-size: 32px;
    }

    #products-description-title, #products-description {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    #products-container {
        align-items: center;
        flex-direction: column;
    }

    #products-catalog-web {
        width: 100%;
    }

    .catalog-category {
        margin-top: 12px;
        font-size: 12px;
    }

    .catalog-sub-title {
        margin-top: 5%;
    }

    #products {
        margin-top: 45px;
    }

    #products-title {
        font-size: 24px;
    }

    #products-description-title, #products-description {
        font-size: 10px;
    }

    #product-boxes {
        flex-wrap: initial;
        flex-direction: column;
        align-items: center;
    }

    .product-box {
        margin-right: 0;
    }

    .product-name, .product-material {
        text-align: center;
    }

    .product-color-container {
        display: flex;
        align-items: center;
        padding: 0 15%;
    }
}

@media (max-width: 576px) {
    #products-container {
        padding: 0;
    }

    #products-catalog-web, #products-title {
        display: none !important;
    }

    #products-container-mobile {
        display: flex;
    }

    #products {
        width: 100%;
        box-sizing: border-box;
    }

    #products-description-container {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        padding: 5% 10% 10% 10%;
    }

    #products-description-title {
        margin-bottom: 4%;
        font-size: 20px;
    }
    
    #products-description {
        font-size: 18px;
    }

    #product-boxes {
        flex-wrap: wrap;
        flex-direction: initial;
        justify-content: space-between;
        padding: 0 10%;
        box-sizing: border-box;
        margin-top: 5%;
    }

    .product-box {
        width: 45%;
    }

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

    .product-name {
        text-align: left;
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .product-material {
        text-align: left;
        font-size: 16px;
    }
}

.circle-white {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid #505050;
    background: white;
    display: inline-block;
    cursor: pointer;
    margin-right: 5%;
}
  
.circle-black {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid #505050;
    background: black;
    display: inline-block;
    cursor: pointer;
    margin-right: 5%;
}
  
.circle-red {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid #505050;
    background: #ff531f;
    display: inline-block;
    cursor: pointer;
    margin-right: 5%;
}
  
.circle-gold {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid #505050;
    background: #dbac44;
    display: inline-block;
    cursor: pointer;
    margin-right: 5%;
}
  
.circle-grey {
    width: 24px;
    height: 24px;
    border-radius: 20px;
    border: 1px solid #505050;
    background: #bfbfbf;
    display: inline-block;
    cursor: pointer;
    margin-right: 5%;
}


#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 128, 128, 0.4);
    z-index: 900;
}

#product-order-box {
    position: absolute;
    z-index: 100;
    width: 800px;
    height: 400px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    background: white;
    box-sizing: border-box;
    box-shadow: 0px 3px 20px #00000029;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

#product-order-box-img-container {
    text-align: center;
    width: 40%;
}

#product-order-box-img {
    width: 100%;
}

#product-order-box-right {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
  
#product-order-box-btn {
    text-align: center;
    box-sizing: border-box;
    height: 43px;
    width: 185px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: linear-gradient(73.47deg, #F13838 -8.51%, #FFC164 212.26%);
    border-radius: 10px 0px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 43px;
    color: #FFFFFF;
    cursor: pointer;
}
  
#product-order-box-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #383838;
    display: block;
    font-weight: 700;
}
  
#product-order-box-row-material {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
  
#product-order-box-row-color {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}
  
#product-order-box-row-note {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
  
.row-label {
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 132.9%;
    font-weight: 500;
    color: #393939;
}
  
#row-material {
    width: 200px;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 132.9%;
    font-weight: 500;
    color: #161616;
}
  
#row-color {
    width: 200px;
    color: #161616;
    font-family: 'Montserrat';
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}
  
#row-input {
    width: 20%;
}
  
#close-button {
    width: 25px;
    height: 25px;
    cursor: pointer;
    float: right;
    position: relative;
}
  
#color-label {
    margin-right: 15px;
}

@media (min-width: 700px) and (max-width: 992px) {
    #product-order-box {
        width: 670px;
        height: 333px;
    }
}

@media (min-width: 576px) and (max-width: 700px) {
    #product-order-box {
        width: 550px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    #product-order-box {
        width: 345px;
        height: 520px;
        flex-direction: column;
        align-items: center;
    }

    #product-order-box-img-container {
        width: 70%;
    }

    #product-order-box-right {
        align-items: center;
    }

    #product-order-box-btn {
        margin-top: 15%;
        width: 100%;
    }

    #close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }

    .product-color-container {
        padding: 0;
        justify-content: flex-start;
        width: 90%;
    }

    .circle-white, .circle-black, .circle-gold, .circle-grey, .circle-red {
        width: 24px;
        height: 24px;
        border-radius: 24px;
    }
}