        a:link,
        a:visited {
      color: inherit;
      text-decoration: none;
    }
      .fixed button:hover {
      background-color: #43def3;
    }
      .fixed button {
      background-color: #3fd7e2;
      color: #ffffff;
      padding: 5px 15px;
      margin: -1px 0px;
      border: none;
      border-radius: -30px;
      cursor: pointer;
      transition: background-color 0.5s ease;
      font-size: 16px;
    }
      div.fixed {
      position: fixed;
      bottom: -30px;
      right: 300px;
      width: 300px;
    }
       body {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 15vh; /* Menetapkan tinggi 100% dari viewport */
      background-image:""; /* BACKGROUND LATAR BELAKANG*/
    }

    .full-box {
      width: 100%;
      max-width: 2000px; /* Menetapkan lebar maksimum */
      padding: 20px;
      box-sizing: border-box;
      background-color: #43def3; /* Warna putih untuk kotak */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Efek bayangan untuk dimensi */
      border-radius: 10px; /* Sudut melengkung */
      text-align: center;
      color: #2c3e50; /* Warna teks */
      text-shadow: #000 2px 2px;
    }

     *
    {
      box-sizing: border-box;
      font-family: 'Open Sans', 'Arial', sans-serif;
    }

    .listing
    {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      
      /*just for pen positioning*/
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
    }

    .product
    {
      width: 240px;
      position: relative;
    }

    .product a
    {
      text-decoration: none;
    }

    .img-wrapper
    {
      display: block;
      width: 100%;
      height: 240px;
      border: 1px ;
      border-bottom: 0;
      overflow: hidden;
      text-align: center;
      box-shadow: #ffffff;
    }

    .img-wrapper img
    {
      width: 100%;
      border-radius: 5px; /* Optional: Add border-radius for rounded corners */
      image-rendering: crisp-edges; /* Set image rendering quality to crisp-edges */
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-crisp-edges;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: pixelated;
      -ms-interpolation-mode: nearest-neighbor;
    }

    .info
    {
      width: 100%;
      background: #060a0a;
      color: #fcfeff;
      position: relative;
      padding: 40px 10px 20px 10px;
      text-align: center;
      
      vertical-align: middle;
      transform: translateZ(0);
      box-shadow: 0 0 1px rgba(0,0,0,0);
      backface-visibility: hidden;
      transition-property: color,height;
      transition-duration: 0.3s,0.4s;
      transition-timing-function: ease-out;
      height: 83px;
    }

    .info:before
    {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      transform: scaleY(0);
      transform-origin: 50%;
      transition: transform 0.3s ease-out;
    }

    .info:after
    {
      visibility: hidden;
      pointer-events: none;
      position: absolute;
      z-index: -1;
      content: '';
      border-style: solid;
      transition-duration: 0.3s;
      transition-property: transform;
      left: calc(50% - 11px);
      bottom: 0;
      border-width: 10px 10px 0 10px;
      border-color: black transparent transparent transparent;
    }

    .product:hover .info
    {
      height: 40px;
    }

    .product:hover .info:before
    {
      transform: scaleY(0.7);
    }

    .product:hover .info:after
    {
      visibility: visible;
      transform: translateY(10px);
    }

    .title
    {
      transition: transform 0.3s ease-out;
      text-shadow: #fff 1px 1px; 
    }
    .title a
    {
      color: inherit;
    }
    .product:hover .title
    {
      transform: translateY(-18px);
      font-weight: bold;
      color: #000;
    }

    .price
    {
      background: #e32d2c;
      position: absolute;
      font-size: 1.3em;
      padding: 4px 13px;
      top: -15px;
      right: 10px;
    }

    .price.sale
    {
      background: #00ba2f;
    }

    .price.old
    {
      font-size: 0.95em;
      padding: 4px 6px;
      text-decoration: line-through;
      top: -43px;
    }

    .actions-wrapper
    {
      margin-top: 14px;
      display: flex;
      justify-content: space-around;
      visibility: hidden;
    }
    .actions-wrapper *
    {
      width: 50%;
      padding: 2px 0;
      text-align: center;
      color: #191919;
      font-size: 0.95em;
      font-weight: bold;
    }
    .actions-wrapper *:before
    {
      font-family: "FontAwesome";
      margin-right: 8px;
    }
    .wishlist
    {
      border-right: 1px solid #afafaf;
    }
    .wishlist:hover
    {
      color: #e32d2c;
    }
    .wishlist:before
    {
      content: "\f08a";
    }

    .cart:hover
    {
      color: #0a75b9;
    }
    .cart:before
    {
      content: "\f07a";
    }

    .product:hover .actions-wrapper *
    {
      visibility: visible;
    }

    .note
    {
      position: absolute;
      top: 0;
      left: 0;
      padding: 4px 8px;
      font-size: 0.9em;
    }

    .note.on-sale
    {
      background: #00ba2f;
      color: #fff;
    }

    .note.no-stock
    {
      background: #1b29e7;
      color: #fff;
    }
    .button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            border: 2px solid #3498db;
            color: #ffffff;
            background-color: #3498db;
            border-radius: 8px;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .button:hover {
            background-color: #ffffff;
            color: #3498db;
            border-color: #3498db;
        }

        /* Styles for the popup */
        .popup {
            display: none;
            position: fixed;
            top: 25%;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

.popup-content {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Pusatkan elemen secara horizontal */
    align-items: flex-start; /* Atur elemen di bagian atas */
    position: relative;
    background-color: white;
    width: 100%; /* Gunakan lebar penuh */
    max-width: 900px; /* Batasi lebar maksimum */
    max-height: 50vh; /* Batasi ketinggian maksimum (80% dari tinggi viewport) */
    overflow-y: auto; /* Aktifkan scrollbar vertikal jika kontennya melebihi ketinggian maksimum */
    box-sizing: border-box; /* Menyesuaikan box sizing untuk mencegah overflow */
}

        /* Media queries untuk responsivitas */
        @media (max-width: 768px) {
        }    
        .popup-content {
        padding: 10px; /* Berikan sedikit padding pada layar handphone */
        }
        .close {
        position: absolute;
        top: -10px; /* Atur jarak dari bagian atas */
        right: 0px; /* Atur jarak dari bagian kanan */
        left : -15px; /* atur jarak dari bagian kiri */
        font-size: 50px; /* Ukuran font */
        cursor: pointer;
        padding: 20px; /* Atur padding tombol */
        background-color: transparent; /* Hapus warna latar belakang */
        border: none; /* Hapus border */
        color: rgb(0, 0, 0); /* Warna teks */
        outline: none; /* Hapus outline */
        }
        /* Styles for the image */
        .popup-img {
            max-height: 20vh;
            margin: auto;
            display: block;
        }
        .popup-img1 {
            max-height: 20vh;
            margin: auto;
            display: block;
        }
        .popup-img2 {
            max-height: 20vh;
            margin: auto;
        }
        .title span {
            position: center;
            top: 0%;
            left: -1000%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7); /* Warna latar belakang teks */
            color: #fff; /* Warna teks */
            padding: 10px 10px;
            border-radius: 5px;
            font-size: 14px;
    }
    .popup-content p {
      color: #000; /* Warna teks pada popup */
      font-size: 16px;
      text-align: center;
      margin-bottom: 20px;
    }