
      .dropbtn {
        color: white;
        font-size: 20px;
        border: none;
      }

      .dropdown {
        position: relative;
        display: inline-block;
      }

      .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        border-radius: 5px;
        padding-top: 6px;
        min-width: 160px;
        /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
        z-index: 1;
      }

      /* Links inside the dropdown */
      .dropdown-content a {
        font-size: medium;
        color: black;
        padding: 8px;
        text-decoration: none;
        display: block;
      }

      /* Change color of dropdown links on hover */
      .dropdown-content a:hover {
        background-color: #ddd;
      }

      /* Show the dropdown menu on hover */
      .dropdown:hover .dropdown-content {
        display: block;
      }
      .menu {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 9999;
      animation: slideIn 0.3s ease-in;
    }

    .menu-open {
      display: block;
    }

    .close-btn {
      position: absolute;
      top: 0.5rem;
      right: 1rem;
      color: #fff;
      font-size: 3rem;
      cursor: pointer;
    }

    @keyframes slideIn {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(0);
      }
    }
    .accordion-content {
  display: none;
}


.accordion-content2 {
    display: none;
  }

input[type="checkbox"] {
    accent-color: #047e08;
  }
  .modal {
    display: none;
  }
  .product-image {
    width: 100%;
    height: auto;
  }

  .product-image-large {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 999;
  }
  .modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }

  .modal.show {
    display: block;
  }

  .modal.show .modal-overlay {
    display: block;
  }

  .modal.show .modal-content {
    display: block;
  }

  .modal-content {
    display: none;
    background-color: #fff;
    width: 95%;
    max-width: 500px;
    border-radius: 4px;
    padding: 40px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
  }