* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fef2ef;
  color: #333;
  font-family: "Shippori Antique", sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: "Kaisei Tokumin", serif;
  font-size: 26px;
  color: #da3f82;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
}

.nav-links a:hover {
  color: #da3f82;
}

/* カバーセクション */
.hero {
  height: 90vh;
  background-image: url("images/cover.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ABOUT */
.about {
  max-width: 850px;
  margin: 90px auto;
  text-align: center;
  padding: 0 20px;
}

.about h2 {
  font-size: 32px;
  color: #da3f82;
  margin-bottom: 18px;
}

.about p {
  line-height: 1.9;
  color: #555;
}

/* CATEGORIES */
.categories {
  padding: 90px 20px;
  text-align: center;
}

.categories h2 {
  font-size: 32px;
  margin-bottom: 45px;
  color: #da3f82;
}

.button-grid {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flower-btn {
  padding: 18px 26px;
  border-radius: 40px;
  border: 2px solid #da3f82;
  text-decoration: none;
  color: #da3f82;
  font-size: 17px;
  background: #fff;
  transition: all 0.25s ease;
}

.flower-btn:hover {
  background: #da3f82;
  color: #fff;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 70px 20px;
}

.contact h2 {
  font-size: 28px;
  color: #da3f82;
  margin-bottom: 12px;
}

.contact p {
  color: #555;
  margin-bottom: 6px;
}

/* FOOTER */
footer {
  background: #fff;
  text-align: center;
  padding: 22px;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .button-grid {
    width: 100%;
  }
}




/* ===== 全体 ===== */
body {
  margin: 0;
  font-family: 'Shippori Antique', serif;
  background-color: #fef2ef;
  color: #333;
}

/* ===== ナビバー ===== */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 100;
}

.logo {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 28px;
  letter-spacing: 2px;
}

.navbar nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #da3f82;
}

/* ===== ページヒーロー ===== */
.page-hero {
  text-align: center;
  padding: 80px 20px;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* ===== 商品 ===== */
.products {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.product {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  background: white;
  padding: 25px;
  border-radius: 16px;
}

.product img {
  width: 220px;
  border-radius: 12px;
}

.product-info h2 {
  font-size: 26px;
}

.price {
  font-size: 18px;
  margin: 10px 0;
}

.actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.actions input {
  width: 60px;
  padding: 6px;
}

.actions button {
  background: #da3f82;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
}

.actions button:hover {
  opacity: 0.85;
}

/* ===== フッター ===== */
footer {
  text-align: center;
  padding: 50px 20px;
  background: white;
  margin-top: 80px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .product {
    flex-direction: column;
    text-align: center;
  }

  .product img {
    width: 100%;
  }

  .actions {
    justify-content: center;
  }
}
