
.product-card-new {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 0px;
    margin: 0px;
    position: relative;
}

.product-image-new img {
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 300px;
    object-fit: contain;
}

.product-info-new {
    padding: 10px 0;
}

.product-name-new {
    font-size: 14px;
    margin: 0;
}

.product-description-new {
    font-size: 12px;
    color: #555;
}

.product-pricing-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height:15px;
}

.original-price-new {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.sale-price-new {
    color: #222222;
    font-size: 16px;
    font-weight: bold;
}

.is-experience .sale-price-new{
    color: #b17c80 !important;
}

.is-concept .sale-price-new{
    color: #7D56C6 !important;
}

.is-jewellery .sale-price-new{
}
.product-discount-new {
    color: red;
    font-size: 12px;
    font-weight: bold;
}

.wishlist-icon-new {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.add-to-cart-icon-new{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    cursor: pointer;
}

.add-to-cart-icon-new button{
    background: transparent;
    border: 0px;
    cursor: pointer;
}
.add-to-cart-icon-new svg{
    fill: #222222;
}

.is-experience .add-to-cart-icon-new svg{
    fill: #b17c80;
}

.is-concept .add-to-cart-icon-new svg{
    fill: #7D56C6;;
}

.is-jewellery .add-to-cart-icon-new svg{
}

.prod-card__view{
    color: #222222;
    text-decoration:none;
}

.is-experience .prod-card__view{
    color: #b17c80;
}

.is-concept .prod-card__view{
    color: #7D56C6;;
}

.is-jewellery .prod-card__view{
}

.wishlist-icon-new span {
    color: #222222;

}
.wishlist-icon-new  a{
    text-decoration:none;
}

.prod-card__info-new{
    position: absolute;
    bottom: 1px;
    left: 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}


.product-price-display{
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 4px;
    right: 9px;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#comingSoonPopup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.close-btn {
    float: right;
    font-size: 28px;
    cursor: pointer;
}


