/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com
Description:  Default GeneratePress child theme
Author:       Tom Usborne
Author URI:   https://tomusborne.com
Template:     generatepress
Version:      0.1
*/

.btn .elementor-button .elementor-button-icon svg {
	fill: green !important;
	width: 10px !important;
	height: 10px !important;
}

:root {
	--accent: #0E273E;
	--muted: #666666;
}


body {
	font-family: 'Jost', sans-serif;
}

form {
	display: flex;
	flex-direction: column;
}

.field {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

label {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid #e1e4e8;
	border-radius: 10px;
	background: #fff;
	font-size: 15px;
	font-family: 'Jost', sans-serif;
	transition: all 0.25s ease;
}

input:focus,
textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(14, 39, 62, 0.12);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

.actions {
	margin-top: 12px;
}

button.primary {
	background: var(--accent);
	color: #ffffff;
	padding: 14px 28px;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.25s ease;
}

button.primary:hover {
	background: #0b1f30;
}

.note {
	font-size: 13px;
	color: var(--muted);
	margin-top: 8px;
	text-align: center;
}


/* FORM WRAPPER membership form style */
.membership-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* INLINE ROW (50/50) */
.mf-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.mf-row .mf-field {
	flex: 1;
}

/* FIELD WRAPPER */
.mf-field {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.mf-field label {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	margin-bottom: 15px;
}

/* INPUTS */
.mf-field input[type="email"] {
    margin: 10px 0;
    padding: 12px;
}
.mf-field input,
.mf-field select,
.mf-field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid #e1e4e8;
	border-radius: 10px;
	background: #fff;
	font-size: 15px;
	font-family: 'Jost', sans-serif;
	transition: all 0.25s ease;
}

.mf-field input:focus,
.mf-field select:focus,
.mf-field textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(14, 39, 62, 0.12);
}

.mf-field textarea {
	resize: vertical;
	min-height: 120px;
}

/* BUTTON AREA */
.mf-actions {
	margin-top: 10px;
}

.mf-btn {
	background: var(--accent);
	color: #ffffff;
	padding: 14px 28px;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.25s ease;
}

.mf-btn:hover {
	background: #0b1f30;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.mf-row {
		flex-direction: column;
		gap: 15px;
	}
}

.form-container {
	background: #fff;
	padding: 50px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.progress-container {
	width: 100%;
	height: 10px;
	background: #ddd;
	border-radius: 20px;
	margin-bottom: 30px;
}
.progress {
	height: 100%;
	width: 12%;
	background: #0e273e;
	border-radius: 20px;
	transition: 0.3s;
}
.step {
	display: none;
}
.step.active {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: "Jost", Sans-serif;
}
.step.active h2 {
	font-size: 40px;
	font-weight: 500;
	text-align: center;
}
input[type="text"],
input[type="tel"] {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 6px;
}
label {
	display: block;
	margin: 15px 0;
}
.btn-group {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	gap: 20px;
}
.step button {
	padding: 10px 30px;
	border: none;
	background: #0e273e;
	color: #fff;
	cursor: pointer;
	border-radius: 6px;
	width: 160px;
}
.step button:hover {
	border: 1px solid #0e273e;
	color: #0e273e;
	background: #fff;
}
button.prev {
	background: #fff;
	border: 1px solid #0e273e;
	color: #0e273e;
}
button.prev:hover {
	background: #0e273e;
	color: #fff;
}
.gender-options {
	display: flex;
	flex-direction: row;
	gap: 25px;
}
label.gender-card {
	padding: 20px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
}
label.gender-card h4 {
	font-size: 16px;
	text-align: center;
}
label.gender-card img {
	width: 120px;
	height: auto;
}
.gender-options {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
.gender-card {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gender-card input[type="radio"] {
	display: none;
}
.gender-card img {
	max-width: 120px;
	height: auto;
	margin-bottom: 15px;
}
.gender-card h4 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.gender-card:hover {
	border-color: #0e273e;;
	transform: translateY(-3px);
}

.gender-card:has(input[type="radio"]:checked) {
	border-color: #0073aa;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}
label.active {
	border: 2px solid #1e73be;
	background: #f5faff;
}
.gender-card.text-card {
	width: 150px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}


#baldness-stage-step .gender-options{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	justify-content:center;
}

#baldness-stage-step .gender-card{
	flex:0 0 calc(25% - 20px);
	max-width:220px;
}

.gender-card.text-card.like-treatment {
    width: 170px;
}
@media(max-width:768px){
	#baldness-stage-step .gender-card{
		flex:0 0 calc(50% - 20px);
	}
	.step.active h2 {
		font-size: 26px;
	}
	.form-container {
	padding: 20px;
	}
}