/* Modal Styles */
.search-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.search-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2.5em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 700px;
}

#search-input {
    width: 95%;
    padding: 10px;
    margin: 2em 0;
    border: 1px solid #ddd;

}
#search-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    fill: currentColor;
}
#search-button svg:hover {
    fill: black !important;
}

/* Osnovni stil za SVG unutar gumba */
#search-button svg {
    display: inline-block;
    width: 27px;
    height: 27px;
    fill: currentColor;
    vertical-align: middle; 
}

/* Gumb */
#search-button {
    padding: 10px 15px;
    background-color: #C94C4C;
    border: none;
    color: white !important;
    cursor: pointer;
    width: 100%;
}

/* Hover na cijeli gumb */
#search-button:hover {
    background-color: #e02e2e!important; /* Možeš promijeniti boju kad se hovera */
}

.search-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    color: #cf2e2e;
    cursor: pointer;
}

.search-close-btn:hover {
    color: #e14d43;
}

/* Menu Search Icon */

.menu-item.search-iconsearch-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.menu-item.search-icon a {
    font-size: 30px;
    display: inline-block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.menu-item.search-icon a:hover {
    color: #0073aa;
}

/* Category Dropdown and Checkbox Styles */
#category-select {

}

label {
    display: flex;
  gap: 0.5rem;
    margin: 1em;
  padding: 1rem 1rem!important;
  border-radius: 0.5rem;
}



}



.icon {
  width: 1rem;
  aspect-ratio: 1;
  fill: #333;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

