    .lhs-giftcard-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 15px;
    }
    @media (max-width: 992px) {
      .lhs-giftcard-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .lhs-giftcard-grid { grid-template-columns: 1fr; }
    }
    .lhs-giftcard {
      background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    }
    .lhs-giftcard-thumb {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }
    .lhs-giftcard-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .lhs-giftcard-body {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .lhs-giftcard-title {
        font-family: "grad", serif !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: #101946;
    }
    .lhs-giftcard-desc {
      font-family: "grad", serif !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: #101946;
    }
    .lhs-giftcard-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .lhs-giftcard-price {
      font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 120%;
font-family: "grad", serif !important;
color: #101946;
    }
    .lhs-giftcard-buy {
      background: #101946;
      color: #fff !important;
     font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
      padding: 8px 36px;
      height: 60px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      text-align: center;
      font-family: "grad", serif !important;
      text-decoration: none !important;
      align-content: center;
    }