* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #0d9488;
  --pink-light: #f0fdfa;
  --pink-dark: #0f766e;
  --gold: #d4a574;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--pink-light);
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
}
header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
header p {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Navigation */
nav {
  background: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav a {
  color: var(--pink-dark);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
nav a:hover { text-decoration: underline; }

/* Main content */
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Product cards on homepage */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.product-card .info {
  padding: 1.25rem;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.product-card .btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.product-card .btn:hover { opacity: 0.9; }

/* Product detail page */
.product-detail {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 1.5rem;
}
.product-detail .hero-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}
.product-detail .content {
  padding: 2rem;
}
.product-detail h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.product-detail .rating {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.product-detail .description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.product-detail ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.product-detail ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}
.product-detail ul li::before {
  content: "\2713";
  color: var(--pink-dark);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.product-detail .cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}
.product-detail .cta:hover { opacity: 0.9; }

.affiliate-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* Pinterest badge */
.pin-it {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e60023;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.pin-it:hover { opacity: 0.9; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 2rem;
}
footer a { color: var(--pink-dark); text-decoration: none; }

/* Disclosure */
.disclosure {
  background: var(--white);
  border-left: 4px solid var(--pink);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 600px) {
  header h1 { font-size: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .product-detail .content { padding: 1.25rem; }
  nav a { margin: 0 0.5rem; font-size: 0.85rem; }
}
