  section.products {
    padding-top: clamp(16px, 3vw, 28px);
    padding-bottom: clamp(32px, 5vw, 48px);
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 4vw, 64px);
  }

  .product {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200, 162, 77, .4);
    padding: 20px 22px;
    transition: all .5s ease;
    height: 100%;
    position: relative;
  }
.product {
  border: none;
  background: rgba(255, 255, 255, 0.02);
  transition: transform .4s ease;
}

.product:hover {
  transform: translateY(-4px);
}
  .product:hover {
    box-shadow: none;
  }

  .product p {
    font-size: 14px;
    line-height: 1.65;
    /* was likely ~1.4–1.5 */
    opacity: .75;
    margin-bottom: 10px;
  }

  .product img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 16px 0 14px;
    border-radius: 12px;
    transition: transform .35s ease;
  }

  .product:hover img {
    transform: translateY(-3px);
  }

  .product-footer {
    margin-top: auto;
    padding-top: 18px;
  }

  .shop-price,
  .product-price {
    font-size: 18px;
    letter-spacing: .06em;
    color: var(--gold-soft);
    margin: 8px 0 14px;
  }

  .product-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }

  .product-actions .btn {
    position: relative;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    overflow: hidden;
    transition: color .3s ease, border-color .3s ease;
  }

  .product-actions .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: -1;
  }

  /* Hover state */
  .product-actions .btn:hover::before {
    transform: scaleX(1);
  }

  .product-actions .btn:hover {
    color: #000;
    transform: translateY(-1px);
  }

  .shop-guidance {
    margin: 10px 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(var(--gold-rgb), .45);
    transition:
      color .25s ease,
      letter-spacing .25s ease,
      opacity .25s ease;
  }

  .shop-guidance::after {
    content: '';
    display: block;
    width: 64px;
    height: 1px;
    margin-top: 8px;
    background: rgba(var(--gold-rgb), .25);
  }

  /* Shop card hover – guidance refinement */
  .product:hover .shop-guidance {
    color: rgba(var(--gold-rgb), .65);
    opacity: 1;
    letter-spacing: .06em;
  }

  .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
  }

  .badge-limited {
    background: var(--gold);
    color: #0b0b0b;
  }

  .badge-seasonal.live {
    background: #3fa663;
    color: #000;
  }

  .badge-seasonal.teaser {
    background: #c6a75e;
    color: #000;
  }

  .shop {
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(20px, 4vw, 40px);
  }

  .shop-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5vw, 4.4rem);
    margin: 16px 0 24px;
  }

  .shop-copy {
    max-width: 520px;
    line-height: 1.8;
    opacity: .85;
  }
