/* SECTION */
.products-section {
  padding: 10px 20px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.products-header {
  text-align: center;
  margin-bottom: 30px;
}

.products-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.products-header p {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: auto;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.06),
    0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 36px rgba(30,60,40,0.12),
    0 4px 10px rgba(0,0,0,0.06);
}

/* IMAGE WRAPPER — exact 4:3 to match your 800x600 photos */
.product-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ede8;
}

/* IMG TAG — full image, no crop, no zoom */
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.35s ease;
  background: #f0ede8;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}

/* INFO BLOCK */
.product-info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

/* TAG */
.product-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #4e9a6a;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
}

/* TITLE */
.product-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a3326;
  margin: 0;
  line-height: 1.3;
}

/* TAGLINE */
.product-info .tagline {
  font-size: 12.5px;
  color: #7a8c80;
  margin: 0;
  line-height: 1.4;
}

/* PRICE ROW */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.price-discounted {
  font-size: 17px;
  font-weight: 700;
  color: #1a3326;
}

.price-original {
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  text-decoration: line-through;
}

.price-label {
  font-size: 11px;
  font-weight: 600;
  color: #4e9a6a;
  background: #eaf4ee;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* VIEW DETAILS */
.product-view {
  font-size: 13px;
  font-weight: 600;
  color: #2f6f4f;
  margin-top: auto;
  padding-top: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.product-card:hover .product-view {
  transform: translateX(5px);
}

/* FLOATING LEAVES */
.leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url('/assets/images/leaf.png') no-repeat center / contain;
  opacity: 0.45;
  animation: floatLeaf 7s ease-in-out infinite;
  z-index: 1;
}

.furniture-leaf-left-1 { top: 30%; left: 5%;  animation-delay: 0s; }
.furniture-leaf-left-2 { top: 45%; left: 82%; animation-delay: 2s; }

@keyframes floatLeaf {
  0%   { transform: translateY(0)     rotate(0deg);  }
  50%  { transform: translateY(-20px) rotate(12deg); }
  100% { transform: translateY(0)     rotate(0deg);  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}