.pre-order-products{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.haramain-product-title{
    color: #131A15;
    font-family: Satoshi;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 8px;
}
.product-thumbnail{
    position: relative;
}
.product-thumbnail img{
    width: 100%;
}
.product-thumbnail:hover .pre_order_btn{
    display: unset;
}
.pre_order_btn{
    position: absolute;
    bottom: 20px;
    left: 0;
    display: none;
    transition: all .25s cubic-bezier(.645,.045,.355,1);
    transform: translateX(9%);
}

.pre-order-product .price ins .woocommerce-Price-amount.amount{
    color: #34894E;
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px;
}

.pre-order-button,
.add-to-cart-button {
    padding: 0px 10px;
    background-color: #34894E;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    width: 85%;
}

.pre-order-button:hover,
.add-to-cart-button:hover {
    background-color: #000;
    border: none;
}

.pre-order-product .price > .woocommerce-Price-amount.amount {
    color: #34894E;
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px;
}


@media (max-width: 768px) {
    .pre-order-products {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
@media (max-width: 480px) {
    .pre-order-products {
      grid-template-columns: 1fr;
    }
}
  