<style>
    body {
      font-family: 'Poppins', sans-serif;
      background: #fffaf5;
      color: #333;
      padding: 30px;
      text-align: center;
    }
    h1 {
      color: #e67e22;
    }
    .menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }
    .item {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      padding: 15px 25px;
      width: 250px;
      transition: 0.3s;
      cursor: pointer;
    }
    .item:hover {
      transform: translateY(-5px);
      background: #fef5ec;
    }
    .price {
      color: #27ae60;
      font-weight: bold;
      margin-top: 8px;
    }
    .options {
      display: none;
      text-align: left;
      margin-top: 10px;
    }
    .options label {
      display: flex;
      justify-content: space-between;
      margin: 5px 0;
      font-size: 0.9em;
    }
    .total {
      font-weight: bold;
      margin-top: 10px;
      color: #d35400;
    }
  </style>