* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; background: #fff8f9; color: #333; line-height: 1.6; }

/* HEADER */
header { background: linear-gradient(135deg, #c0396b, #7a1235); color: white; padding: 24px 20px; text-align: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 2em; font-weight: 700; }
.tagline { font-size: 1em; opacity: 0.9; margin-top: 6px; }

/* NAV */
nav { background: #7a1235; padding: 0; }
.nav-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; padding: 10px 20px; }
nav a { color: white; text-decoration: none; font-size: 0.88em; font-weight: 700; padding: 6px 12px; border-radius: 4px; transition: background 0.2s; }
nav a:hover { background: rgba(255,255,255,0.2); }

/* HERO */
.hero { background: linear-gradient(135deg, #fce4ec 0%, #fff5f7 100%); padding: 60px 20px; text-align: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 2.4em; color: #c0396b; margin-bottom: 16px; }
.hero p { font-size: 1.15em; color: #555; max-width: 560px; margin: 0 auto 24px; }
.btn { display: inline-block; background: #c0396b; color: white; padding: 13px 30px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1em; transition: background 0.2s; }
.btn:hover { background: #7a1235; }

/* CATEGORIES */
.categories { padding: 50px 20px; text-align: center; }
.categories h2, .featured h2, .blog-preview h2, .newsletter h2 { font-family: 'Playfair Display', serif; font-size: 1.9em; color: #7a1235; margin-bottom: 30px; }
.card-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1100px; margin: 0 auto; }
.card { background: white; border-radius: 14px; box-shadow: 0 2px 16px rgba(192,57,107,0.1); padding: 24px 20px; width: 200px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(192,57,107,0.18); }
.card-icon { font-size: 2.2em; margin-bottom: 10px; }
.card h3 { font-family: 'Playfair Display', serif; color: #c0396b; font-size: 1.05em; margin-bottom: 8px; }
.card p { font-size: 0.88em; color: #666; margin-bottom: 12px; }
.card a { color: #7a1235; text-decoration: none; font-size: 0.88em; font-weight: 700; }
.card a:hover { color: #c0396b; }

/* FEATURED PRODUCTS */
.featured { background: #fff0f4; padding: 50px 20px; text-align: center; }
.product-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1000px; margin: 0 auto; }
.product-card { background: white; border-radius: 14px; padding: 24px; width: 220px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.product-img { font-size: 3em; margin-bottom: 12px; }
.product-card h4 { font-family: 'Playfair Display', serif; color: #7a1235; margin-bottom: 6px; font-size: 1em; }
.price { color: #c0396b; font-weight: 700; font-size: 1.05em; margin-bottom: 8px; }
.product-card p { font-size: 0.84em; color: #666; margin-bottom: 14px; }
.btn-small { display: inline-block; background: #c0396b; color: white; padding: 8px 16px; border-radius: 20px; text-decoration: none; font-size: 0.82em; font-weight: 700; transition: background 0.2s; }
.btn-small:hover { background: #7a1235; }

/* BLOG PREVIEW */
.blog-preview { padding: 50px 20px; text-align: center; }
.blog-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1000px; margin: 0 auto; }
.blog-card { background: white; border-radius: 14px; padding: 24px; width: 280px; text-align: left; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.blog-cat { display: inline-block; background: #fce4ec; color: #c0396b; font-size: 0.75em; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h4 { font-family: 'Playfair Display', serif; color: #333; font-size: 1em; margin-bottom: 8px; }
.blog-card p { font-size: 0.87em; color: #666; margin-bottom: 12px; }
.blog-card a { color: #c0396b; text-decoration: none; font-size: 0.88em; font-weight: 700; }

/* NEWSLETTER */
.newsletter { background: linear-gradient(135deg, #c0396b, #7a1235); color: white; padding: 50px 20px; text-align: center; }
.newsletter h2 { color: white; }
.newsletter p { opacity: 0.9; margin-bottom: 20px; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.newsletter-form input { padding: 13px 20px; border-radius: 30px; border: none; font-size: 1em; width: 300px; max-width: 100%; }
.newsletter-form button { padding: 13px 28px; background: white; color: #c0396b; border: none; border-radius: 30px; font-weight: 700; font-size: 1em; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: #fce4ec; }
.fine-print { font-size: 0.8em; opacity: 0.7; }

/* FOOTER */
footer { background: #3d0018; color: white; padding: 40px 20px; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4em; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.footer-links a { color: #f9c6d5; text-decoration: none; font-size: 0.88em; }
.footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-social a { color: #f9c6d5; text-decoration: none; font-size: 0.9em; }
.affiliate-note { font-size: 0.78em; opacity: 0.65; max-width: 600px; margin: 0 auto 10px; }
.copyright { font-size: 0.78em; opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6em; }
  .logo { font-size: 1.4em; }
  .card { width: 150px; }
  .product-card, .blog-card { width: 100%; max-width: 340px; }
}

/* BLOG & GUIDE PAGES */
.page-hero { background: linear-gradient(135deg, #fce4ec, #fff5f7); padding: 40px 20px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; color: #c0396b; font-size: 2em; }
.page-hero p { color: #666; margin-top: 10px; }
.content-area { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.content-area h2 { font-family: 'Playfair Display', serif; color: #7a1235; margin: 30px 0 14px; }
.content-area p { margin-bottom: 16px; line-height: 1.8; color: #444; }
.content-area ul { margin: 0 0 16px 24px; }
.content-area li { margin-bottom: 8px; color: #444; }
.affiliate-disclaimer { background: #fce4ec; border-left: 4px solid #c0396b; padding: 12px 16px; border-radius: 4px; font-size: 0.85em; margin-bottom: 24px; color: #7a1235; }
