:root {
  --pink-100: #fff3f7;
  --pink-200: #ffd6e4;
  --pink-300: #ffb0cc;
  --pink-500: #ff6fa3;
  --pink-700: #d94c81;
  --white: #ffffff;
  --gray-900: #2b1f26;
  --gray-700: #4a3a42;
  --gray-500: #6c5a62;
  --shadow: 0 24px 60px rgba(43, 31, 38, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-heading: "Playfair Display", serif;
  --font-body: "Nunito", sans-serif;
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--pink-100), var(--white) 45%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 176, 204, 0.4);
}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink-500);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
}

.hero {
  max-width: 1150px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-text {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--pink-700);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  background: var(--pink-500);
  color: var(--white);
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(255, 111, 163, 0.25);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pink-700);
  border-color: var(--pink-300);
  box-shadow: none;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.detail-title {
  display: block;
  font-size: 0.8rem;
  color: var(--pink-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: fadeIn 1s ease forwards;
}

.about,
.products,
.contact {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about h2,
.products h2,
.contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about p {
  color: var(--gray-500);
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.about-highlights h3 {
  font-size: 1.1rem;
  color: var(--gray-900);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 600px;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: 0 16px 30px rgba(255, 176, 204, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card h3 {
  font-size: 1.1rem;
}

.product-card p {
  color: var(--gray-500);
}

.tag {
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  background: var(--pink-200);
  color: var(--pink-700);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.products-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--pink-100);
  border-radius: var(--radius-lg);
}

.products-feature p {
  color: var(--gray-500);
  margin: 1rem 0 1.5rem;
}

.contact-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.contact-card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px rgba(255, 176, 204, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-card p {
  color: var(--gray-500);
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 176, 204, 0.6);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.footer {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 176, 204, 0.4);
}

.footer p {
  color: var(--gray-500);
}

.footer-note {
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero-details {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 1.5rem;
    flex-direction: column;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  main {
    gap: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .products-feature {
    padding: 1.2rem;
  }
}
