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

:root {
  --primary: #f4b8c5;
  --primary-dark: #e8a0b0;
  --accent: #f5c87a;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --radius: 12px;
}

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

/* NAV */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
}

.logo img {
  height: 80px;
  width: auto;
}

/* HERO */
.hero {
  text-align: center;
  padding: 3rem 2rem 4rem;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6f0 100%);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* PRODUCTS */
.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SLIDER */
.slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}

.slider:hover .slider-btn {
  opacity: 1;
}

.slider .slider-btn:hover {
  background: #fff;
}

.slider .slider-btn.prev {
  left: 8px;
}

.slider .slider-btn.next {
  right: 8px;
}

.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s;
}

.slider-dots .dot.active {
  background: #fff;
}

.product-card h3 {
  padding: 1rem 1.2rem 0.3rem;
  font-size: 1.1rem;
}

.product-card p {
  padding: 0 1.2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  flex-grow: 1;
}

.shop-btn {
  display: block;
  margin: 1rem 1.2rem;
  padding: 0.6rem;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.product-card:hover .shop-btn {
  background: #e0a850;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  font-size: 0.85rem;
  border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 1rem;
  }

  .logo img {
    height: 60px;
  }

  .slider .slider-btn {
    opacity: 1;
  }
}
