/*
 Theme Name:   Alcalina
 Theme URI:    https://generatepress.com
 Description:  Tema para la Comunidad Energética La Alcalina
 Author:       Los Alcalinos
 Author URI:   https://perezdans.com
 Template:     generatepress
 Version:      0.1
*/

.mobile-header-navigation {
	padding: 10px;
} 

label {
	font-weight: 500;
	color: #000;
}
.wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
}

/* Ocultar checkbox original */
input.checkbox-elegante,
.checkbox-elegante input[type="checkbox"],
.wpcf7-radio input[type="radio"] {
    display: none;
}

.wpcf7-list-item-label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
		color: #000;
}

/* ===== CHECKBOX ===== */
.checkbox-elegante .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
}
.checkbox-elegante input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: var(--accent);
    border-color: var(--accent);
}
.checkbox-elegante input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 1px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

/* ===== RADIO ===== */
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
}

.wpcf7-form input[type="radio"]:checked + .wpcf7-list-item-label::before {
    border-color: var(--accent);
}

.wpcf7-form input[type="radio"]:checked + .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* Hover suave */
.checkbox-elegante .wpcf7-list-item-label:hover::before,
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label:hover::before {
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.15);
}