/* body {
  font-family: "Inter", sans-serif;
  height: 100vh;
  background: #f5f5f5;
  box-sizing: border-box;
} */

.product-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0%;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: relative;
  padding: 24px;
  background-color: #fff;
  border-radius: 0;
  max-width: 380px;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.card-pill {
  position: absolute;
  padding: 6px 12px;
  border-radius: 0;
  color: #fff;
  background: #000;
  right: 0;
  top: 0;
  margin-right: 32px;
  margin-top: 32px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
}
.card-pill-gold {
  position: absolute;
  padding: 6px 12px;
  border-radius: 0;
  color: #fff;
  background: #ffd700;
  right: 0;
  top: 36px;
  margin-right: 32px;
  margin-top: 32px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
}
.card-pill-red {
  position: absolute;
  padding: 6px 12px;
  border-radius: 0;
  color: #fff;
  background: #71111c;
  right: 0;
  top: 36px;
  margin-right: 32px;
  margin-top: 32px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
}

.card-img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin-bottom: 16px;
}

.product-brand {
  font-size: 12px;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 0;
  color: #646464;
}

.product-cat {
  font-size: 12px;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 0;
  color: #646464;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 0;
}

.product-name {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 6px;
  margin-top: 0;
  color: #000;
  height: 6rem;
}

.flex-row {
  display: flex;
  justify-content: start;
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.w-full {
  width: 100%;
}

.mb-sm {
  margin-bottom: 8px;
}

.price {
  margin-right: 12px;
}

.strike {
  text-decoration: line-through;
  opacity: 0.4;
}

.btn-col {
  width: 100%;
  margin-top: 24px;
  display: flex;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #71111c;
  background: #fff;
  padding: 1.4em 0;
  border-radius: 0;
  border: 1px solid #71111c;
  transition: background 0.3s ease;
  text-decoration: none;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.icon-link-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  background: #71111c;
  padding: 1.4em 0;
  border-radius: 0;
  border: 1px solid #71111c;
  transition: background 0.3s ease;
  text-decoration: none;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.rubicons {
  width: 24px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.icon-link:hover {
  background: #71111c;
  color: #fff;
}

.icon-link-cart:hover {
  background: #71111c;
  color: #fff;
}

.icon-link-cart:hover>.rubicons {
  transform: translate(3px, -3px);
}

.hide {
  display: none;
}

@media screen and (max-width: 420px) {
  .card-img {
      max-height: 154px;
    }
    .card-pill {
        margin-right: 12px;
    }
    .card-pill-gold {
        margin-right: 12px;
        font-size: 12px;
    }
    .card-pill-red {
        margin-right: 12px;
        font-size: 12px;
    }
}