.custom_grid {
    display: grid;
    grid-template-columns: minmax(200px, 400px) minmax(300px, 1fr);
    margin: 20px 0;
}


.detail_section {
    margin-left: 45px;
}


.slider {
    display: block;
}

.product_name {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

.product_name h1 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: inherit;
}

@media(max-width: 768px) {
    .product_name h1 {
        font-size: 18px;
        margin-top: 15px;
    }
}

.brand {
    font-weight: 400;
    color: var(--secondary-text);
    font-size: 14px;
    padding: 2px 0;
    line-height: 1;
    text-transform: capitalize;
}


.price_section {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 10px 0;
    padding-bottom: 20px;
}

.product_buttons {
    display: flex;
    column-gap: 10px;
    align-items: center;
    padding: 0 0 7px 0;
    margin-top: 10px;
}

.partNo {
    padding-top: 1px;
    font-size: 13px;
    color: #000000b2;
}



.price {
    font-size: 23px;
    color: #000;
    font-weight: 500;
}

.prev_price {
    text-decoration: line-through;
    font-size: 17px;
    color: grey;
    font-weight: 500;
}

.offer {
    font-size: 15px;
    color: #19a619;
    font-weight: 500;
}

.normal_btn {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.normal_btn span {
    position: relative;
    top: 2px;
}

.normal_btn svg {
    color: var(--teritary);
}

.selectedFavorite svg{
    color: var(--red);
}

.normal_btn div {
    cursor: pointer;
}

.product_page_title {
    font-size: 20px;
    margin: 5px 0;
    font-weight: 300;
    font-size: 17px;
}

.product_description {
    margin-bottom: 20px;
}

.product_description p {
    margin: 7px;
}

.specifications {
    /* padding: 5px 0; */
}

.specification_title {
    font-size: 16px;
    color: #000;
    padding: 5px 0;
    font-weight: 400;
}

.specifications table {
    border-radius: 10px;
    border-collapse: collapse;
    border-radius: 1em;
}

.specifications table td {
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}



.out_of_stock {
    color: var(--red);
    font-weight: 400;
    font-size: 16px;
    margin-right: 10px;
}


@media(max-width: 991px) {
    .product_buttons {
        display: block;
    }

    .out_of_stock {
        width: 100%;
        text-align: center;
    }

    .normal_btn {
        justify-content: center;
        padding-top: 10px;
    }
}

@media(max-width: 768px) {
    .customPrimaryBtn {
        padding: 4px 15px !important;
        margin-bottom: 7px;
    }

    .customSecondaryBtn {
        padding: 4px 15px !important;
    }

    .detail_section {
        margin-left: 0px;
    }

    .no_price {
        padding-bottom: 5px !important;
    }

    .product_name {
        font-size: 18px;
    }

    .partNo {
        font-size: 13px;
        padding-top: 5px;
    }

    .product_buttons {
        display: block;
        padding: 0;
        width: 100%;
    }

}


@media(max-width: 768px) {
    .custom_grid {
        display: block;
    }

    .image_section {
        display: block;
        height: 100%;
    }

}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
}

.speciHead {
    text-transform: capitalize;
}

.varient_section {
    /* padding: 0px 0 5px 0; */
}

.quantity_price_section {
    display: flex;
}

@media(max-width: 768px) {
    .quantity_price_section {
        justify-content: center;
    }

}

.quantity_price {
    color: rgb(82, 81, 81);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.description_section {
    padding-top: 5px;
}

.extra_details span {
    color: var(--primary);
    font-weight: 600;
}

.extra_details {
    list-style: none;
    margin-top: 15px;
}

.extra_details li {
    margin-bottom: 4px;
}

.related_product_section {
    margin-top: 30px;
}