/* Product Card Base */
.rseh-product-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    border: 2px solid #daf0f0;
    border-radius: 0 0 20px 0;
    background-color: #fff;
    max-height: 525px;
    width: 100%;
  }
  
  /* Product Link */
  .rseh-product-card .rseh-product-link {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    justify-content: space-between;
    height: 90%;
  }
  
  /* Product Title */
  .rseh-product-card .rseh-product-title {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  /* Sale Badge */
  .rseh-product-card .rseh-onsale {
    position: absolute;
    background-color: #00abba;
    border-radius: 0 0 20px 0;
    padding: 12px 24px;
    gap: 10px;
    border-right: 2px solid #f9f3ec;
    border-bottom: 2px solid #f9f3ec;
    top: 0;
    left: 0;
    font-size: 21px;
    font-weight: 700;
    color: #f9f3ec;
  }
  
  /* Product Image */
  .rseh-product-card .rseh-product-image img {
    width: 100%;
    height: 164px;
    object-fit: cover;
  }
  
  /* Price Styles */
  .rseh-product-card .rseh-product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .rseh-product-card .rseh-product-price del[aria-hidden="true"] bdi {
    opacity: 0.5;
    font-size: 16px;
    color: #000033;
    font-weight: 400;
  }
  
  .rseh-product-card .rseh-product-price bdi {
    font-size: 24px;
    font-weight: 700;
    color: #00abba;
    text-decoration: none;
    justify-self: flex-end;
  }
  
  .rseh-product-card .rseh-product-price ins {
    font-size: 24px;
    font-weight: 700;
    color: #00abba;
    text-decoration: none;
  }
  
  /* Add to Cart Button */
  .rseh-product-card .ajax_add_to_cart {
    padding: 12px 8px;
    border: 2px solid #000033;
    border-radius: 0 0 20px 0;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
  }
  
  .rseh-product-card .ajax_add_to_cart:hover {
    background-color: #000033;
    color: #daf0f0;
  }
  
  .rseh-product-card .added_to_cart {
    display: none;
  }
  