/* =============================================================================
   Cleaning Booking System – Frontend CSS
   Scoped resets + premium design
   ============================================================================= */

/* ============================================================================
   1. SCOPED RESET – neutraliserar WordPress/tema-stilar inuti formuläret
   ========================================================================== */
.cbs-form-wrapper *,
.cbs-form-wrapper *::before,
.cbs-form-wrapper *::after {
	box-sizing: border-box;
}

.cbs-form-wrapper h2,
.cbs-form-wrapper h3,
.cbs-form-wrapper h4,
.cbs-form-wrapper p,
.cbs-form-wrapper ul,
.cbs-form-wrapper li,
.cbs-form-wrapper label {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	list-style: none;
}

.cbs-form-wrapper input,
.cbs-form-wrapper select,
.cbs-form-wrapper textarea,
.cbs-form-wrapper button {
	font-family: inherit;
	font-size: inherit;
	margin: 0;
}

/* ============================================================================
   2. WRAPPER
   ========================================================================== */
.cbs-form-wrapper {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #1a1a2e;
}

/* ============================================================================
   3. STEG-INDIKATOR
   ========================================================================== */
.cbs-steps-indicator {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 36px;
}

.cbs-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.cbs-step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f3f4f6;
	border: 2px solid #e5e7eb;
	color: #9ca3af;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
}

.cbs-step-item.active .cbs-step-circle {
	background: #2d6a4f;
	border-color: #2d6a4f;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.15);
}

.cbs-step-item.completed .cbs-step-circle {
	background: #2d6a4f;
	border-color: #2d6a4f;
	color: #fff;
}

.cbs-step-item.completed .cbs-step-circle::before {
	content: '✓';
	font-size: 16px;
}

/* Dölj siffra när completed */
.cbs-step-item.completed .cbs-step-circle-num { display: none; }

.cbs-step-label {
	font-size: 11px;
	color: #9ca3af;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 0.02em;
	transition: color 0.3s;
}

.cbs-step-item.active .cbs-step-label {
	color: #2d6a4f;
	font-weight: 700;
}

.cbs-step-item.completed .cbs-step-label {
	color: #52b788;
}

.cbs-step-divider {
	flex: 1;
	height: 2px;
	background: #e5e7eb;
	min-width: 32px;
	max-width: 100px;
	margin: 19px 10px 0;
	transition: background 0.4s ease;
}

.cbs-step-divider.active {
	background: #2d6a4f;
}

/* ============================================================================
   4. PRISPANEL
   ========================================================================== */
.cbs-price-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
	color: #fff;
	border-radius: 14px;
	padding: 18px 28px;
	margin-bottom: 32px;
	box-shadow: 0 4px 20px rgba(45, 106, 79, 0.25);
}

.cbs-price-panel-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cbs-price-panel-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}

.cbs-price-label {
	font-size: 13px;
	font-weight: 500;
	opacity: 0.85;
	letter-spacing: 0.02em;
}

.cbs-rut-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 20px;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	width: fit-content;
}

.cbs-price-original {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.65;
	text-decoration: line-through;
	letter-spacing: -0.3px;
}

.cbs-price-value {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -1px;
	transition: all 0.3s ease;
}

.cbs-rut-note {
	font-size: 11px;
	font-weight: 500;
	opacity: 0.75;
	letter-spacing: 0.02em;
}

/* ============================================================================
   5. DÖLJ / VISA
   ========================================================================== */
.cbs-hidden {
	display: none !important;
}

/* ============================================================================
   6. STEG-INNEHÅLL
   ========================================================================== */
.cbs-step {
	animation: cbs-in 0.3s ease both;
}

@keyframes cbs-in {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.cbs-step-title {
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin: 0 0 6px !important;
	line-height: 1.3 !important;
}

.cbs-step-desc {
	font-size: 14px !important;
	color: #6b7280 !important;
	margin: 0 0 24px !important;
	font-weight: 400 !important;
}

/* ============================================================================
   7. TJÄNSTVAL – service cards
   ========================================================================== */
.cbs-service-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-bottom: 32px;
}

.cbs-service-card {
	cursor: pointer;
	display: block;
}

.cbs-service-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.cbs-service-card-inner {
	border: 2px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px 10px 16px;
	text-align: center;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.cbs-service-card:hover .cbs-service-card-inner {
	border-color: #52b788;
	box-shadow: 0 4px 16px rgba(45, 106, 79, 0.1);
	transform: translateY(-2px);
}

.cbs-service-radio:checked + .cbs-service-card-inner {
	border-color: #2d6a4f;
	background: #f0fdf4;
	box-shadow: 0 6px 24px rgba(45, 106, 79, 0.18);
	transform: translateY(-3px);
}

.cbs-service-icon {
	font-size: 30px;
	line-height: 1;
	margin-bottom: 2px;
}

.cbs-service-name {
	font-weight: 700 !important;
	font-size: 12px !important;
	color: #111827 !important;
	line-height: 1.3 !important;
}

.cbs-service-desc {
	font-size: 10px !important;
	color: #9ca3af !important;
	line-height: 1.4 !important;
	font-weight: 400 !important;
}

/* ============================================================================
   8. STORLEKSVAL – size cards
   ========================================================================== */
.cbs-size-section {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 24px;
}

.cbs-size-section-label {
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #6b7280 !important;
	margin-bottom: 14px !important;
	display: block;
}

.cbs-size-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.cbs-size-card {
	cursor: pointer;
	display: block;
}

.cbs-size-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.cbs-size-card-inner {
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 8px;
	text-align: center;
	background: #fff;
	transition: border-color 0.2s, background 0.2s;
	cursor: pointer;
}

.cbs-size-card:hover .cbs-size-card-inner {
	border-color: #52b788;
}

.cbs-size-radio:checked + .cbs-size-card-inner {
	border-color: #2d6a4f;
	background: #f0fdf4;
}

.cbs-size-main {
	font-weight: 700 !important;
	font-size: 13px !important;
	color: #111827 !important;
	line-height: 1.2 !important;
}

.cbs-size-sub {
	font-size: 10px !important;
	color: #9ca3af !important;
	margin: 3px 0 6px !important;
	line-height: 1.3 !important;
	font-weight: 400 !important;
}

.cbs-size-price {
	font-size: 11px !important;
	font-weight: 700 !important;
	color: #9ca3af !important;
}

.cbs-size-rut {
	font-size: 12px !important;
	font-weight: 800 !important;
	color: #2d6a4f !important;
	margin-top: 1px !important;
}

.cbs-fonster-grid {
	grid-template-columns: repeat(3, 1fr) !important;
}

/* ============================================================================
   Kalkborttagning – detaljkort
   ========================================================================== */
.cbs-kalk-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.cbs-kalk-card {
	cursor: pointer;
	display: block;
}

.cbs-kalk-card-inner {
	border: 2px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px 16px;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cbs-kalk-card:hover .cbs-kalk-card-inner {
	border-color: #52b788;
	box-shadow: 0 4px 16px rgba(45, 106, 79, 0.1);
}

.cbs-kalk-card .cbs-size-radio:checked + .cbs-kalk-card-inner {
	border-color: #2d6a4f;
	background: #f0fdf4;
	box-shadow: 0 6px 24px rgba(45, 106, 79, 0.18);
}

.cbs-kalk-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}

.cbs-kalk-price-block {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	flex-shrink: 0;
}

.cbs-kalk-title {
	font-weight: 700 !important;
	font-size: 14px !important;
	color: #111827 !important;
	line-height: 1.3 !important;
}

.cbs-kalk-price {
	background: #f0fdf4;
	color: #9ca3af !important;
	font-weight: 600 !important;
	font-size: 12px !important;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

.cbs-kalk-price-block .cbs-size-rut {
	font-size: 13px !important;
	font-weight: 800 !important;
	color: #2d6a4f !important;
	text-align: right;
	padding: 0 4px;
}

.cbs-kalk-desc {
	font-size: 12px !important;
	color: #6b7280 !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
}

.cbs-kalk-includes {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.cbs-kalk-includes li {
	font-size: 12px !important;
	color: #374151 !important;
	display: flex;
	align-items: center;
	gap: 7px;
	font-weight: 400 !important;
}

.cbs-kalk-includes li::before {
	content: '✓';
	color: #2d6a4f;
	font-weight: 700;
	font-size: 11px;
	flex-shrink: 0;
}

/* ============================================================================
   Avloppsrensning – välj-kort
   ========================================================================== */
.cbs-avlopp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}

.cbs-avlopp-card {
	cursor: pointer;
	display: block;
}

.cbs-avlopp-card-inner {
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px 12px;
	background: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cbs-avlopp-card:hover .cbs-avlopp-card-inner {
	border-color: #52b788;
	box-shadow: 0 4px 14px rgba(45, 106, 79, 0.1);
}

.cbs-avlopp-card .cbs-size-radio:checked + .cbs-avlopp-card-inner {
	border-color: #2d6a4f;
	background: #f0fdf4;
	box-shadow: 0 6px 20px rgba(45, 106, 79, 0.16);
}

.cbs-avlopp-icon {
	font-size: 22px;
	line-height: 1;
}

.cbs-avlopp-label {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #111827 !important;
	line-height: 1.3 !important;
}

.cbs-avlopp-price {
	color: #9ca3af !important;
	font-weight: 600 !important;
	font-size: 12px !important;
}

.cbs-avlopp-card-inner .cbs-size-rut {
	font-size: 13px !important;
	font-weight: 800 !important;
	color: #2d6a4f !important;
}

/* ============================================================================
   Informationsruta
   ========================================================================== */
.cbs-service-info-box {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 13px !important;
	color: #374151 !important;
	line-height: 1.6 !important;
	font-weight: 400 !important;
	margin-top: 4px;
}

.cbs-size-card--offert .cbs-size-card-inner {
	border-style: dashed;
	border-color: #d97706;
	background: #fffbeb;
}

.cbs-size-card--offert:hover .cbs-size-card-inner {
	border-color: #b45309;
	box-shadow: 0 4px 16px rgba(217, 119, 6, 0.12);
}

.cbs-size-card--offert .cbs-size-radio:checked + .cbs-size-card-inner {
	border-color: #b45309;
	background: #fef3c7;
	box-shadow: 0 6px 24px rgba(180, 83, 9, 0.15);
}

.cbs-size-offert-badge {
	display: inline-block;
	background: #fde68a;
	color: #92400e;
	font-size: 11px !important;
	font-weight: 800 !important;
	padding: 3px 10px;
	border-radius: 20px;
	letter-spacing: 0.03em;
}

/* ============================================================================
   9. TIMMAR (kontor)
   ========================================================================== */
.cbs-hours-section {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 24px;
}

.cbs-hours-section-label {
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #6b7280 !important;
	margin-bottom: 16px !important;
	display: block;
}

.cbs-hours-input-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cbs-hours-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #2d6a4f;
	background: #fff;
	color: #2d6a4f;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
	line-height: 1;
}

.cbs-hours-btn:hover {
	background: #2d6a4f;
	color: #fff;
}

.cbs-hours-input {
	width: 72px;
	text-align: center;
	font-size: 26px;
	font-weight: 800;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 8px 4px;
	color: #111827;
	background: #fff;
	-moz-appearance: textfield;
}

.cbs-hours-input::-webkit-outer-spin-button,
.cbs-hours-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cbs-hours-label {
	font-size: 16px !important;
	color: #374151 !important;
	font-weight: 500 !important;
}

.cbs-no-date-notice {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 16px 20px;
	color: #2d6a4f;
	font-size: 14px;
	line-height: 1.5;
}

.cbs-no-date-notice p {
	margin: 0;
}

.cbs-field-desc {
	font-size: 13px !important;
	color: #2d6a4f !important;
	margin-top: 12px !important;
	font-weight: 600 !important;
	background: #f0fdf4;
	border-radius: 6px;
	padding: 8px 12px;
	display: inline-block;
}

/* ============================================================================
   10. DATUM & TID (steg 2)
   ========================================================================== */
.cbs-datetime-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 28px;
}

.cbs-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}

.cbs-field-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cbs-field-group--sm { max-width: 180px; }

.cbs-field-group--full {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.cbs-field-label {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #374151 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	line-height: 1 !important;
}

.cbs-required { color: #ef4444 !important; }

.cbs-input {
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	color: #111827;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
	outline: none;
	appearance: none;
}

.cbs-input:focus {
	border-color: #2d6a4f;
	box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.cbs-input.cbs-input-error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.cbs-select {
	background-image: 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='%236b7280' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
	cursor: pointer;
}

.cbs-textarea {
	resize: vertical;
	min-height: 90px;
}

.cbs-field-error {
	font-size: 12px !important;
	color: #ef4444 !important;
	font-weight: 500 !important;
	display: none;
	align-items: center;
	gap: 4px;
}

.cbs-field-error.visible {
	display: flex;
}

/* ============================================================================
   11. TILLVAL – addon cards (steg 2)
   ========================================================================== */
.cbs-addons-section {
	margin-top: 28px;
}

.cbs-addons-section-header {
	margin-bottom: 14px;
}

.cbs-addons-section-title {
	font-size: 1rem !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin-bottom: 2px !important;
}

.cbs-addons-section-desc {
	font-size: 13px !important;
	color: #9ca3af !important;
	font-weight: 400 !important;
}

.cbs-addons-grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cbs-addon-card {
	cursor: pointer;
	display: block;
}

.cbs-addon-checkbox {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.cbs-addon-card-inner {
	display: flex;
	align-items: center;
	gap: 14px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 14px 16px;
	background: #fff;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.cbs-addon-card:hover .cbs-addon-card-inner {
	border-color: #52b788;
	box-shadow: 0 2px 10px rgba(45, 106, 79, 0.08);
}

.cbs-addon-checkbox:checked + .cbs-addon-card-inner {
	border-color: #2d6a4f;
	background: #f0fdf4;
}

.cbs-addon-icon {
	font-size: 22px;
	flex-shrink: 0;
	width: 36px;
	text-align: center;
}

.cbs-addon-info { flex: 1; }

.cbs-addon-name {
	font-weight: 600 !important;
	font-size: 14px !important;
	color: #111827 !important;
	line-height: 1.3 !important;
}

.cbs-addon-desc {
	font-size: 12px !important;
	color: #9ca3af !important;
	font-weight: 400 !important;
	line-height: 1.3 !important;
	margin-top: 1px !important;
}

.cbs-addon-price {
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #2d6a4f !important;
	white-space: nowrap;
	background: #f0fdf4;
	padding: 4px 10px;
	border-radius: 20px;
}

.cbs-addon-check {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #f3f4f6;
	border: 2px solid #e5e7eb;
	color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
	transition: all 0.2s;
}

.cbs-addon-checkbox:checked + .cbs-addon-card-inner .cbs-addon-check {
	background: #2d6a4f;
	border-color: #2d6a4f;
	color: #fff;
}

/* ============================================================================
   12. SAMMANFATTNING (steg 4)
   ========================================================================== */
.cbs-summary {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 24px;
}

.cbs-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 13px 20px;
	border-bottom: 1px solid #f3f4f6;
	font-size: 14px;
}

.cbs-summary-row:last-child { border-bottom: 0; }

.cbs-summary-label {
	color: #6b7280 !important;
	font-weight: 500 !important;
	font-size: 13px !important;
}

.cbs-summary-value {
	color: #111827 !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	text-align: right;
	max-width: 55%;
}

.cbs-summary-total {
	background: #f0fdf4;
	border-top: 2px solid #d1fae5 !important;
}

.cbs-summary-total .cbs-summary-label {
	color: #111827 !important;
	font-weight: 700 !important;
	font-size: 15px !important;
}

.cbs-summary-total .cbs-summary-value {
	color: #2d6a4f !important;
	font-size: 24px !important;
	font-weight: 800 !important;
}

.cbs-summary-struck {
	text-decoration: line-through !important;
	color: #9ca3af !important;
	font-weight: 500 !important;
}

.cbs-summary-rut-row {
	background: #f0fdf4;
}

.cbs-summary-rut-deduction {
	color: #2d6a4f !important;
	font-weight: 700 !important;
}

/* ============================================================================
   13. VILLKOR
   ========================================================================== */
.cbs-terms { margin-bottom: 24px; }

.cbs-terms-label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
	font-size: 14px !important;
	color: #374151 !important;
	cursor: pointer;
	line-height: 1.5 !important;
	font-weight: 400 !important;
}

.cbs-terms-label input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #2d6a4f;
}

.cbs-terms-label a {
	color: #2d6a4f !important;
	text-decoration: underline;
}

/* ============================================================================
   14. KNAPPAR
   ========================================================================== */
.cbs-step-nav {
	display: flex;
	gap: 12px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #f3f4f6;
}

.cbs-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding: 13px 24px !important;
	border-radius: 10px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
	text-decoration: none !important;
	border: 2px solid transparent !important;
	line-height: 1 !important;
	white-space: nowrap;
}

.cbs-btn-next,
.cbs-btn-submit {
	background: #2d6a4f !important;
	color: #fff !important;
	border-color: #2d6a4f !important;
	flex: 1;
}

.cbs-btn-next:hover,
.cbs-btn-submit:hover {
	background: #1b4332 !important;
	border-color: #1b4332 !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(45, 106, 79, 0.28) !important;
}

.cbs-btn-back {
	background: #fff !important;
	color: #6b7280 !important;
	border-color: #e5e7eb !important;
	flex-shrink: 0;
}

.cbs-btn-back:hover {
	background: #f9fafb !important;
	color: #374151 !important;
}

.cbs-btn-submit:disabled {
	background: #9ca3af !important;
	border-color: #9ca3af !important;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

.cbs-btn-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: cbs-spin 0.65s linear infinite;
	flex-shrink: 0;
}

@keyframes cbs-spin { to { transform: rotate(360deg); } }

/* ============================================================================
   15. FRAMGÅNG / FEL
   ========================================================================== */
.cbs-success-message {
	text-align: center;
	padding: 56px 32px;
	background: #f0fdf4;
	border: 2px solid #bbf7d0;
	border-radius: 16px;
}

.cbs-success-icon {
	width: 72px;
	height: 72px;
	background: #2d6a4f;
	color: #fff;
	font-size: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
}

.cbs-success-message h3 {
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin-bottom: 10px !important;
}

.cbs-success-message p {
	color: #374151 !important;
	font-size: 15px !important;
	margin-bottom: 8px !important;
}

.cbs-error-banner {
	background: #fef2f2;
	border: 2px solid #fecaca;
	border-radius: 10px;
	padding: 14px 18px;
	margin-top: 16px;
	color: #991b1b;
}

.cbs-error-banner p {
	margin: 0 !important;
	font-size: 14px !important;
	color: #991b1b !important;
	font-weight: 500 !important;
}

/* ============================================================================
   16. SEKTIONSDELARE
   ========================================================================== */
.cbs-section-divider {
	height: 1px;
	background: #f3f4f6;
	margin: 28px 0;
}

/* ============================================================================
   17. ADMIN-LISTSTATUS (hör inte till frontend-formuläret men i samma fil)
   ========================================================================== */
.cbs-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
}
.cbs-status--new       { background: #dbeafe; color: #1e40af; }
.cbs-status--confirmed { background: #d1fae5; color: #065f46; }
.cbs-status--cancelled { background: #fee2e2; color: #991b1b; }
.cbs-status--completed { background: #e5e7eb; color: #374151; }

/* ============================================================================
   18. RESPONSIVT
   ========================================================================== */
@media (max-width: 700px) {
	.cbs-service-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.cbs-service-icon { font-size: 26px; }
	.cbs-service-desc { display: none; } /* Spara utrymme på mobil */

	.cbs-size-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.cbs-fonster-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.cbs-kalk-grid {
		grid-template-columns: 1fr;
	}

	.cbs-avlopp-grid {
		grid-template-columns: 1fr;
	}

	.cbs-field-row {
		grid-template-columns: 1fr;
	}

	.cbs-step-nav {
		flex-direction: column-reverse;
	}

	.cbs-btn-back { flex: 1; }

	.cbs-price-value { font-size: 26px; }
	.cbs-price-original { font-size: 13px; }

	.cbs-steps-indicator { gap: 0; }
	.cbs-step-label { font-size: 9px; }
	.cbs-step-divider { min-width: 16px; max-width: 40px; margin: 19px 4px 0; }

	.cbs-addon-price { display: none; } /* Spara utrymme */
}

@media (max-width: 480px) {
	.cbs-service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cbs-size-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cbs-price-panel { padding: 14px 18px; }
}
