    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    }

    body {
      background: linear-gradient(145deg, #fff9f0 0%, #ffe9d6 100%);
      color: #3e2c1b;
      line-height: 1.5;
    }

    /* navigation */
    .navbar {
      background-color: #c44f4f;
      padding: 1rem 2rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 8px 16px rgba(160, 60, 40, 0.2);
      border-bottom: 3px solid #fbbc8b;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo a {
      font-size: 1.9rem;
      font-weight: 700;
      color: #fffbe3;
      text-decoration: none;
      letter-spacing: 1px;
      text-shadow: 2px 2px 0 #aa3e3e;
    }
    .logo a i {
      margin-right: 6px;
      color: #ffdd99;
    }

    .menu-list {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      gap: 0.5rem;
      align-items: center;
    }

    .menu-list li a {
      display: inline-block;
      padding: 0.7rem 1.2rem;
      font-weight: 600;
      color: #fffdeb;
      text-decoration: none;
      border-radius: 40px;
      transition: 0.2s;
      font-size: 1.1rem;
    }

    .menu-list li a:hover {
      background-color: #e6736f;
      color: #2f1e0e;
      transform: scale(1.02);
    }

    /* special style for Menu link (store) */
    .menu-list li a.store-link-nav {
      background-color: #fdb07b;
      color: #3b2612 !important;
      font-weight: 700;
      box-shadow: 0 2px 6px #ad5a3a;
      padding-right: 1.5rem;
      padding-left: 1.5rem;
    }

    .menu-list li a.store-link-nav i {
      margin-left: 6px;
    }

    /* container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem;
    }

    /* hero */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      margin: 2rem 0 3rem 0;
      background: #ffefe2;
      border-radius: 60px;
      padding: 2rem 2.5rem;
      box-shadow: 0 14px 22px #eccab3;
    }

    .hero-text {
      flex: 1 1 260px;
    }

    .hero-text h1 {
      font-size: 3rem;
      color: #b34141;
      line-height: 1.1;
      text-shadow: 2px 2px 0 #ffc28c;
    }

    .hero-text p {
      font-size: 1.3rem;
      margin: 1rem 0 0.5rem;
      color: #563e22;
    }

    .hero-img {
      flex: 1 1 260px;
      text-align: center;
    }

    .hero-img img {
      max-width: 100%;
      width: 320px;
      border-radius: 200px 200px 80px 80px;
      box-shadow: 16px 16px 0 #d26b5e;
      border: 4px solid white;
    }

    /* image style */
    .food-img {
      border-radius: 36px;
      box-shadow: 8px 12px 18px #c9a787;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      width: 100%;
    }

    /* sections */
    .section-title {
      font-size: 2.2rem;
      color: #a5412b;
      margin: 2.5rem 0 1rem;
      border-left: 16px solid #f48b6a;
      padding-left: 1.2rem;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      align-items: start;
    }

    .card {
      background: #fffefb;
      border-radius: 38px;
      padding: 1.8rem 1.5rem;
      box-shadow: 10px 12px 0 #e7b194;
      border: 2px solid #fbcbb2;
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 30px;
      margin-bottom: 1.2rem;
      border: 3px solid white;
      box-shadow: 0 6px 12px #d19776;
    }

    .card h3 {
      font-size: 1.8rem;
      color: #b6482b;
    }

    /* about */
    .about-block {
      background-color: #fee1cd;
      border-radius: 50px;
      padding: 2rem 2.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      border: 3px solid #ffaa7a;
    }

    .about-text {
      flex: 2 1 280px;
    }

    .about-text h2 {
      color: #882f1c;
      font-size: 2rem;
    }

    .about-text p {
      font-size: 1.2rem;
    }

    .about-img {
      flex: 1 1 200px;
    }

    .about-img img {
      width: 100%;
      border-radius: 40% 40% 20% 20%;
      border: 5px solid white;
    }

    /* store section */
    .store-section {
      background: #f5e7d9;
      border-radius: 70px;
      padding: 2.5rem;
      margin: 2rem 0;
      border: 5px dashed #db7f5c;
    }

    /* textlink */
    .text-link {
      color: #b63e2c;
      font-weight: 700;
      text-decoration: underline wavy #ff9768 2px;
      background-color: #fff2dc;
      padding: 0.2rem 0.4rem;
      border-radius: 12px;
      transition: 0.2s;
    }

    .text-link:hover {
      background-color: #ffc2a1;
      color: #631e0e;
    }

    /* footer */
    .footer {
      background-color: #c44f4f;
      color: #fbead2;
      padding: 2rem;
      text-align: center;
      border-radius: 60px 60px 0 0;
      margin-top: 3rem;
    }

    .footer a {
      color: #ffefc0;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 700px) {
      .navbar {
        flex-direction: column;
        gap: 0.8rem;
      }
      .menu-list {
        justify-content: center;
      }
    }