.products-section {
  padding: 130px 56px 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1160px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
  cursor: pointer;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-800);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .product-overlay { opacity: 1; }

.view-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-card:hover .view-overlay {
  opacity: 1;
  pointer-events: all;
}

.view-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0;
}

.view-btn-circle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.view-btn:hover .view-btn-circle {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: scale(1.06);
}

.view-btn-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.product-info {
  padding: 18px 22px 24px;
}
.product-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.product-price {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-price-sale {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.product-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  padding: 2px 6px;
  letter-spacing: 0.05em;
}
.product-price-original {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-decoration: line-through;
}
