.product-container-wrapper {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
}
.product-page .custom-banner-content {
    flex: 1;
    width: 600px;
    position: absolute;
    right: 80px;
    /* margin-left: 17px; */
    text-align: left;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.cst-product-container .product-image {
    flex: 1;
    text-align: center;
}
.cst-product-container .product-image img {
    height: 500px;
    /* max-width: 100%; */
    border-radius: 5px;
    width: 500px;
}
.cst-product-container .img-wrp{
    width:500px !important;
    height:500px !important;
}
.cst-product-container .thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.cst-product-container .thumbnail-container img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}
.cst-product-container .thumbnail-container img:hover {
    border-color: #333;
}
.cst-product-container .product-details {
    flex: 1;
    padding: 20px;
}
.cst-product-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}
.cst-product-container .price {
    font-size: 22px;
    color: #e60000;
    font-weight: bold;
}
.cst-product-container .category {
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.cst-product-container .add-to-cart {
    background: #333;
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.cst-product-container .shipping {
    margin-top: 10px;
}
.cst-product-container .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}
.cst-product-container .rating span {
    color: gold;
}
.cst-product-container .policies {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.cst-product-container .social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.cst-product-container .social-share a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
}
@media (max-width: 768px) {
    .cst-product-container.product-container {
        flex-direction: column;
        text-align: center;
    }
}