:root {
    --prim-color: #fbb042;
    --sec-color: #000000;
    --tert-color: #264e74;
    --text-color: #242424;
    --light-grey: #f7f7f7;
}

.prod-con {
    display: flex;
    min-height: 60vh;
}

.prod-con-right {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.prod-con-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.prod-description {
    text-align: start;
    padding: 0px 50px;
}

.prod-title {
    text-align: center;
    color: var(--tert-color);
    font-weight: bold;
}

.prod-section-title {
    color: var(--tert-color);
    padding: 0px 50px;
    font-size: 22px;
    font-weight: bold;
}

.prod-img {
    width: 70%;
    margin: 0;
    margin-top: 50px;
    border-radius: 5px;
}

.prod-img-carousel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 80%;
    overflow: hidden;
}

.prod-img-carousel img {
    height: 100px;
    width: 100px;
    margin: 10px 15px;
    cursor: pointer;
    border: 1px solid #00000000;
}

.prod-img-carousel img:hover {
    border: 1px solid var(--prim-color);
    border-radius: 10px;
}

.colors-img-carousel {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
}

.colors-img-carousel img {
    height: 150px;
    width: 150px;
    margin: auto 15px;
    cursor: pointer;
    border: 1px solid #00000000;
}

.colors-img-carousel img:hover {
    border: 1px solid var(--prim-color);
    border-radius: 10px;
}

.products-content {
    background: #f7f7f7;
    min-height: 80vh;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-card {
    position: relative;
    margin: 10px 10px;
    padding: 10px;
    width: 350px;
    height: 320px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 1px 1px #e3e3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.product-card p {
    font-weight: bold;
    font-size: 22px;
}

.product-img {
    height: 250px;
    width: 250px;
    transition: all ease 0.3s;
}

.product-img:hover {
    position: absolute;
    transform: scale(1.1);
    z-index: 500;
}

.product-img:hover + p {
    display: none;
}

.products-search {
    width: 83%;
    height: 100px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tert-color);
    font-weight: bold;
}

.products-search select {
    width: 25%;
}

.results-con {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    width: 80%;
}

/* Desltop screen */
@media screen and (min-width: 1026px) {
}

/* Tablet screen */

@media screen and (min-width: 601px) and (max-width: 1025px) {
    .prod-con {
        flex-direction: column;
    }

    .prod-con-right {
        width: 100%;
    }

    .prod-con-left {
        width: 100%;
    }

    .prod-description {
        text-align: start;
        padding: 0px 0px;
    }

    .prod-section-title {
        text-align: center;
    }

    .prod-img {
        width: 100%;
        object-fit: cover;
        margin-top: 0px;
    }

    .prod-img-carousel {
        margin-top: 20px;
    }

    .product-card {
        margin: 5px 5px;
        height: 300px;
        width: 30%;
        padding: 5px 2px;
        border-radius: 15px;
    }

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

    .product-img:hover {
        position: unset;
        transform: scale(1);
    }

    .products-search {
        width: 95%;
        margin-top: 20px;
        flex-direction: column;
        height: unset;
        padding: 0 10px;
    }

    .products-search select {
        width: 100%;
    }

    .results-con {
        width: 90%;
    }
}

/* Mobile screens */
@media screen and (max-width: 600px) {
    .prod-con {
        flex-direction: column;
    }

    .prod-con-right {
        width: 100%;
    }

    .prod-con-left {
        width: 100%;
    }

    .prod-description {
        text-align: start;
        padding: 0px 0px;
    }

    .prod-section-title {
        text-align: center;
    }

    .prod-img {
        width: 100%;
        object-fit: cover;
        margin-top: 0px;
    }

    .prod-img-carousel {
        margin-top: 20px;
        flex-wrap: unset;
    }

    .prod-img-carousel img {
        margin: auto 10px;
    }

    .products-content {
        padding: 0px;
    }

    .product-card {
        margin: 5px 5px;
        height: 300px;
        width: 45%;
        padding: 5px 4px;
        border-radius: 15px;
    }

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

    .product-img:hover {
        position: unset;
        transform: scale(1);
    }

    .products-search {
        width: 95%;
        margin-top: 20px;
        flex-direction: column;
        height: unset;
        padding: 0 10px;
    }

    .products-search select {
        width: 100%;
    }

    .results-con {
        width: 90%;
    }
}
