:root {
  --pink: #ef5c95;
  --soft-pink: #fde3ed;
  --blue: #3c86c8;
  --cream: #fffaf6;
  --sand: #f8eadb;
  --ink: #171717;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

.top-bar {
  background: var(--soft-pink);
  text-align: center;
  padding: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  background: #fffaf7;
}

.logo img {
  width: 185px;
}

nav {
  display: flex;
  gap: 54px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}

nav a.active {
  color: var(--pink);
  border-bottom: 3px solid var(--pink);
  padding-bottom: 8px;
}

.cart {
  border: 0;
  background: transparent;
  font-size: 28px;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  padding: 70px 60px;
  background: linear-gradient(#dff6ff 0%, #fff1df 70%);
  overflow: hidden;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
  color: var(--pink);
  font-family: Georgia, serif;
}

.hero h1 span {
  color: var(--blue);
}

.mini-wave {
  width: 90px;
  margin: 24px 0;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 350px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--pink);
  color: white;
  padding: 16px 28px;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-image {
  position: relative;
  height: 460px;
}

.bag {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.bag img {
  position: absolute;
  width: 105px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bag-blue {
  width: 360px;
  height: 250px;
  left: 60px;
  top: 80px;
  background: #fefefe;
  border: 18px solid #93c5ee;
}

.bag-floral {
  width: 280px;
  height: 200px;
  left: 330px;
  top: 190px;
  background: #fff9ef;
  border: 16px solid #ffb2c3;
}

.bag-pink {
  width: 260px;
  height: 270px;
  right: 20px;
  top: 120px;
  background: #ffdce6;
  border: 18px solid #f28da5;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 60px;
  background: #fffaf7;
  border-top: 1px solid #f1ddd5;
  border-bottom: 1px solid #f1ddd5;
}

.features div {
  font-size: 14px;
}

.features strong {
  display: block;
  margin: 8px 0;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 13px;
}

.shop {
  padding: 60px;
  text-align: center;
}

.shop h2 {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.products article {
  background: white;
  border: 1px solid #f1ddd5;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}

.product-img {
  height: 280px;
  position: relative;
}

.product-img img {
  position: absolute;
  width: 105px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-img.blue {
  background: #dff2ff;
}

.product-img.pink {
  background: #ffe1e8;
}

.product-img.floral {
  background: #fff3e8;
}

.products h3,
.products p {
  padding: 0 22px;
}

.products h3 {
  color: var(--blue);
  text-transform: uppercase;
}

.products button {
  margin: 0 22px 24px;
  background: var(--pink);
  color: white;
  border: 0;
  padding: 14px 28px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 800;
}

footer {
  text-align: center;
  padding: 48px 20px;
  background: #fffaf7;
}

footer img {
  width: 170px;
  margin: 0 auto 12px;
}

@media (max-width: 800px) {
  .site-header,
  nav {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 44px 24px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .features,
  .products {
    grid-template-columns: 1fr;
  }

  .shop {
    padding: 44px 24px;
  }
}
