/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.single-prodotti .swiper-slide img{
	border-radius: 10%;
}

/* Contenitore dropdown */
.dropdown {
	position: relative;
	margin-bottom: 25px;
	padding: 0 25px;
}

.dropdown-container{
	display: flex;
	gap: 1rem;
}

.dropdown-container > span{
	color: #E54107;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 21px;
}

.dropdown-container img{
	width: 45px;
}

#delete-option img{
	width: 15px;
}

/* Bottone principale */
.dropdown-toggle {
	min-width: 200px;
	padding: 10px;
	background: white;
	border-radius: 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	font-family: poppins;
}

.dropdown.active .dropdown-toggle{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/* Icona freccia */
.arrow {
	transition: transform 0.3s ease;
}

/* Contenitore della lista */
.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	padding: 10px 0;
	z-index: 1000;
	font-family: poppins;
}

/* Mostra il dropdown */
.dropdown.active .dropdown-menu {
	display: block;
}

/* Ruota la freccia quando il menu è aperto */
.dropdown.active .arrow {
	transform: rotate(180deg);
}

/* Stile delle opzioni */
.dropdown-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	font-weight: 500;
	transition: .3s;
	cursor: pointer;
	justify-content: space-between;
}

.dropdown-option:hover{
	background-color: #005F2726;
}

/* Nasconde il radio button */
.dropdown-option input {
	display: none;
}

/* Crea il pallino personalizzato */
.radio-custom {
	width: 16px;
	height: 16px;
	border: 2px solid gray;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s, border 0.3s;
}

/* Stato selezionato: pallino verde pieno */
.dropdown-option input:checked + .radio-custom {
	background: #005F27;
	border-color: #005F27;
}
