.product-grid {
    text-align: center;
    padding: 0 0 72px;
    border: 1px solid rgba(0, 0, 0, .1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.product-grid .product-image {
    position: relative;
    transition: all .3s ease 0s
}

.product-grid .product-image a {
    display: block
}

.product-grid .product-image img {
    width: 100%;
    height: auto
}

.product-grid .pic-1 {
    opacity: 1;
    transition: all .3s ease-out 0s
}

.product-grid:hover .pic-1 {
    opacity: 1
}

.product-grid .pic-2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-out 0s
}

.product-grid:hover .pic-2 {
    opacity: 1
}

.product-grid .social {
    width: 150px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: 1;
    transition: all .3s ease 0s
}

.product-grid:hover .social {
    opacity: 1;
    top: 50%
}

.product-grid .social li {
    display: inline-block
}

.product-grid .social li a {
    color: #fff;
    background-color: #333;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    width: 40px;
    margin: 0 2px;
    display: block;
    position: relative;
    transition: all .3s ease-in-out
}

.product-grid .social li a:hover {
    color: #fff;
    background-color: #5B092A
}

.product-grid .social li a:after,
.product-grid .social li a:before {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 20px;
    padding: 1px 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -30px
}

.product-grid .social li a:after {
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -20px;
    z-index: -1
}

.product-grid .social li a:hover:after,
.product-grid .social li a:hover:before {
    opacity: 1
}

.product-grid .product-discount-label,
.product-grid .product-new-label {
    color: #fff;
    background-color: #5B092A;
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 7px;
    display: block;
    position: absolute;
    top: 10px;
    left: 0
}

.product-grid .product-discount-label {
    background-color: #333;
    left: auto;
    right: 0
}

.product-grid .rating {
    color: #FFD200;
    font-size: 14px;
    padding: 12px 0 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: -1
}

.product-grid .rating li.disable {
    color: rgba(0, 0, 0, .2)
}

.product-grid .product-content {
    background-color: #fff;
    text-align: center;
    padding: 12px 0;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    z-index: 1;
    transition: all .3s
}

.product-grid:hover .product-content {
    bottom: 0
}

.product-grid .title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: capitalize;
    margin: 0 0 10px;
    transition: all .3s ease 0s
}

.product-grid .title a {
    color: #828282
}

.product-grid .title a:hover,
.product-grid:hover .title a {
    color: #5B092A
}

.product-grid .price {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 8px;
    text-align: center;
    transition: all .3s
}

.product-grid .price span {
    color: #999;
    font-size: 13px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 3px;
    display: inline-block
}

.product-grid .add-to-cart {
    color: #000;
    font-size: 13px;
    font-weight: 600
}

@media only screen and (max-width:990px) {
    .product-grid {
        margin-bottom: 30px
    }
}

/* new Product Card Css */

/* Product Grid */
.custom-product-grid {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    /* Ensure space between product cards */
}

/* Image container and images */
.custom-product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-pic-1,
.custom-pic-2 {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.custom-pic-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
}

.custom-product-grid:hover .custom-pic-1 {
    opacity: 0;
}

.custom-product-grid:hover .custom-pic-2 {
    opacity: 1;
}

/* Rating positioned bottom left */
.custom-rating-bottom-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Rating icons and text */
.rating {
    display: flex;
    gap: 2px;
}

.total-rating {
    font-size: 12px;
    color: #333;
}

/* Product Details */
.custom-product-content {
    padding: 15px;
}

.custom-title {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.custom-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.custom-price {
    font-size: 18px;
    color: #333;
}

.custom-price span {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

.custom-discount {
    font-size: 14px;
    color: red;
    margin-left: 10px;
}

/* Hover content */
.custom-hover-content {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    transition: all 0.3s ease;
}

/* Display hover content on hover */
.custom-product-grid:hover .custom-hover-content {
    display: block;
}

/* Wishlist and Add to Cart */
.custom-social {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: space-around;
}

.custom-social li {
    display: inline-block;
    margin: 0 10px;
}

.custom-social li a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

.custom-size {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.custom-hover-price {
    font-size: 18px;
    color: #333;
}

.custom-hover-price span {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}