.rtb-product-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: var(--card-pad-sm);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  height: 100%;
  background-color: var(--brand-white);

  @media (max-width: 749px) {
    gap: 10px;
  }

  .rtb-product-card--media {
    position: relative;
    height: 225px;
    .rtb-image {
      width: 100%;
      height: 225px;
      object-fit: cover;
      border-radius: 16px;
    }
    .rtb-product-card--tag {
      position: absolute;
      z-index: 1;

      border-radius: 4px;
      padding: 4px 8px;
      background-color: var(--brand-black);
      color: var(--brand-white);
      top: 10px;
      left: 10px;
      &.tag-1 {
        background-color: var(--brand-white);
        color: var(--brand-black);
      }
    }
  }

  .rtb-product-card--content {
    display: flex;
    flex-direction: column;
    gap: var(--text-gap-lg);
    flex-grow: 1;
    .rtb-product-card--title {
      margin: 0;
      a {
        color: var(--brand-black);
        text-decoration: underline;
        text-decoration-color: transparent;
        transition: text-decoration-color 0.3s;
        &:hover {
          text-decoration-color: var(--brand-black);
        }
      }
    }
    .rtb-product-card--icons {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: var(--grid-gap-sm);
      .rtb-product-card--icon {
        display: flex;
        flex-direction: row;
        align-items: center;
        span {
          margin-left: var(--grid-gap-sm);
        }
        .rtb-icon,
        picture {
          width: 24px;
          height: 24px;
        }
      }
    }
  }

  .quick-add {
    margin-top: auto;
  }
}
