@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --pink: #fb64b6;
  --pink-dark: #e73592;
  --pink-light: #fff0f7;
  --blue: #58d2d8;
  --cream: #fff8ef;
  --text: #2b1f25;
  --muted: #705f66;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(114, 57, 83, 0.14);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 100, 182, 0.16), transparent 32rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 55%, #fff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(251, 100, 182, 0.14);
}

  .header .navbar .logo .logo-nav {
  font-size: 1.5rem;
}

.navbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--pink-dark);
}

.logo img,
.footer-logo img {
  width: 35px;
  height: 35px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--pink-dark);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--pink-light);
  cursor: pointer;
}

.bar {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--pink-dark);
  transition: 0.25s ease;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.45rem;
}

.hero-text,
.section-heading p,
.about-card p,
.contact-card p,
.product-info p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 580px;
  margin: 24px 0 30px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: 0 14px 30px rgba(251, 100, 182, 0.28);
}

.btn.secondary {
  color: var(--pink-dark);
  background: var(--white);
  border: 1px solid rgba(251, 100, 182, 0.22);
}

.btn.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(251, 100, 182, 0.16);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(88, 210, 216, 0.34), rgba(251, 100, 182, 0.24));
  transform: rotate(-3deg);
  z-index: -1;
}

.hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: -24px;
  bottom: 36px;
  width: 170px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 1.35rem;
  color: var(--pink-dark);
}

.floating-card span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(251, 100, 182, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(114, 57, 83, 0.18);
}

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

.product-info {
  padding: 22px;
}

.product-info p {
  margin: 10px 0 18px;
  font-size: 0.95rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-footer strong {
  color: var(--pink-dark);
}

.product-footer a {
  text-decoration: none;
  font-weight: 800;
  color: var(--pink-dark);
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.featured {
  background: linear-gradient(180deg, #fff, #fff3f9);
}

.about-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(251, 100, 182, 0.10), rgba(88, 210, 216, 0.16)),
    var(--white);
  box-shadow: var(--shadow);
}

.steps-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(251, 100, 182, 0.12);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(251, 100, 182, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(251, 100, 182, 0.24);
}

.step-card p,
.testimonial-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials-section {
  padding-top: 40px;
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 240, 247, 0.72), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.stars {
  margin-bottom: 18px;
  color: var(--pink-dark);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-card p {
  margin-bottom: 22px;
}

.contact-card.soft {
  background: linear-gradient(135deg, #fff3f9, #effdff);
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-card strong {
  color: var(--text);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 44px 16px;
  text-align: center;
  background: linear-gradient(90deg, #fce4ec, #f3e5f5, #e3f2fd);
}

.footer p,
.footer small {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .about-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .floating-card {
    left: 18px;
  }

  .cards-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  
  .navbar {
    height: 70px;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 100, 182, 0.14);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    display: block;
    padding: 16px;
    border-radius: 16px;
  }

  .nav-menu a:hover {
    background: var(--pink-light);
  }

  .hero {
    min-height: auto;
    padding: 44px 0 64px;
  }

  .hero-image img {
    aspect-ratio: 1 / 1;
  }

  .section {
    padding: 64px 0;
  }

  .cards-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 250px;
  }

  .about-card,
  .contact-card {
    padding: 26px;
  }
}

@media (max-width: 420px) {
  .hero-actions .btn {
    width: 100%;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


.loading-products,
.empty-products {
  grid-column: 1 / -1;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer small a {
  color: var(--pink-dark);
  font-weight: 800;
  text-decoration: none;
}
