.categories_details__left {
    display: flex;
    gap: 20px;
}

.categories_details {
    padding: 70px 0;
}

.img_box img {
    height: 140px;
    width: 140px;
    object-fit: contain;
    border: 2px solid #000;
}

.small_img {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

.img_box:hover img {
    opacity: 0.7;
}
.product_details ul li{
    list-style: disc !important;
    font-size: 16px;
    margin-bottom: 10px !important;
}
.product_details ul{
    padding-left: 2rem !important;
}
.bigg_img img {
    width: 450px;
    height: 600px;
    object-fit: cover;
    border: 2px solid #000;
}

.categories_details__right {
    padding-left: 3rem;
}

.product_name h6 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    max-width: 600px;
}

.myPrice h3 {
    font-size: 34px;
    padding-bottom: 1rem;
    color: var(--main-color);
    margin-top: 1rem !important;
    border-bottom: 1px solid #ddd;
}

.product_details {
    margin: 1rem 0;
}

.product_details p {
    margin-bottom: 5px !important;
    color: var(--black-color);
    font-weight: 500;
}

.sku {
    padding-bottom: 1rem;
}

.deleviery_time,
.quantity {
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.deleviery_time p {
    margin-bottom: 5px !important;
    font-weight: 500;
}

.quantity h6 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 1rem !important;
}

.quantity__box {
    display: flex;
    align-items: center;
}

.quantity__box input {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 1px solid #ddd;
    font-size: 18px;
    cursor: pointer;
}

.quantity__box input:nth-child(2) {
    border-right: 0;
    border-left: 0;
    cursor: text !important;
    text-align: center;
}

.buy_now__flex {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.buy_now__flex a {
    color: var(--black-color);
}

.buy_now__flex button,
.buy_now__flex a {
    text-align: center;
    background: none;
    outline: none;
    padding: 0.625rem 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.125rem;
    width: 100%;
}

.buy_now__flex .cart {
    border: 1px solid #666;
    color:  #fff;
    background-color: var(--dark-blue) !important;
}

.buy_now__flex .cart:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: 0.3s ease;
}

.buy_now__flex .buyNow {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);
}

.size_chart {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size_chart label {
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 40px;
    width: 40px;
    text-transform: uppercase;
    color: #666;
    cursor: pointer;
}

/* related_product */
.related_wrapper {
    border-top: 1px solid #ccc;
}

.checked {
    border: 3px solid #000 !important;
}
.color_label.disabled,
        .size.disabled {
            cursor: default;
        }

.myPrice {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1200px) {
   
    .categories_details__right {
        padding-left: 1rem;
    }
}

@media (max-width: 992px) {
    .categories_details__right {
        margin-top: 2rem;
        padding-left: 0;
    }

    .product_name h6 {
        font-size: 16px;
    }

    .myPrice h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {

    .bottom_cart h3,
    .bottom_cart a {
        font-size: 18px;
    }

    .product-price h3 {
        font-size: 22px;
    }

    .categories_details,
    .related_product {
        padding: 40px 0;
    }

    .realted_heading h3 {
        font-size: 22px;
        margin-bottom: 1rem !important;
    }

    .buy_now__flex button,
    .buy_now__flex a {
        font-size: 16px;
    }

    .product_details p,
    .deleviery_time p {
        font-size: 14px;
    }

    .size_chart label {
        font-size: 14px;
        height: 30px;
        width: 30px;
    }

    .quantity__box p {
        height: 40px;
        width: 40px;
    }

    .buy_now__flex {
        gap: 10px;
    }

    .buy_now__flex button,
    .buy_now__flex a {
        padding: 8px 0;
    }

    .quantity h6 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .img_box img {
        height: 80px;
        width: 80px;
        object-fit: contain;
    }

    .small_img {
        gap: 10px;
        flex-direction: row;
    }

    .bigg_img img {
        height: 400px;
        object-fit: contain;
    }

    .categories_details__left {
        gap: 10px;
        flex-direction: column-reverse;
    }

    .product_name h6 {
        font-size: 18px;
    }

    .categories_details__right {
        margin-top: 1rem;
    }

    .product-price h3 {
        font-size: 18px;
        margin-top: 10px;
    }
}