.wcl-sw {
	font-family: 'Ranade Variable', sans-serif;
	width: 100%;
}

.wcl-sw-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ── Subscribe panel ── */
.wcl-sw-sub-panel {
	background: #faf7f3;
	border: 1px solid #e8dfd2;
	border-radius: 30px;
	overflow: hidden;
}

/* Banner inside subscribe panel */
.wcl-sw-banner {
	background: #b89760;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	padding: 10px 20px;
	width: 100%;
}

.wcl-sw-sub-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ── One-time panel ── */
.wcl-sw-one-panel {
	background: #fff;
	border: 1px solid #e8dfd2;
	border-radius: 30px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

/* ── Radio row ── */
.wcl-sw-row-radio {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.wcl-sw-radio-label {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding-top: 2px;
	cursor: pointer;
}

.wcl-sw-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.wcl-sw-radio-custom {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1.5px solid #aaa;
	background: #fff;
	flex-shrink: 0;
	transition: border-color 0.15s;
	position: relative;
}

.wcl-sw-radio:checked + .wcl-sw-radio-custom {
	border-color: #005a53;
	border-width: 6px;
}

/* ── Text content ── */
.wcl-sw-panel-title {
	font-size: 16px;
	font-weight: 400;
	color: #0e0e0e;
	line-height: 18px;
	margin-bottom: 8px;
}

.wcl-sw-price-line {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 4px;
}

.wcl-sw-price--sub {
	font-size: 24px;
	font-weight: 500;
	color: #b89760;
	line-height: 30px;
}

.wcl-sw-price--sub .woocommerce-Price-amount,
.wcl-sw-price--sub bdi {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.wcl-sw-per {
	font-size: 16px;
	color: #b89760;
	font-weight: 400;
}

.wcl-sw-was-line {
	font-size: 16px;
	color: rgba(14, 14, 14, 0.5);
	text-decoration: line-through;
	line-height: 18px;
}

.wcl-sw-price--was,
.wcl-sw-price--was .woocommerce-Price-amount,
.wcl-sw-price--was bdi {
	font-size: 16px;
	color: rgba(14, 14, 14, 0.5);
	text-decoration: line-through;
}

/* ── Dropdowns ── */
.wcl-sw-selects {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.wcl-sw-select-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wcl-sw-select-label {
	font-size: 16px;
	font-weight: 400;
	color: #0e0e0e;
	line-height: 18px;
	display: block;
}

.wcl-sw-select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23005a53' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
	border: 1px solid #005a53;
	border-radius: 100px;
	padding: 12px 44px 12px 20px;
	font-size: 16px;
	font-family: 'Ranade Variable', sans-serif;
	color: #0e0e0e;
	line-height: 24px;
	cursor: pointer;
	width: 100%;
}

.wcl-sw-select:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 90, 83, 0.2);
}

/* ── One-time layout ── */
.wcl-sw-one-left {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	flex: 1;
}

.wcl-sw-one-info {
	display: flex;
	flex-direction: column;
}

.wcl-sw-one-right {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 240px;
	flex-shrink: 0;
}

/* ── Add to basket button ── */
.wcl-sw-btn {
	display: block;
	width: 100%;
	background: #b89760;
	color: #fff;
	border: none;
	border-radius: 15px;
	padding: 12px 20px;
	font-size: 16px;
	font-family: 'Ranade Variable', sans-serif;
	font-weight: 400;
	line-height: 18px;
	cursor: pointer;
	text-align: center;
	transition: background 0.15s;
}

.wcl-sw-btn:hover {
	background: #a07d4a;
}

/* ── Select2 overrides ── */
.wcl-sw .select2-container {
	width: 100% !important;
}

.wcl-sw .select2-container--default .select2-selection--single {
	border: 1px solid #005a53;
	border-radius: 100px;
	height: auto;
	padding: 12px 44px 12px 20px;
	background: #fff;
}

.wcl-sw .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-size: 16px;
	font-family: 'Ranade Variable', sans-serif;
	color: #0e0e0e;
	line-height: 24px;
	padding: 0;
}

.wcl-sw .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	top: 0;
	right: 16px;
	width: 20px;
}

.wcl-sw .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #005a53 transparent transparent transparent;
	border-width: 6px 5px 0 5px;
	margin-top: -3px;
}

.wcl-sw .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #005a53 transparent;
	border-width: 0 5px 6px 5px;
}

.wcl-sw .select2-container--default .select2-selection--single:focus,
.wcl-sw .select2-container--default.select2-container--focus .select2-selection--single {
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 90, 83, 0.2);
}

.wcl-sw .select2-dropdown {
	border: 1px solid #005a53;
	border-radius: 10px;
	overflow: hidden;
}

.wcl-sw .select2-dropdown--below {
	margin-top: -20px;
}

.wcl-sw .select2-dropdown--above {
	margin-bottom: -20px;
}

.wcl-sw .select2-results__option {
	font-size: 15px;
	font-family: 'Ranade Variable', sans-serif;
	padding: 10px 16px;
	color: #0e0e0e;
}

.wcl-sw .select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: #005a53;
	color: #fff;
}

/* WC price span resets */
.wcl-sw-price--sub .woocommerce-Price-currencySymbol {
	font-size: 0.75em;
}
