.ncl-cmb-box {
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	background: #fff;
	padding: 18px;
	margin: 22px 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.ncl-cmb-step {
	border-bottom: 1px solid #efefef;
	padding: 12px 0;
}

.ncl-cmb-step:last-of-type {
	border-bottom: 0;
}

.ncl-cmb-step-title {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	color: inherit;
}

.ncl-cmb-step-title span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	line-height: 1;
}

.ncl-cmb-step-content {
	display: none;
	padding-top: 14px;
}

.ncl-cmb-step.is-active .ncl-cmb-step-content {
	display: block;
}

.ncl-cmb-color-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ncl-cmb-color-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 8px 12px;
	cursor: pointer;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ncl-cmb-color-option:hover {
	transform: translateY(-1px);
}

.ncl-cmb-color-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ncl-cmb-color-option:has(input:checked) {
	border-color: #111;
	box-shadow: 0 0 0 1px #111;
}

.ncl-cmb-color-swatch {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #ccc;
	background: linear-gradient(135deg, #f6f6f6, #dedede);
	flex: 0 0 22px;
}

.ncl-cmb-color-name {
	font-size: 14px;
	font-weight: 600;
}

.ncl-cmb-size-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.ncl-cmb-size-grid label {
	font-weight: 700;
	font-size: 14px;
}

.ncl-cmb-size-grid input {
	width: 100%;
	margin-top: 7px;
	padding: 12px 13px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 15px;
	background: #fff;
}

.ncl-cmb-size-grid input:focus {
	outline: none;
	border-color: #111;
	box-shadow: 0 0 0 1px #111;
}

.ncl-cmb-limits,
.ncl-cmb-note {
	margin: 10px 0 0;
	font-size: 13px;
	color: #666;
}

.ncl-cmb-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ncl-cmb-summary > div {
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 12px;
	background: #fafafa;
}

.ncl-cmb-summary small {
	display: block;
	font-size: 12px;
	color: #777;
	margin-bottom: 5px;
}

.ncl-cmb-summary strong {
	display: block;
	font-size: 16px;
	color: #111;
}

.ncl-cmb-fixed-footer {
	position: sticky;
	bottom: 12px;
	z-index: 20;
	margin-top: 16px;	
	background: #111;
	color: #fff;
	border-radius: 14px;
	padding: 13px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.ncl-cmb-fixed-footer span {
	display: block;
	font-size: 12px;
	line-height: 1.2;
	opacity: 0.8;
}

.ncl-cmb-fixed-footer strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.ncl-cmb-jump-to-cart,
.ncl-cmb-jump-to-cart:hover,
.ncl-cmb-jump-to-cart:focus {
	background: #fff;
	color: #111;
	border-radius: 999px;
	padding: 10px 15px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.ncl-cmb-customize-button {
	width: 100%;
	text-align: center;
	border-radius: 999px;
	font-weight: 700;
}

.ncl-cmb-price-label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
}

.woocommerce ul.products li.product .ncl-cmb-price-label {
	color: #111;
}

@media (max-width: 768px) {
	.ncl-cmb-size-grid,
	.ncl-cmb-summary {
		grid-template-columns: 1fr;
	}

	.ncl-cmb-fixed-footer {
		bottom: 8px;
	}
}
