/* ============================================================
   PRODUCT IMAGE PLACEHOLDERS
   ============================================================ */

/* Product 1 - Modern Wall Mirror */
.product-1 .card-img-wrap::before {
  content: '🪞';
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-1 .card-img-wrap {
  background: linear-gradient(135deg, #D4A574 0%, #E8D5C4 100%);
}

/* Product 2 - Decorative Lantern Pendant Light */
.product-2 .card-img-wrap::before {
  content: '💡';
  font-size: 4rem;
}

.product-2 .card-img-wrap {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFD699 100%);
}

/* Product 3 - Luxury Throw Pillow */
.product-3 .card-img-wrap::before {
  content: '🛋️';
  font-size: 4rem;
}

.product-3 .card-img-wrap {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

/* Product 4 - Ceramic Decorative Vase */
.product-4 .card-img-wrap::before {
  content: '🏺';
  font-size: 4rem;
}

.product-4 .card-img-wrap {
  background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%);
}

/* Product 5 - Artificial Plant */
.product-5 .card-img-wrap::before {
  content: '🌿';
  font-size: 4rem;
}

.product-5 .card-img-wrap {
  background: linear-gradient(135deg, #A8D5BA 0%, #7EC8A3 100%);
}

/* Product 6 - Modern Table Lamp */
.product-6 .card-img-wrap::before {
  content: '🕯️';
  font-size: 4rem;
}

.product-6 .card-img-wrap {
  background: linear-gradient(135deg, #2C2416 0%, #3D3426 100%);
}

/* Product 7 - Wall Art Canvas */
.product-7 .card-img-wrap::before {
  content: '🎨';
  font-size: 4rem;
}

.product-7 .card-img-wrap {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFB347 100%);
}

/* Product 8 - Scented Candle */
.product-8 .card-img-wrap::before {
  content: '🕯️';
  font-size: 4rem;
}

.product-8 .card-img-wrap {
  background: linear-gradient(135deg, #FFD699 0%, #FFE4B5 100%);
}

/* Product 9 - Throw Blanket */
.product-9 .card-img-wrap::before {
  content: '🧥';
  font-size: 4rem;
}

.product-9 .card-img-wrap {
  background: linear-gradient(135deg, #F5F3EE 0%, #E8E4DD 100%);
}

/* Product 10 - Floating Shelf */
.product-10 .card-img-wrap::before {
  content: '📚';
  font-size: 4rem;
}

.product-10 .card-img-wrap {
  background: linear-gradient(135deg, #8B6F47 0%, #A0826D 100%);
}

/* Product 11 - Bedroom Duvet Set */
.product-11 .card-img-wrap::before {
  content: '🛏️';
  font-size: 4rem;
}

.product-11 .card-img-wrap {
  background: linear-gradient(135deg, #B0B0B0 0%, #9A9A9A 100%);
}

/* Product 12 - Seasonal Garland */
.product-12 .card-img-wrap::before {
  content: '🍂';
  font-size: 4rem;
}

.product-12 .card-img-wrap {
  background: linear-gradient(135deg, #CD7F32 0%, #FF8C42 100%);
}

/* Placeholder styling for all products */
.card-img-wrap::before {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: inherit;
  z-index: 1;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
