     * {
         padding: 0;
         box-sizing: border-box;
         margin: 0;
         scroll-behavior: smooth;
     }

     body {
         font-family: Arial, sans-serif;
         margin: 0;
         background: #f5f5f5;
     }

     body::-webkit-scrollbar {
         display: none;
     }

     /* navbar */
     .navbar {
         position: fixed;
         width: 100%;
         z-index: 1000;
         /* background-color: #00695c; */
     }

     .container {
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 1rem 2rem;
     }

     nav {
         display: flex;
         align-items: center;
     }

     .logo {
         display: flex;
         align-items: center;
         gap: 10px;
         font-weight: bold;
         font-size: 30px;
         color: white;
     }

     .logo img {
         width: 40px;
     }

     .nav-links {
         display: flex;
         gap: 1rem;
     }

     .nav-links a {
         color: white;
         text-decoration: none;
     }

     .nav-links .btn {
         background: white;
         color: black;
         padding: 0.5rem 1rem;
         border-radius: 8px;
     }

     .hamburger {
         display: none;
         font-size: 2rem;
         cursor: pointer;
         color: white;
     }

     .dropdown {
         position: relative;
     }

     .dropdown-content {
         display: none;
         position: absolute;
         background: #222;
         top: 100%;
         left: 0;
         min-width: 150px;
         z-index: 100;
     }

     .dropdown:hover .dropdown-content {
         display: block;
     }

     .dropdown-content a {
         display: block;
         padding: 0.5rem;
         color: white;
         text-decoration: none;
     }

     .close-sidebar {
         display: none;
         font-size: 28px;
         color: white;
         text-align: right;
         padding: 10px 20px;
         cursor: pointer;
     }

     .nav-links img {
         display: none;
     }

     @keyframes scaleUp {
         to {
             transform: scale(1);
         }
     }

     @keyframes fadeIn {
         from {
             background: rgba(0, 0, 0, 0);
         }

         to {
             background: rgba(0, 0, 0, 0.6);
         }
     }

     @media(max-width: 400px) and (min-width: 900px) {
         .container .logo img {
             width: 10 0px;
         }
     }

     @media(min-width: 400px) and (max-width: 768px) {
         .nav-links a {
             font-size: 20px;
             margin: 0px 0px 10px;
         }
     }

     /* mian/content */
     .hero-section {
         position: relative;
         width: 100%;
         height: 100vh;
         background-color: #00695c;
         align-items: center;
         display: flex;
         font-family: sans-serif;
         justify-content: space-between;
         padding: 30px 20px 20px;
         overflow: hidden;
     }

     .hero-section .content-hero h1 {
         font-size: 5.5rem;
         color: white;
         font-family: "Fjalla One", sans-serif;

     }

     .hero-section .content-hero {
         margin-left: 10px;
         width: 50%;
         flex-direction: column;
         position: relative;
         z-index: 2;
         gap: 20px;
         display: flex;
         overflow: hidden;
         justify-content: center;
     }

     .content-hero a {
         padding: 15px;
         border-radius: 20px;
         text-decoration: none;
         background-color: white;
         color: black;
         width: fit-content;
     }

     .hero-section .img-hero {
         height: 100%;
         z-index: 1;
         right: 0;
         position: absolute;
     }

     /* all content */
     .all-content {
         position: relative;
     }

     .tentang,
     .product,
     .gallery,
     .sosmed,
     .pesanan {
         padding: 40px 20px;
         top: 100px;
         background: white;
         margin: 20px;
         border-radius: 10px;
         line-height: 1.5;
     }

     /* all content have tag ul */
     .list-content {
         padding: 10px;
     }

     /* tentang section */
     .tentang h2 {
         border-left: #00695c 8px solid;
         background-color: #abd3cf;
         padding: 10px;
         margin-bottom: 10px;
     }

     /* ===== PRODUCT SECTION ===== */
     .product-grid {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .product-card {
         background: #cfcb82;
         border-radius: 18px;
         padding: 10px;
         overflow: hidden;
         box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
         border: #222 2px solid;
         transition: 0.3s ease;
         text-align: center;
         align-content: center;
         /* animation: produk 1s linear infinite; */
     }

     .product-card small{
            color: #222;
     }
     .product-card a {
         text-decoration: none;
     }

     .product-card:hover {
         transform: translateY(-8px);
     }

     .product-card img {
         width: 100%;
         height: 180px;
         object-fit: cover;
     }

     .product-card h3 {
         font-size: 18px;
         color: #222;
     }

     .product-card span {
         display: block;
         padding-bottom: 15px;
         font-weight: bold;
         color: #2ecc71;
     }

     .popup-overlay {
         display: none;
         position: fixed;
         inset: 0;
         background: rgba(0, 0, 0, 0.6);
         justify-content: center;
         padding: 20px;
         z-index: 9999;
     }

     .popup-content {
         background: #fff;
         padding: 20px;
         width: 90%;
         max-width: 400px;
         border-radius: 10px;
         overflow: auto;
     }

     .popup-content h3 {
         margin-bottom: 10px;
     }

     .popup-content input,
     .popup-content textarea {
         width: 100%;
         padding: 10px;
         margin-bottom: 10px;
     }

     .menu-list {
         display: flex;
         flex-direction: column;
         overflow: auto;
         gap: 10px;
     }

     .menu-item {
         display: grid;
         grid-template-columns: 20px 1fr auto 60px;
         align-items: center;
         gap: 10px;
         background: #f8f8f8;
         padding: 8px 10px;
         border-radius: 6px;
     }

     .menu-harga {
         font-size: 13px;
         color: #444;
     }

     .qty {
         width: 55px;
         padding: 4px;
     }

     .total-box {
         margin: 15px 0;
         font-size: 16px;
         text-align: right;
     }


     .menu-item input[type="checkbox"] {
         width: 16px;
         height: 16px;
     }

     .menu-list label {
         display: block;
         margin-bottom: 5px;
     }

     .popup-content button {
         width: 100%;
         padding: 12px;
         background: #1db954;
         color: white;
         border: none;
         border-radius: 5px;
         font-weight: bold;
     }

     .close-popup {
         float: right;
         cursor: pointer;
         font-size: 18px;
     }

     /* ===== TABLET ===== */
     @media (max-width: 992px) {
         .product-grid {
             grid-template-columns: repeat(2, 1fr);
         }
     }

     /* ===== MOBILE ===== */
     @media (max-width: 576px) {
         .product-grid {
             grid-template-columns: repeat(2, 1fr);
         }

         .product-card img {
             height: 200px;
         }
     }


     /* galery sec */
     .gallery {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
         padding: 10px;
     }

     .gallery img {
         width: 100%;
         border-radius: 10px;

     }

     /* pesananan */
     .btn-order {
         padding: 10px 20px;
         background-color: #228159;
         color: white;
         text-decoration: none;
         border-radius: 10px;
     }

     footer {
         background: #00695c;
         color: white;
         text-align: center;
         padding: 20px;
     }

     @media(min-width: 700px) {
         .mobile {
             display: none;
         }

         .down-dekstop {
             display: block;
             height: 100vh;
             align-content: center;
             text-align: center;
             padding: 20px;
         }

         .down-dekstop h1 {
             padding: 10px;
         }
     }

     @media (max-width: 700px) {

         /* navbar */
         .navbar {
             display: flex;
             justify-content: center;
         }

         .container {
             width: 90%;
             padding: 10px 15px 10px;
             border-radius: 20px;
             margin: 10px auto;
         }

         .nav-links img {
             display: flex;
         }

         .nav-links {
             position: fixed;
             top: 0;
             left: -100%;
             width: 70%;
             height: 100dvh;
             background-color: white;
             /* border-right: 2px solid yellow; */
             flex-direction: column;
             border-radius: 0px 20px 20px 0px;
             text-align: center;
             padding: 50px 20px 20px;
             gap: 20px;
             transition: left 0.3s ease-in-out;
             z-index: 2000;
         }

         .nav-links a {
             color: black;
         }

         .nav-links.active {
             left: 0;
         }

         .hamburger {
             display: block;
         }

         .navbar .logo span {
             font-size: 17px;
         }

         .dropdown-content {
             position: static;
         }

         .close-sidebar {
             display: block;
             right: 0;
             top: 10px;
             position: absolute;
             color: black;
         }

         /* HERO-SECTION */
         .hero-section {
             height: auto;
             padding: 30% 10px 20%;
             border-radius: 0px 0px 0px 30px;
         }

         .hero-section .content-hero {
             width: 80%;
         }

         .hero-section .content-hero h1 {
             font-size: 3rem;
         }

         .hero-section .img-hero {
             height: auto;
             width: 300px;
             bottom: 0;
             transition: 0.3s ease;
             animation: upleft 1s forwards;
         }

         @keyframes upleft {
             0% {
                 transform: translateY(160px);
             }
         }


         .list-content {
             padding: 20px;
         }

         /* down website */
         .down-dekstop {
             display: none;
         }
     }