.product-image {
    position: relative;
  }
  
  .wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    background-color: rgba(255, 255, 255, 0.527);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  
  .wishlist-overlay {
    display: none; /* Initially hidden */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: orange;  */
    border-radius: 50%; /* Circular overlay */
    transition: all 0.2s ease-in-out; /* Smooth transition */
  }
  
  .wishlist:hover .wishlist-overlay {
    display: block; /* Show overlay on hover */
  }

  .save-amount{
    background-color: #00334F;
    width: fit-content;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(238, 137, 54);
    border-radius: 40px;
  }

  .save-amount .pro-price{
    font-size: 12px;
    color: orangered;
    
    margin: 10px 10px 10px 10px;
    
  }

  /* css for order track  */
ul.timeline {
    position: relative;
    list-style-type: none;
    padding-left: 180px;
}
ul.timeline:before {
    position: absolute;
    display: block;
    left: 136px;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background-color: #356D65;
    content: ' ';
}
ul.timeline .event {
    position: relative;
    padding: 16px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
    padding: 16px;
    margin-bottom: 30px;
}
ul.timeline .event:before {
    display: block;
    position: absolute;
    top: 30px;
    left: -55px;
    width: 30px;
    height: 30px;
    border: 6px solid #356D65;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.6);
    content: ' ';
}
ul.timeline h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}
ul.timeline .time {
    position: absolute;
    display: block;
    width: 120px;
    top: 35px;
    left: -179px;
    font-size: 0.9em;
    text-align: right;
    font-weight: 600;
    text-transform: uppercase;
}
ul.timeline .time > .glyphicon-time {
    top: 2px;
}
ul.timeline .left-arrow:before {
    position: absolute;
    top: 30px;
    left: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #ddd;
    border-left: 0 solid #ddd;
    border-bottom: 15px solid transparent;
    content: ' ';
}
ul.timeline .left-arrow:after {
    position: absolute;
    top: 30px;
    left: -14px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-left: 0 solid #fff;
    border-bottom: 15px solid transparent;
    content: ' ';
}

/* footer css */

.footer-image{
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-shop-details{
    color: #fff;
}


@media (min-width: 768px) and (max-width: 991px) {
    
}

@media (max-width: 767px) {
    .container {width:400px}
    ul.timeline {
        position: relative;
        list-style-type: none;
        padding-left: 110px;
    }
    ul.timeline:before {
        position: absolute;
        display: block;
        left: 66px;
        width: 8px;
        height: 100%;
        border-radius: 4px;
        background-color: #356D65;
        content: ' ';
    }
}