* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Playfair Display', serif; background: #fdf2f8; color: #333; line-height: 1.6; }
header { background: linear-gradient(135deg, #db2777 0%, #be185d 50%, #9d174d 100%); padding: 2rem 0; text-align: center; }
header h1 { font-size: 3rem; margin-bottom: 0.5rem; color: #fff; }
nav { background: #831843; padding: 1rem; }
nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
nav a { color: #fce7f3; text-decoration: none; padding: 0.5rem 1rem; transition: 0.3s; }
nav a:hover { color: #fff; }
main { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.hero { text-align: center; padding: 5rem 2rem; background: linear-gradient(135deg, #fce7f3, #fbcfe8); border-radius: 20px; margin-bottom: 4rem; }
.hero h2 { font-size: 3rem; color: #9d174d; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; color: #831843; max-width: 700px; margin: 0 auto 2rem; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2.5rem; margin: 4rem 0; }
.product { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(157,23,77,0.1); transition: 0.3s; }
.product:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(157,23,77,0.2); }
.product-image { height: 280px; background: linear-gradient(135deg, #fce7f3, #f9a8d4); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.product-info { padding: 1.5rem; }
.product-info h3 { color: #9d174d; font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-info .price { color: #db2777; font-size: 1.5rem; font-weight: bold; margin: 0.5rem 0; }
.product-info button { width: 100%; background: #db2777; color: #fff; padding: 0.8rem; border: none; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: 0.3s; }
.product-info button:hover { background: #be185d; }
.categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 4rem 0; }
.category { background: linear-gradient(135deg, #fce7f3, #fbcfe8); padding: 2rem; border-radius: 12px; text-align: center; transition: 0.3s; cursor: pointer; }
.category:hover { transform: scale(1.05); }
.category-icon { font-size: 3rem; margin-bottom: 1rem; }
footer { background: #831843; text-align: center; padding: 3rem 2rem; margin-top: 5rem; color: #fce7f3; }
footer a { color: #fbcfe8; text-decoration: none; }
