.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.5rem; }
.product-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 8px 30px var(--shadow); transition: all 0.4s ease; position: relative; border: 1px solid rgba(221, 160, 221, 0.2); }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px var(--shadow-hover); }
.product-image { width: 100%; height: 280px; background: linear-gradient(135deg, var(--pink-light), var(--purple-light)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-placeholder { text-align: center; color: var(--purple-dark); }
.product-placeholder i { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; }
.product-placeholder p { font-weight: 600; opacity: 0.7; }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: var(--purple-btn); color: var(--white); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; z-index: 2; }
.product-info { padding: 1.8rem; }
.product-category { color: var(--purple-btn); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 5px; }
.product-title { font-size: 1.3rem; color: var(--purple-dark); margin-bottom: 0.8rem; font-weight: 700; }
.product-desc { color: var(--purple-text); opacity: 0.7; font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.7; }
.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--pink-light); }
.product-price { font-size: 1.5rem; font-weight: 800; color: var(--purple-dark); }
.product-price span { font-size: 0.9rem; color: var(--purple-btn); font-weight: 600; }
.add-to-cart { background: linear-gradient(135deg, var(--purple-btn), var(--purple-dark)); color: var(--white); border: none; padding: 0.8rem 1.5rem; border-radius: 50px; font-family: inherit; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; font-size: 0.9rem; }
.add-to-cart:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(186, 85, 211, 0.4); }