.bought-together-products {
    margin-top: 0px;
    margin-bottom: 50px;
}
.bought-together-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.bought-product {
    text-align: center;
    width: 19%;
    border: 1px solid #ccc;
    padding: 20px 10px;
    border-radius: 5px;
}

.bought-product img.product-image {
    width: 150px;
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto 10px;
}

.bought-product .product-name {
    margin: 5px 0;
    font-weight: bold;
    font-size: 1.4rem;
    font-weight: 700;
    color: #253237;
    display: block;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.bought-product .product-price {
    margin: 5px 0;
    color: #555555;
    font-size: 1.5rem;
    font-weight: 400;
}

.include-this {
    background-color: #ea041c;
    color: #fff;
    font-size: 12px;
    margin-top: 10px;
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 30px;
    border: 2px solid #ea041c;
}

.include-this.included {
    background-color: #28a745;
}
.product-qty {
    width: 50px;
    text-align: center;
    margin-top: 5px;
}
.bought-together-products h3 {
    color: #222222;
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}
.bought-together-products h3:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #ef1e1e;
}
body .bought-together-container input[type="number"] {
    width: inherit;
    border: none;
    height: auto;
}

@media screen and (max-width: 1399px) {
.bought-product {
    width: 18%;
    padding: 7px;
}
}

@media screen and (max-width: 1199px) {
    .bought-product {
    width: 23%;
 
}
.product-info-main .product-info-price {
    padding-bottom: 11px;
    margin-bottom: 18px;
}
.product-info-main .attribute.overview {
    margin-bottom: 26px;
}
}


@media screen and (max-width: 991px) {

.bought-product {
    width: 30%;
    padding: 7px;
}

}


@media screen and (max-width: 767px) {

.bought-product {
    width: 47%;
}
.product-info-main .attribute.overview {
    margin-bottom: 12px;
}
.actions.add-to-cart {
    margin-left: 0px !important;
    width: auto;
}
.product-reviews-summary.empty .reviews-actions .action.add {
    margin-right: 0;
    margin: 0;
    padding: 14px 0;
    border: none;
}
.product-info-main .product-info-price {
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.product-social-links {
    padding-top: 25px;
    margin-bottom: 18px;
    padding-bottom: 9px;
}
.catalog-product-view .product.detailed .items-tabs .data.title {
    min-width: auto;
}
.product-info-main .field.qty {
    margin-right: 100px;
}
}

@media screen and (max-width: 575px) {
.catalog-product-view .product.detailed .items-tabs .data.switch {
    font-size: 15px;
}
}
@media screen and (max-width: 480px) {
    .bought-together-products h3{
font-size: 1.8rem;
    }
}
@media screen and (max-width: 360px) {
    .bought-product {
    width: 100%;
}
}
.my-button {
      background-color: #4CAF50; /* Green */
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }