.products-strip {
  padding: 34px 20px 16px;
  background: #ffffff;
}

.products-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  color: #1f2850;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  text-align: center;
  line-height: 1.1;
}

.products-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6a7397;
  font-weight: 700;
  margin-bottom: 0.45rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.2rem;
}

.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  transition: transform 0.26s ease;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  transform: none;
  border-radius: 12px;
  display: block;
  margin-bottom: 0.85rem;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card:hover img {
  transform: scale(1.02);
  filter: brightness(1.04);
}

.product-card.bottle-card:hover img {
  animation: bottle-cap-pop 0.55s ease-in-out 1;
}

.product-card.shaker-card:hover img {
  animation: shaker-wiggle 0.45s ease-in-out 1;
}

.product-name {
  font-family: 'Playfair Display', serif;
  color: #1f2850;
  font-size: 1.2rem;
  line-height: 1.05;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  min-height: 2.7em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name span {
  display: block;
}

.product-name span.product-packaging {
  font-size: 0.74em;
  letter-spacing: 0.06em;
  margin-top: 0.14rem;
}

.product-price {
  color: #47588f;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-buy {
  display: inline-flex;
  justify-content: center;
  min-width: 170px;
  margin-top: auto;
  color: var(--nav-ink);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  padding: 11px 22px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 22px rgba(11, 13, 32, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn-buy:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 24px rgba(11, 13, 32, 0.28);
}

.shakers-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@keyframes shaker-wiggle {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-2px) rotate(-1.5deg); }
  50% { transform: translateY(-3px) rotate(1.5deg); }
  75% { transform: translateY(-2px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes bottle-cap-pop {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  22% { transform: translateY(-5px) rotate(-1.6deg) scale(1.015); }
  48% { transform: translateY(-2px) rotate(1.2deg) scale(1.02); }
  72% { transform: translateY(-4px) rotate(-0.8deg) scale(1.015); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

@media (max-width: 1050px) and (min-width: 701px) {
  .product-grid,
  .shakers-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-grid,
  .shakers-page .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card img,
  .btn-buy {
    transition: none;
  }

  .product-card:hover,
  .btn-buy:hover {
    transform: none;
  }

  .product-card:hover img,
  .product-card.bottle-card:hover img,
  .product-card.shaker-card:hover img {
    animation: none;
    transform: none;
    filter: none;
  }
}

.product-card[data-type-hidden="true"],
.product-card[hidden] {
  display: none !important;
}
