/**
 * SWEB — Choose Size Card [sweb_size_card]
 * Calibrat din Figma (#16228:24022): card 173px, padding 16, gap 16, radius per brand.
 */
.sweb-sizes {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sweb-sizes__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Card mărime — 173px desktop */
.sweb-size {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 173px;
	padding: 16px;
	border-radius: 16px;
	background: #FDFBF7;
	border: 1px dashed #DFD5CF;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.sweb-size input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.sweb-size__check {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	border: 1px solid #8D6C5A;
	background: #FEFAF0;
}

.sweb-size__name {
	font-family: var(--sweb-font-title, 'Freeman', sans-serif);
	font-size: 18px;
	line-height: 1;
	color: var(--sweb-c-text, #4E220B);
}

.sweb-size__weight {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #8D6C5A;
}

.sweb-size__price {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #8D6C5A;
}

/* Stare selectată */
.sweb-size.is-selected,
.sweb-size:has(input:checked) {
	border-style: solid;
	border-color: #4E220B;
}
.sweb-size.is-selected .sweb-size__check,
.sweb-size:has(input:checked) .sweb-size__check {
	background: #D35A0C;
	border-color: #D35A0C;
}
.sweb-size.is-selected .sweb-size__price,
.sweb-size:has(input:checked) .sweb-size__price {
	color: #4E220B;
}

/* Jerry — bordură 2px, colțuri drepte, selectat fundal galben deschis */
.sweb-brand--jerry .sweb-size {
	border: 2px solid #1A1A1A;
	border-radius: 0;
	background: transparent;
}
.sweb-brand--jerry .sweb-size__name {
	font-family: 'Shermlock', cursive;
	letter-spacing: 0.08em;
	color: #E3403E;
	-webkit-text-stroke: 0.7px #1A1A1A;
}
.sweb-brand--jerry .sweb-size.is-selected,
.sweb-brand--jerry .sweb-size:has(input:checked) {
	background: #FFF2B2;
}

/* Americana — fundal închis, selectat bordură roșie cu glow */
.sweb-brand--americana .sweb-size {
	border: 1px solid #363636;
	border-radius: 8px;
	background: linear-gradient(180deg, #0F0F0F 0%, #050505 100%);
	color: #FFFCFA;
}
.sweb-brand--americana .sweb-size__name,
.sweb-brand--americana .sweb-size__price { color: #FFFCFA; }
.sweb-brand--americana .sweb-size.is-selected,
.sweb-brand--americana .sweb-size:has(input:checked) {
	border-color: #E42B2B;
	box-shadow: inset 0 -4px 16px rgba(228, 43, 43, 0.2), inset 0 4px 16px rgba(228, 43, 43, 0.2);
}

.sweb-sizes__submit { align-self: flex-start; }
