* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
  }
  
  header {
    background-color: #D2AB80;
    padding: 1rem;
    text-align: center;
    color: white;
  }

  h2 {
    color: #725C3A;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #809671; */
    padding: 15px 20px;
    color: white;
    position: relative;
    z-index: 10;
  }

  .logo {
    font-size: 22px;
    font-weight: bold;
  }

  .logo img {
    width: 5rem;
    margin-left: 0.5rem;
  }

  /* Hamburger Icon */
  .menu-toggle {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 20;
  }

  .menu-toggle span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 5px;
    transition: 0.4s;
  }

  .menu-toggle span:nth-child(1) {
    top: 0;
  }

  .menu-toggle span:nth-child(2) {
    top: 10px;
  }

  .menu-toggle span:nth-child(3) {
    top: 20px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }

  /* Menu */
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  .navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 1s ease;
  }

  .navbar ul li a:hover {
    color: #ffe600;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .navbar ul {
      flex-direction: column;
      align-items: flex-end;
      background-color: #725C3A ;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(-10px);
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: all 1s ease;
      padding: 0 20px;
    }

    .navbar ul.show {
      opacity: 1;
      transform: translateY(0);
      max-height: 300px;
      pointer-events: auto;
      padding: 15px 20px;
    }

    .navbar ul li {
      margin-bottom: 10px;
    }
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
  }
  
  .product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .product-card img {
    max-width: 100%;
    border-radius: 8px;
  }
  
  .price {
    font-size: 1.2rem;
    color: #28a745;
    margin: 0.5rem 0;
  }
  
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background-color: #075E54;
  }
   /* Reset dasar */
   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Tombol melayang */
  .floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color:  #EE4D2D;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
  }

  .floating-button:hover {
    background-color: #f33a15;
  }

  /* Responsif di layar kecil */
  @media (max-width: 600px) {
    .floating-button {
      padding: 15px 20px;
      font-size: 30px;
      bottom: 15px;
      right: 15px;
    }
  }

  a {
    text-decoration: none;     /* Hilangkan garis bawah */
    color: inherit;            /* Ambil warna dari elemen induk (misalnya dari tombol) */
  }
  
  a:visited,
  a:hover,
  a:active {
    text-decoration: none;
    color: inherit;
  }