body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4eca0;
  color: #000;
}

.header-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem 1rem 2rem;
}

.tag-container {
  background: #ffe6f5;
  border: 3px solid #000;
  border-radius: 30px;
  padding: 3rem 4rem;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tag-hole {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  background: #d4c77a;
  border: 3px solid #000;
  border-radius: 20px;
}

.brand-name {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  line-height: 0.9;
  margin: 0;
  position: relative;
}

.price-badge {
  position: absolute;
  background: #ffb6d9;
  border: 3px solid #000;
  border-radius: 50%;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.decorations {
  position: relative;
}

.flower {
  position: absolute;
  color: #d4b5ff;
  font-size: 1.5rem;
  top: -12px;
  right: 100px;
}

.flower2 {
  position: absolute;
  color: #ffb6d9;
  font-size: 1.5rem;
  top: 48px;
  left: -10px;
}

.tagline {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 2rem;
  text-transform: uppercase;
}

.menu-section {
  max-width: 900px;
  margin: 1rem auto;
  padding: 1rem;
}

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

.item {
  background: white;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  border: 3px solid #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #ffb6d9;
}

.item-content {
  flex: 1;
}

.item h3 {
  margin: 0 0 0.5rem 0;
  color: #000;
  font-weight: bold;
}

.item-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  background: #ffb6d9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 2px solid #000;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #000;
  color: white;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .header-section {
    padding: 2rem 1rem 0.5rem 1rem;
  }

  .tag-container {
    padding: 2rem 2rem;
    max-width: 90%;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .price-badge {
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
  }

  .flower {
    top: -5px;
    right: 40px;
    font-size: 1.2rem;
  }

  .flower2 {
    top: 20px;
    left: 5px;
    font-size: 1rem;
  }

  .tagline {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .menu-section {
    padding: 0.5rem;
    margin: 0rem auto;
  }

  .menu-section h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .item {
    flex-direction: column;
    text-align: center;
  }

  .item img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  .item-price {
    margin-top: 0.5rem;
  }

  footer {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-section {
    padding: 1.5rem 1rem 0.3rem 1rem;
  }

  .brand-name {
    font-size: 2rem;
  }

  .tag-container {
    padding: 1.5rem 1.5rem;
  }

  .price-badge {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .tag-hole {
    width: 80px;
    height: 35px;
  }

  .flower {
    top: -8px;
    right: 18px;
    font-size: 1rem;
  }

  .flower2 {
    top: 21px;
    left: -1px;
    font-size: 0.9rem;
  }

  .menu-section {
    margin: 0rem auto;
  }

  .menu-section h2 {
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
  }

  footer {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
}

