/*RICERCA*/
.search-toggle {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  margin-left: 15px;
}

.search-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

.search-box {
  width: 100%;
  max-width: 600px;
  position: relative;
  text-align: center;
}

.search-box input[type="text"] {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
}

.search-box .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
/* Wrapper specifico per la ricerca VirtueMart */
.vm-search-wrapper form {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Stile per il campo input */
.vm-search-wrapper form input[type="text"],
.vm-search-wrapper form input[name="keyword"] {
  flex: 1;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

/* Stile per il bottone submit */
.vm-search-wrapper form button[type="submit"],
.vm-search-wrapper form input[type="submit"],
.vm-cat-sidebar form button[type="submit"],
.vm-cat-sidebar form input[type="submit"] {
  padding: 15px 25px;
  font-size: 18px;
  background-color: #0a5898;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover del bottone */
.vm-search-wrapper form button[type="submit"]:hover,
.vm-search-wrapper form input[type="submit"]:hover,
.vm-cat-sidebar form button[type="submit"]:hover,
.vm-cat-sidebar form input[type="submit"]:hover {
  background-color: #094a7f;
}
/*div search*/
.vm-search-wrapper .search,
.vm-cat-sidebar .search {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.search-intro {
	color: #fff;
}

.vm-search-wrapper {
	padding: 20px;
}
/*STILE RICERCA IN SIDEBAR*/
.vm-cat-sidebar #mod_virtuemart_search {
	border: 1px solid #e6e8ec;
	border-radius: 5px 0 0 5px;
}
.vm-cat-sidebar .search {
	margin: 0;
}
.vm-cat-sidebar .search #mod_virtuemart_search {
	width: 100% !important;
	max-width: 100% !important;
}