/* SimpleOrder: корзина и форма чекаута */
.so-cart-container { margin: 1em 0; }
.so-cart-table { border-collapse: collapse; width: 100%; }
.so-cart-table th,
.so-cart-table td { border: 1px solid #ccc; padding: 4px 8px; text-align: left; line-height: 1.3; }
.so-cart-table th:first-child,
.so-cart-table td:first-child { width: 2.5em; min-width: 2.5em; max-width: 3em; text-align: center; }
.so-cart-table tbody tr { height: auto; }
.so-btn { display: inline-block; margin: 4px 8px 4px 0; padding: 6px 12px; cursor: pointer; }
.so-checkout-form-wrap { margin-top: 1em; padding: 1em; border: 1px solid #ddd; }

/* Поле количества: только стрелочки (стандартный number), ширина на 6 знаков */
.so-cart-table .so-qty-cell .so-qty-input {
	width: 5.5em;
	min-width: 5.5em;
	margin: 0 4px 0 0;
	text-align: right;
	vertical-align: middle;
	box-sizing: border-box;
}

/* Кнопка «Оформить заказ» — голубая, как на elsup.ru */
.so-btn-checkout {
	background: #00a0d2;
	color: #fff;
	border: none;
	padding: 10px 24px;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 4px;
	cursor: pointer;
}
.so-btn-checkout:hover {
	background: #008ec2;
	color: #fff;
}

/* Кнопка «В корзину» — белый фон */
button.simple-order-add {
	cursor: pointer;
	background: #fff;
	border: 1px solid #333;
	color: #333;
	padding: 4px 10px;
	font-size: inherit;
	line-height: 1.2;
}
button.simple-order-add:hover {
	background: #f5f5f5;
}

.so-cart-table .so-qty-cell .so-remove {
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	font-size: 1.1em;
	line-height: 1;
	margin-left: 4px;
	padding: 0 2px;
	vertical-align: middle;
}
.so-cart-table .so-qty-cell .so-remove:hover {
	color: #666;
}

/* --- Форма в стиле Contact Form 7 (запрос КП): шрифт и ширина --- */
.so-form-cf7-style,
.so-form-cf7-style .so-checkout-form {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.so-form-cf7-style .so-form-title {
	color: #00a0d2;
	font-size: 1.5em;
	font-weight: 600;
	margin: 0 0 1em;
	padding: 0;
}

.so-form-cf7-style .so-checkout-form {
	max-width: 100%;
	min-width: 320px;
}

.so-form-cf7-style .so-form-field {
	margin-bottom: 1em;
}

.so-form-cf7-style .so-form-field label {
	display: block;
	margin-bottom: 0.35em;
	font-weight: 500;
}

.so-form-cf7-style .so-required {
	color: #dc3232;
}

.so-form-cf7-style .so-checkout-form input[type="text"],
.so-form-cf7-style .so-checkout-form input[type="email"],
.so-form-cf7-style .so-checkout-form input[type="password"],
.so-form-cf7-style .so-checkout-form input[type="number"] {
	width: 100%;
	max-width: 100%;
	padding: 8px 10px;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 2px;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 1em;
}

.so-form-cf7-style .so-checkout-form input::placeholder {
	color: #999;
}

.so-form-cf7-style .so-form-field-file .so-file-hint {
	display: block;
	font-size: 0.9em;
	color: #666;
	margin-bottom: 4px;
}

.so-form-cf7-style .so-file-wrap {
	display: block;
}

.so-form-cf7-style .so-checkout-form input[type="file"] {
	cursor: pointer;
	padding: 4px 0;
}

.so-form-cf7-style .so-file-name {
	display: inline-block;
	margin-left: 8px;
	color: #666;
	font-size: 0.95em;
}

.so-form-cf7-style .so-form-field-checkbox {
	margin: 1.25em 0;
}

.so-form-cf7-style .so-checkbox-label {
	display: block;
	font-weight: normal;
	cursor: pointer;
}

.so-form-cf7-style .so-checkbox-label a {
	color: #00a0d2;
	text-decoration: none;
}

.so-form-cf7-style .so-checkbox-label a:hover {
	text-decoration: underline;
}

.so-form-cf7-style .so-form-submit {
	margin: 1.5em 0 0;
}

.so-form-cf7-style .so-btn-submit {
	background: #00a0d2;
	color: #fff;
	border: none;
	padding: 10px 24px;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 3px;
	cursor: pointer;
}

.so-form-cf7-style .so-btn-submit:hover {
	background: #008ec2;
}

.so-form-cf7-style .so-btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
