﻿:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff7f4;
  color: #333;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea {
  font: inherit;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #ffffffcc;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.brand a {
  font-size: 1.6rem;
  font-weight: 800;
  color: #d86f8a;
  text-decoration: none;
}
.brand span {
  display: block;
  color: #6b6b6b;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}
.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-links a {
  color: #444;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover {
  color: #d86f8a;
}
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}
.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2rem 2rem;
}
.hero-copy {
  max-width: 560px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #d86f8a;
  margin-bottom: 1rem;
}
.hero-section h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
}
.hero-section p {
  margin: 0 0 1.75rem;
  max-width: 520px;
  color: #5b5b5b;
}
.button {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  transition: transform .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: #d86f8a;
  color: white;
}
.button-secondary {
  background: #fff;
  color: #d86f8a;
  border: 1px solid #d86f8a;
}
.hero-image {
  min-height: 420px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #fcebec 0%, #fde3e8 48%, #ffffff 100%);
  position: relative;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border-radius: 1.5rem;
  background: url('https://images.unsplash.com/photo-1516685018646-5494f98496c6?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}
.section {
  padding: 2rem 2rem 1rem;
}
.section-header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}
.section-header p {
  margin: 0;
  color: #5f5f5f;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.filter-button {
  border: 1px solid #d86f8a33;
  background: #fff;
  color: #d86f8a;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}
.filter-button.active,
.filter-button:hover {
  background: #d86f8a;
  color: #fff;
}
.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1.8rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.07);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-body {
  padding: 1.3rem;
}
.product-category {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #d86f8a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}
.product-card p {
  margin: 0 0 1.4rem;
  color: #666;
  font-size: 0.95rem;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.product-price {
  font-weight: 700;
  color: #333;
}
.product-actions button {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  background: #d86f8a;
  color: #fff;
  cursor: pointer;
}
.cart-panel {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-items {
  display: grid;
  gap: 1rem;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid #f0d9dd;
  border-radius: 1rem;
}
.cart-item-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}
.cart-item-meta {
  color: #5f5f5f;
  font-size: 0.92rem;
}
.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.cart-panel input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid #e7d4d7;
}
.reviews-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.review-form,
.contact-form,
.newsletter-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
}
.review-form h3,
.newsletter-card h3 {
  margin-top: 0;
}
.review-form label,
.contact-form label {
  display: block;
  margin: 1rem 0 0.4rem;
  color: #555;
}
.review-form input,
.review-form textarea,
.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid #e7d4d7;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
}
.newsletter-form {
  display: grid;
  gap: 0.9rem;
}
.newsletter-card p {
  margin: 0 0 1rem;
  color: #5f5f5f;
}
.star-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.star {
  cursor: pointer;
  color: #d86f8a66;
  font-size: 1.5rem;
  transition: transform .2s ease, color .2s ease;
}
.star.active {
  color: #d86f8a;
}
.review-item {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.3rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.review-meta strong {
  color: #333;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.toast.show {
  opacity: 1;
}
@media (max-width: 980px) {
  .hero-section,
  .content-grid,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .cart-panel {
    order: -1;
  }
}
@media (max-width: 700px) {
  .site-header {
    flex-wrap: wrap;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
