/**
 * NS Offerte - Houthandel Jan Sok
 * Knoppen + offerte-pagina.
 * Huisstijl: --maincolor #2C4329, --subcolor #ccdc46, accent #006f3b.
 */

/* Knop op single product */
.ns-offerte-add {
	background: #fff !important;
	color: #2C4329 !important;
	border: 2px solid #2C4329 !important;
	margin-left: 10px;
	transition: background 0.15s ease, color 0.15s ease;
}

.ns-offerte-add:hover {
	background: #2C4329 !important;
	color: #fff !important;
}

/* Knop op de productlijst */
.ns-offerte-add--loop {
	margin-left: 0;
	margin-top: 8px;
	width: 100%;
	font-size: 13px;
	padding: 8px;
}

/* ===== Offerte-pagina ===== */
.ns-offerte-page {
	font-family: 'Urbanist', sans-serif;
	max-width: 900px;
}

.ns-offerte-notice {
	padding: 14px 18px;
	border-radius: 8px;
	margin-bottom: 22px;
	font-weight: 600;
}

.ns-offerte-notice--success {
	background: #e7f3e9;
	color: #1d5126;
	border: 1px solid #b6d9bd;
}

.ns-offerte-notice--error {
	background: #fbeaea;
	color: #8a2222;
	border: 1px solid #e5b8b8;
}

.ns-offerte-empty {
	text-align: center;
	padding: 40px 16px;
	color: #758470;
}

.ns-offerte-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 28px;
}

.ns-offerte-table th {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 2px solid #2C4329;
	color: #2C4329;
	font-size: 14px;
}

.ns-offerte-table td {
	padding: 12px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

.ns-offerte-product {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ns-offerte-product img {
	border-radius: 6px;
}

.ns-offerte-qty {
	width: 64px;
	padding: 7px 8px;
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	font-family: 'Urbanist', sans-serif;
}

.ns-offerte-remove {
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: #b03030;
	cursor: pointer;
	padding: 0 6px;
}

.ns-offerte-remove:hover {
	color: #7a1f1f;
}

/* Formulier */
.ns-offerte-form h3 {
	color: #2C4329;
	margin-bottom: 14px;
}

.ns-offerte-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.ns-offerte-fields label {
	display: flex;
	flex-direction: column;
	font-weight: 600;
	font-size: 14px;
	color: #2C4329;
	gap: 5px;
}

.ns-offerte-fields .ns-offerte-fullwidth {
	grid-column: 1 / -1;
}

.ns-offerte-fields input,
.ns-offerte-fields textarea {
	padding: 10px 12px;
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	font-family: 'Urbanist', sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.ns-offerte-submit {
	background: #2C4329 !important;
	color: #fff !important;
	padding: 13px 28px !important;
	font-weight: 700 !important;
	border: none !important;
}

.ns-offerte-submit:hover {
	background: #006f3b !important;
}

@media (max-width: 600px) {
	.ns-offerte-fields {
		grid-template-columns: 1fr;
	}
}
