/* ========== WooCommerce Theme Styles ========== */

/* Standard navbar for WC pages */
.site-navbar {
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.site-navbar__logo {
	font-size: 20px;
	font-weight: 900;
	color: #032d60;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}
.site-navbar__icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #2e844a, #48bb78);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
}
.site-navbar__links {
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-navbar__links a {
	font-size: 14px;
	font-weight: 600;
	color: #4a5568;
	text-decoration: none;
	transition: color 0.2s;
}
.site-navbar__links a:hover { color: #032d60; }

/* Footer */
.site-footer {
	background: #0a1628;
	color: #a0aec0;
	padding: 24px 0;
	text-align: center;
	font-size: 13px;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: #2e844a !important;
	color: #fff !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	font-family: 'Nunito Sans', sans-serif !important;
	border: none !important;
	padding: 10px 22px !important;
	transition: background 0.25s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background: #276b3e !important;
}

/* Checkout form row spacing */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
	margin-bottom: 12px;
}

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	padding: 10px 14px;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
	border-color: #2e844a;
	outline: none;
	box-shadow: 0 0 0 2px rgba(46,132,74,0.1);
}

/* Tables */
.woocommerce table.shop_table {
	border-radius: 12px;
	overflow: hidden;
	border-collapse: collapse;
}
.woocommerce table.shop_table th {
	background: #f7fafc;
	font-weight: 700;
	color: #032d60;
}
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
	padding: 12px 16px;
	border-color: #e2e8f0;
}

/* Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
	border-top-color: #2e844a;
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
	color: #2e844a;
}

/* Price */
.woocommerce .price .amount { color: #2e844a; font-weight: 700; }

/* Products grid */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 15px;
	font-weight: 700;
	color: #032d60;
}
.woocommerce ul.products li.product {
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: box-shadow 0.3s;
}
.woocommerce ul.products li.product:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Headings */
.woocommerce h1, .woocommerce h2, .woocommerce h3 {
	color: #032d60;
	font-weight: 800;
}

/* Error notices */
.woocommerce .woocommerce-error {
	border-top-color: #e53e3e;
}
.woocommerce .woocommerce-error::before {
	color: #e53e3e;
}

/* Focus states (Accessibility) */
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible {
	outline: 2px solid #2e844a;
	outline-offset: 2px;
}
.woocommerce form .form-row textarea:focus {
	border-color: #2e844a;
	outline: none;
	box-shadow: 0 0 0 2px rgba(46,132,74,0.1);
}
.site-navbar__links a:focus-visible {
	color: #032d60;
	outline: 2px solid #2e844a;
	outline-offset: 2px;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	padding: 8px 14px;
	border-radius: 8px;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: #2e844a;
	color: #fff;
}

/* ========== Checkout: License Steps ========== */
.itlife-checkout-steps {
	background: #f0faf4;
	border: 1px solid #c6f6d5;
	border-left: 4px solid #2e844a;
	border-radius: 12px;
	padding: 24px 28px;
	margin-bottom: 32px;
}
.itlife-checkout-steps h3 {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #032d60;
	margin: 0 0 16px;
}
.itlife-checkout-steps ol {
	margin: 0 0 12px;
	padding-left: 20px;
}
.itlife-checkout-steps ol li {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	padding-left: 4px;
}
.itlife-checkout-steps ol li::marker {
	color: #2e844a;
	font-weight: 700;
}
.itlife-checkout-steps__note {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 13px;
	color: #666;
	margin: 0;
	font-style: italic;
}

/* ========== Mini-Cart Widget ========== */
.widget_shopping_cart_content {
	font-family: 'Nunito Sans', sans-serif;
}
.widget_shopping_cart_content .woocommerce-mini-cart {
	list-style: none;
	padding: 0;
	margin: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
	position: relative;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item a:not(.remove) {
	color: #1a1a2e;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.4;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item a.remove {
	position: absolute;
	top: 12px;
	right: 0;
	color: #e53e3e !important;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	opacity: 0.5;
	transition: opacity 0.2s;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item a.remove:hover {
	opacity: 1;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item img {
	width: 50px !important;
	height: 50px !important;
	min-width: 50px;
	object-fit: contain;
	border-radius: 8px;
	flex-shrink: 0;
	border: 1px solid #f0f0f0;
	background: #fafafa;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item .quantity {
	display: block;
	font-size: 12px;
	color: #64748b;
	margin-top: 2px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total {
	padding: 12px 0 8px;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a2e;
	display: flex;
	justify-content: space-between;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total .amount {
	color: #2e844a;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
	display: flex;
	gap: 8px;
	padding-top: 8px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
	flex: 1;
	text-align: center;
	padding: 10px 12px !important;
	font-size: 13px !important;
	border-radius: 10px !important;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons a:first-child {
	background: #f1f5f9 !important;
	color: #475569 !important;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons a:first-child:hover {
	background: #e2e8f0 !important;
}

/* Cart page — product thumbnail */
.woocommerce table.shop_table .product-thumbnail img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
	.woocommerce ul.products[class*=columns-] li.product {
		width: 48% !important;
		margin-right: 4% !important;
	}
	.woocommerce ul.products[class*=columns-] li.product:nth-child(2n) {
		margin-right: 0 !important;
	}
	.woocommerce table.shop_table {
		display: block;
		overflow-x: auto;
	}
}
@media (max-width: 480px) {
	.woocommerce ul.products[class*=columns-] li.product {
		width: 100% !important;
		margin-right: 0 !important;
	}
}

/* ========== Cart page (WooCommerce Blocks) ========== */
/* page.php sets inline style="padding-top:60px" on <main> — override it */
.woocommerce-cart main.site-main,
.woocommerce-cart .site-main {
	padding-top: 8px !important;
	padding-bottom: 40px !important;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart .entry-content {
	padding: 0 !important;
	margin: 0 !important;
}
/* Kill any inherited top spacing from article / entry headers */
.woocommerce-cart article,
.woocommerce-cart article > *:first-child,
.woocommerce-cart .entry-header {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
/* H1 "Корзина" has no class in the theme — target by element */
.woocommerce-cart main > article > h1,
.woocommerce-cart article > h1,
.woocommerce-cart .entry-title,
.woocommerce-cart h1.wp-block-post-title,
.woocommerce-cart h1.entry-title {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 34px;
	font-weight: 800;
	color: #032d60;
	text-align: left;
	margin: 8px 0 12px !important;
	padding: 0 !important;
	line-height: 1.2 !important;
}

.wp-block-woocommerce-cart.alignwide {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* Empty-cart hero card */
.wp-block-woocommerce-empty-cart-block {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	padding: 56px 32px 48px;
	margin: 0 auto 48px;
	max-width: 1100px;
}
.wp-block-woocommerce-empty-cart-block > * {
	text-align: center;
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #032d60;
	margin: 20px 0 8px;
}
.wp-block-woocommerce-empty-cart-block p {
	font-size: 15px;
	color: #64748b;
	margin: 0 auto;
	max-width: 480px;
	line-height: 1.5;
}
.wp-block-woocommerce-empty-cart-block hr,
.wp-block-woocommerce-empty-cart-block .wp-block-separator {
	margin: 40px auto 28px;
	max-width: 160px;
	border: 0;
	border-top: 1px solid #e2e8f0;
}
.wp-block-woocommerce-empty-cart-block h2,
.wp-block-woocommerce-empty-cart-block .wp-block-heading {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #032d60;
	margin: 32px 0 24px;
	text-align: center;
}

/* "Сейчас ваша корзина пуста!" small animated dots hide (loading spinner residue) */
.wp-block-woocommerce-empty-cart-block > .is-loading,
.wp-block-woocommerce-empty-cart-block .wc-block-components-loading-mask {
	display: none !important;
}

/* Product grid inside empty-cart (Новинка в магазине) — beat WC has-4-columns defaults */
.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new,
.wp-block-woocommerce-empty-cart-block .wc-block-product-new {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-3-columns .wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-5-columns .wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 14px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 100% !important;
	max-width: 100% !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
.wp-block-woocommerce-empty-cart-block li.wc-block-grid__product,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__product,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-3-columns .wc-block-grid__product {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	flex: unset !important;
	float: none !important;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	text-align: center;
	list-style: none !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	border-color: #2e844a;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f7fafc;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover .wc-block-grid__product-image img {
	transform: scale(1.05);
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #032d60;
	padding: 10px 10px 4px;
	margin: 0;
	min-height: 40px;
	line-height: 1.3;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
	font-size: 14px;
	font-weight: 800;
	color: #2e844a;
	padding: 0 10px 10px;
	margin: 0;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
	padding: 0 10px 10px;
	margin: 0 !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .add_to_cart_button {
	display: block !important;
	width: 100% !important;
	background: #2e844a !important;
	color: #fff !important;
	border-radius: 8px !important;
	padding: 8px 10px !important;
	font-family: 'Nunito Sans', sans-serif !important;
	font-weight: 700 !important;
	font-size: 12px !important;
	text-align: center;
	border: none !important;
	transition: background 0.2s;
	text-decoration: none !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .add_to_cart_button:hover {
	background: #276b3e !important;
}

@media (max-width: 1100px) {
	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 900px) {
	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 640px) {
	.wp-block-woocommerce-empty-cart-block {
		padding: 40px 20px 36px;
	}
	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.woocommerce-cart .entry-title,
	.woocommerce-cart h1.wp-block-post-title {
		font-size: 28px;
	}
}
@media (max-width: 420px) {
	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		grid-template-columns: 1fr !important;
	}
}

/* ========== Cart page with items (Blocks) ========== */

/* "Proceed to checkout" button — brand green CTA */
.wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-cart__submit-container a.wc-block-components-checkout-button,
.wc-block-cart__submit-container .wc-block-cart__submit-button,
.wc-block-components-checkout-button,
.wc-block-cart__submit-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart a.checkout-button,
.woocommerce-cart a.button.checkout.wc-forward {
	display: block !important;
	width: 100% !important;
	background: #2e844a !important;
	background-color: #2e844a !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	padding: 14px 24px !important;
	font-family: 'Nunito Sans', sans-serif !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	text-align: center !important;
	text-decoration: none !important;
	box-shadow: 0 2px 8px rgba(46, 132, 74, 0.15) !important;
	transition: background 0.2s, box-shadow 0.2s, transform 0.1s !important;
	cursor: pointer !important;
	margin-top: 16px !important;
}
.wp-block-woocommerce-proceed-to-checkout-block a:hover,
.wc-block-cart__submit-container a.wc-block-components-checkout-button:hover,
.wc-block-cart__submit-container .wc-block-cart__submit-button:hover,
.wc-block-components-checkout-button:hover,
.wc-block-cart__submit-button:hover,
.woocommerce-cart a.checkout-button:hover,
.woocommerce-cart a.button.checkout.wc-forward:hover {
	background: #276b3e !important;
	background-color: #276b3e !important;
	box-shadow: 0 4px 14px rgba(46, 132, 74, 0.25) !important;
	transform: translateY(-1px) !important;
}
.wc-block-components-checkout-button .wc-block-components-button__text {
	color: #fff !important;
}

/* Licence products always 1 per cart — hide ONLY the stepper, keep the
 * surrounding .wc-block-cart-item__quantity wrapper visible because it
 * contains the "Удалить" remove link in Block Cart markup. */
.woocommerce-cart .wc-block-components-quantity-selector {
	display: none !important;
}
/* Ensure the remove link is always visible + clickable in the cart row */
.woocommerce-cart .wc-block-cart-item__remove-link,
.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__remove-link {
	display: inline-block !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Cart item — remove button styling (default block layout keeps it below price in the right column) */
.wc-block-cart-item__remove-link,
.wc-block-cart-items__row .wc-block-cart-item__remove-link {
	color: #94a3b8 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	transition: color 0.2s !important;
	margin-top: 8px !important;
	display: inline-block !important;
}
.wc-block-cart-item__remove-link:hover {
	color: #e53e3e !important;
	text-decoration: underline !important;
}
/* Ensure the total column (price + remove) is right-aligned */
.wc-block-cart-items__row .wc-block-cart-item__total,
.wc-block-cart-item__total {
	text-align: right !important;
}

/* Coupon form — brand-styled input + button */
.wc-block-components-totals-coupon__form,
.wp-block-woocommerce-cart-order-summary-coupon-form-block form {
	display: flex;
	align-items: stretch;
	gap: 8px;
	margin-top: 8px;
}
/* Make the input wrapper a proper floating-label container */
.wc-block-components-totals-coupon__input,
.wc-block-components-totals-coupon__input .wc-block-components-text-input {
	flex: 1 1 auto;
	position: relative;
}
.wc-block-components-totals-coupon__input input[type="text"],
.wc-block-components-totals-coupon__input .wc-block-components-text-input input {
	width: 100% !important;
	box-sizing: border-box !important;
	border: 1px solid #d0d5dd !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	min-height: 48px !important;
	font-family: 'Nunito Sans', sans-serif !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	color: #1a1a2e !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
	background: #fff !important;
}
.wc-block-components-totals-coupon__input input[type="text"]:focus,
.wc-block-components-totals-coupon__input .wc-block-components-text-input input:focus {
	border-color: #2e844a !important;
	box-shadow: 0 0 0 2px rgba(46, 132, 74, 0.15) !important;
	outline: none !important;
}

/* Label as a placeholder — shown only when input is empty AND not focused */
.wc-block-components-totals-coupon__input .wc-block-components-text-input label,
.wc-block-components-totals-coupon__input label {
	position: absolute !important;
	left: 13px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	margin: 0 !important;
	padding: 0 4px !important;
	background: transparent !important;
	color: #94a3b8 !important;
	font-family: 'Nunito Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	pointer-events: none !important;
	max-width: calc(100% - 26px) !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	z-index: 0 !important;
	transition: opacity 0.1s ease !important;
}
/* Input must sit above the label so typed text covers it */
.wc-block-components-totals-coupon__input input[type="text"],
.wc-block-components-totals-coupon__input .wc-block-components-text-input input {
	position: relative !important;
	z-index: 1 !important;
}
/* Hide label when container has .is-active (WC Blocks adds it on focus/value),
   when the input is focused, or when it contains text (via :has and :placeholder-shown) */
.wc-block-components-totals-coupon__input.is-active label,
.wc-block-components-totals-coupon__input .wc-block-components-text-input.is-active label,
.wc-block-components-totals-coupon__input:focus-within label,
.wc-block-components-totals-coupon__input:has(input[type="text"]:not(:placeholder-shown)) label,
.wc-block-components-totals-coupon__input:has(input[type="text"]:focus) label,
.wc-block-components-totals-coupon__input .wc-block-components-text-input:has(input[type="text"]:not(:placeholder-shown)) label,
.wc-block-components-totals-coupon__input .wc-block-components-text-input:has(input[type="text"]:focus) label {
	opacity: 0 !important;
	visibility: hidden !important;
}

/* Apply button */
.wc-block-components-totals-coupon__button,
.wc-block-components-totals-coupon button {
	background: #2e844a !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 10px 18px !important;
	min-height: 48px !important;
	font-family: 'Nunito Sans', sans-serif !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
	flex: 0 0 auto !important;
}
.wc-block-components-totals-coupon__button:hover,
.wc-block-components-totals-coupon button:hover {
	background: #276b3e !important;
}
.wc-block-components-panel__button {
	color: #032d60 !important;
	font-weight: 600 !important;
	font-family: 'Nunito Sans', sans-serif !important;
}

/* ==========================================================================
 * WooCommerce Blocks Checkout — fields polish + row gaps
 * --------------------------------------------------------------------------
 * Targets the React-based block checkout (`.wc-block-components-text-input`,
 * `.wc-block-components-select`, etc). Goals:
 *   - rounded corners + light grey border instead of WC's default tight box
 *   - focus state in brand green (#2e844a)
 *   - more comfortable internal padding so the floating label doesn't crash
 *     into the value
 *   - consistent 16 px vertical gap between every two address rows (the
 *     "Имя/Фамилия" → "Страна/регион" pair was glued together because WC
 *     emits row wrappers with margin-bottom:0)
 * ========================================================================== */

/* Vertical rhythm — tight 6 px gap between address rows. WC's default
 * was inconsistent (some rows had margins, others didn't); we force a
 * uniform compact spacer on every adjacent pair. */
.wc-block-components-address-form > * + *,
.wc-block-checkout__contact-fields > * + *,
.wc-block-components-checkout-step__content .wc-block-components-address-form > * + * {
	margin-top: 6px !important;
}

/* Cancel that margin-top for the SECOND column of EVERY paired row.
 * WC Blocks emits address fields as flat siblings of address-form;
 * the universal `> * + *` selector above hits the second column too,
 * pushing it 6 px down relative to its pair. The known second-column
 * classes (one per pair WC ships) get margin-top reset to 0. */
.wc-block-components-address-form > .wc-block-components-address-form__last_name,
.wc-block-components-address-form > .wc-block-components-address-form__state,
.wc-block-components-address-form > .wc-block-components-address-form__phone {
	margin-top: 0 !important;
}

/* First-name + last-name row: pin the actual <input> elements to
 * exactly 56 px (height, not min-height) so neither side can drift
 * by sub-pixel rounding or by an extra error-text line under one
 * of them. The wrapper divs keep their natural height; matching
 * the input height is what actually controls the visible box. */
.wc-block-components-address-form .wc-block-components-address-form__first_name,
.wc-block-components-address-form .wc-block-components-address-form__last_name {
	margin-bottom: 0 !important;
	align-self: start !important;
}
.wc-block-components-address-form .wc-block-components-address-form__first_name input,
.wc-block-components-address-form .wc-block-components-address-form__last_name input {
	height: 56px !important;
	box-sizing: border-box !important;
}

/* Text inputs / selects — rounded soft border, brand-green focus.
 * Top padding leaves room for the floating label when it shrinks
 * up to the top edge. */
.wc-block-checkout .wc-block-components-text-input,
.wc-block-checkout .wc-block-components-select,
.wc-block-checkout .wc-block-components-combobox {
	position: relative;
	border-radius: 10px;
}

.wc-block-checkout .wc-block-components-text-input input[type="text"],
.wc-block-checkout .wc-block-components-text-input input[type="email"],
.wc-block-checkout .wc-block-components-text-input input[type="tel"],
.wc-block-checkout .wc-block-components-text-input input[type="number"],
.wc-block-checkout .wc-block-components-select select,
.wc-block-checkout .wc-block-components-combobox input,
.wc-block-checkout .wc-block-components-textarea textarea {
	border: 1px solid #e2e8f0 !important;
	border-radius: 10px !important;
	background: #ffffff !important;
	padding: 22px 16px 8px !important;  /* room on top for the shrunken label */
	font-size: 14px !important;
	color: #1e293b !important;
	min-height: 56px !important;
	box-shadow: none !important;
	text-align: left !important;
	transition: border-color 0.15s, box-shadow 0.15s;
}

/* Hover — slightly darker border. */
.wc-block-checkout .wc-block-components-text-input input:hover,
.wc-block-checkout .wc-block-components-select select:hover,
.wc-block-checkout .wc-block-components-combobox input:hover,
.wc-block-checkout .wc-block-components-textarea textarea:hover {
	border-color: #cbd5e1 !important;
}

/* Focus — brand-green border + halo. */
.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-select select:focus,
.wc-block-checkout .wc-block-components-combobox input:focus,
.wc-block-checkout .wc-block-components-textarea textarea:focus {
	border-color: #2e844a !important;
	box-shadow: 0 0 0 3px rgba(46, 132, 74, 0.15) !important;
	outline: none !important;
}

/* Floating label — sits centred over the input at rest, shrinks +
 * floats to the top-left when the field gets focus or has content.
 * Classic Material-style behaviour, anchored to the LEFT edge so the
 * label and the typed text both flow from the same horizontal origin.
 *
 * NOTE on selectors: WC's React component slaps a permanent `is-active`
 * class onto every text-input, so we deliberately DON'T use it as a
 * float trigger — that's why labels were stuck in the top position.
 * Instead, only :focus-within OR `input:not(:placeholder-shown)` (i.e.
 * the field actually has typed content) triggers the float. WC sets
 * placeholder=" " on its inputs so the :placeholder-shown trick works
 * reliably even though no visible placeholder text is shown. */
.wc-block-checkout .wc-block-components-text-input label {
	position: absolute !important;
	top: 50% !important;
	left: 16px !important;
	right: auto !important;
	transform: translateY(-50%) scale(1) !important;
	transform-origin: left top !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #64748b !important;
	font-size: 14px !important;
	line-height: 1 !important;
	text-align: left !important;
	background: transparent !important;
	pointer-events: none !important;
	transition: top 0.15s ease, transform 0.15s ease, font-size 0.15s ease, color 0.15s ease !important;
}

/* Active state — focus OR has value. Label moves to the top-left
 * corner and shrinks; colour matches the focus border. */
.wc-block-checkout .wc-block-components-text-input:focus-within label,
.wc-block-checkout .wc-block-components-text-input:has(input:not(:placeholder-shown)) label,
.wc-block-checkout .wc-block-components-text-input:has(textarea:not(:placeholder-shown)) label {
	top: 8px !important;
	transform: translateY(0) scale(0.85) !important;
	color: #2e844a !important;
	letter-spacing: 0.2px !important;
}

/* Country / Region select + combobox — match the text-input look.
 * These fields are always pre-populated (default country = "Россия",
 * first state in the list, etc.) so there's no "empty" state to drop
 * the label into the centre — it sits permanently in the floated
 * position, identical to a text-input that has typed content. */
.wc-block-checkout .wc-block-components-combobox label,
.wc-block-checkout .wc-block-components-select label,
.wc-block-checkout .wc-block-components-combobox-control label {
	position: absolute !important;
	top: 8px !important;
	left: 16px !important;
	right: auto !important;
	transform: translateY(0) scale(0.85) !important;
	transform-origin: left top !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #2e844a !important;
	font-size: 14px !important;
	line-height: 1 !important;
	letter-spacing: 0.2px !important;
	text-align: left !important;
	background: transparent !important;
	pointer-events: none !important;
	z-index: 1 !important;
}

/* Combobox arrow (custom dropdown indicator) — keep inside the box. */
.wc-block-checkout .wc-block-components-combobox-control input {
	padding-right: 36px !important;
}

/* Tighter gap immediately under the city/state row. The postcode row
 * is the first column of the next paired row, so it normally inherits
 * the universal 6 px `> * + *` margin. Drop it down to 2 px so the
 * three-line address block (city/state → postcode/phone) reads as one
 * logical group rather than three isolated rows. */
.wc-block-components-address-form > .wc-block-components-address-form__postcode {
	margin-top: 2px !important;
}

/* ==========================================================================
 * License-only checkout — hide unused address fields
 * --------------------------------------------------------------------------
 * We sell digital products only. The customer doesn't need to give us their
 * postal address — only contact info (email/phone) and the domain where the
 * licence will be used. We've already made these fields optional server-side
 * via `woocommerce_default_address_fields` filter; here we hide them from
 * the form so the page reads as 4-5 inputs instead of 9.
 * ========================================================================== */
.wc-block-components-address-form__last_name,
.wc-block-components-address-form__address_1,
.wc-block-components-address-form__address_2,
.wc-block-components-address-form__city,
.wc-block-components-address-form__state,
.wc-block-components-address-form__postcode,
.wc-block-components-address-form__company,
.wc-block-checkout-shipping-method-block,
.wc-block-checkout__shipping-method,
.wc-block-checkout__shipping-fields,
.wc-block-components-checkout-step--with-shipping {
	display: none !important;
}

/* When last_name + address are gone, "Платёжный адрес" section title
 * collapses to just "Страна + Имя", which is misleading. Soften it. */
.wc-block-components-checkout-step--with-billing .wc-block-components-checkout-step__title {
	display: none !important;
}
.wc-block-components-checkout-step--with-billing .wc-block-components-checkout-step__container {
	padding-top: 0 !important;
}

/* ==========================================================================
 * Additional checkout fields — namespace `itlife-cdek`
 * --------------------------------------------------------------------------
 * Domain, legal-entity toggle, company name, INN, marketing opt-in.
 * They're rendered via WC 8.x register_additional_checkout_field API and
 * inherit our floating-label styling automatically.
 * ========================================================================== */

/* Hint under Domain field — visible only on focus. */
.wc-block-components-text-input[id*="domain"] input::placeholder {
	color: #94a3b8;
	opacity: 1;
}

/* Legal-entity toggle — make it look like a section header rather than
 * a regular form-row. */
.wc-block-components-checkbox[id*="legal_entity"] {
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 10px 14px !important;
	margin-top: 14px !important;
}
.wc-block-components-checkbox[id*="legal_entity"] label {
	font-weight: 600 !important;
	color: #032d60 !important;
}

/* Company name + INN — visually grouped, indented under the toggle. */
.wc-block-components-text-input[id*="company_name"],
.wc-block-components-text-input[id*="/inn"],
.wc-block-components-text-input[id*="-inn"] {
	margin-left: 14px !important;
	border-left: 3px solid #e2e8f0 !important;
	padding-left: 12px !important;
}

/* Conditional toggle — Company name + INN are hidden by default and
 * revealed only when the «Я покупаю как юр.лицо» checkbox is ticked.
 *
 * Pure CSS via :has() — no JS, no MutationObserver, no React re-render
 * fragility. The browser's selector engine watches the checkbox state
 * itself, so the toggle is instant and immune to Blocks Checkout's
 * habit of re-rendering the form on every keystroke.
 *
 * `:has()` is supported in every browser shipped after 2023-12 (Chrome
 * 105+, Safari 15.4+, Firefox 121+). Older browsers fall back to the
 * default-hidden state — those visitors just don't see the legal-entity
 * fields at all, which is a safe degradation (purchase still works as
 * a B2C transaction; no broken UI).
 *
 * Selectors target two element identities WC Blocks uses on the input:
 *   - `name="itlife-cdek/legal_entity"` (the registered field id)
 *   - `id*="legal_entity"` (WC normalises ids; covers both flavours)
 * to be resilient to WC version differences.
 *
 * Scope: limited to the additional-fields container so we don't
 * accidentally hide unrelated inputs that happen to share substring
 * matches elsewhere on the page. */

/* Hide by default. */
.wc-block-checkout .wc-block-components-text-input[id*="company_name"],
.wc-block-checkout .wc-block-components-text-input[id*="/inn"],
.wc-block-checkout .wc-block-components-text-input[id*="-inn"] {
	display: none !important;
}

/* Reveal only when the legal-entity checkbox is checked. The
 * additional-fields container is the closest ancestor that holds
 * BOTH the checkbox and the conditional fields, so :has() bubbles
 * the state correctly. */
.wc-block-checkout:has(input[name="itlife-cdek/legal_entity"]:checked) .wc-block-components-text-input[id*="company_name"],
.wc-block-checkout:has(input[name="itlife-cdek/legal_entity"]:checked) .wc-block-components-text-input[id*="/inn"],
.wc-block-checkout:has(input[name="itlife-cdek/legal_entity"]:checked) .wc-block-components-text-input[id*="-inn"],
.wc-block-checkout:has(input[id*="legal_entity"]:checked) .wc-block-components-text-input[id*="company_name"],
.wc-block-checkout:has(input[id*="legal_entity"]:checked) .wc-block-components-text-input[id*="/inn"],
.wc-block-checkout:has(input[id*="legal_entity"]:checked) .wc-block-components-text-input[id*="-inn"] {
	display: block !important;
}

/* Marketing opt-in — muted, looks like a footnote checkbox. */
.wc-block-components-checkbox[id*="agree_marketing"] {
	margin-top: 8px !important;
}
.wc-block-components-checkbox[id*="agree_marketing"] label {
	color: #64748b !important;
	font-size: 13px !important;
	line-height: 1.5 !important;
}

/* «Вы оформляете заказ как гость.» — misleading on this site, since
 * an account is auto-created on payment. Hide via CSS as a backup to
 * the JS detector (in case the node renders before our script binds). */
.wc-block-checkout__guest-checkout-notice,
.wc-block-components-checkout-step--with-contact-fields .wc-block-components-notice-banner.is-info {
	display: none !important;
}

/* Friendly explainer injected by JS under the Email field. Tells the
 * customer that an account is created on payment, credentials arrive
 * by email, and licences live in the personal cabinet with renewal +
 * download options. */
.itlife-account-notice {
	margin: 8px 0 14px !important;
}
.itlife-account-notice__inner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	background: #f0fdf4;
	border-left: 3px solid #2e844a;
	border-radius: 8px;
	font-size: 13px;
	color: #475569;
	line-height: 1.55;
}
.itlife-account-notice__inner svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #2e844a;
}
.itlife-account-notice strong {
	color: #032d60;
	font-weight: 700;
}

/* Terms-and-conditions block (built-in WC) + extra link line. */
.itlife-terms-links a {
	color: #2e844a;
	text-decoration: underline;
}
.itlife-terms-links a:hover {
	color: #276b3e;
}

/* Validation error — red border + red label, no shadow flash. */
.wc-block-checkout .wc-block-components-text-input.has-error input,
.wc-block-checkout .has-error .wc-block-components-text-input input {
	border-color: #e53e3e !important;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12) !important;
}
.wc-block-checkout .wc-block-components-validation-error {
	color: #e53e3e !important;
	font-size: 13px !important;
	margin-top: 6px !important;
}

/* Section headings ("Контактная информация", "Платёжный адрес"…) get a
 * touch more breathing room above so the overall page reads as a series
 * of cards rather than a single dense column. */
.wc-block-checkout .wc-block-components-checkout-step__title {
	color: #032d60 !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	margin: 28px 0 14px !important;
}

/* Place-order button — full-width brand green, matches the rest of the site. */
.wc-block-components-checkout-place-order-button {
	background: #2e844a !important;
	border: none !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	min-height: 52px !important;
	transition: background 0.15s !important;
}
.wc-block-components-checkout-place-order-button:hover {
	background: #276b3e !important;
}


/* ========== Single Product page — compact gallery ========== */
/* Stock product image is SVG-rendered 300×300, WC stretches it to the whole
 * gallery column (~720 px). Clamp to ~420 px and center for a balanced layout. */
.single-product .woocommerce-product-gallery {
	max-width: 420px !important;
	width: 100% !important;
	margin: 0 auto 24px !important;
	float: none !important;
}
.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery__image {
	max-width: 420px !important;
	margin: 0 auto !important;
}
.single-product .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery__image img {
	max-width: 420px !important;
	width: 100% !important;
	height: auto !important;
	border-radius: 16px;
}
/* Two-column layout on desktop: gallery 40% + summary 55% */
@media (min-width: 992px) {
	.single-product div.product {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 48px !important;
		align-items: flex-start !important;
	}
	.single-product div.product .woocommerce-product-gallery {
		flex: 0 0 420px !important;
		max-width: 420px !important;
		margin: 0 !important;
	}
	.single-product div.product .summary.entry-summary {
		flex: 1 1 0 !important;
		min-width: 0 !important;
		width: auto !important;
		margin: 0 !important;
		float: none !important;
	}
	.single-product div.product .woocommerce-tabs,
	.single-product div.product .related,
	.single-product div.product .up-sells {
		flex: 1 0 100% !important;
		width: 100% !important;
	}
}
/* Mobile: keep centered, cap the height so the image isn't a viewport wall */
@media (max-width: 767px) {
	.single-product .woocommerce-product-gallery,
	.single-product .woocommerce-product-gallery__wrapper,
	.single-product .woocommerce-product-gallery__image,
	.single-product .woocommerce-product-gallery__image img {
		max-width: 320px !important;
	}
}

/* ========== Cart item description — show full text, no clamping ==========
 * WooCommerce Blocks clamps the short description to 2 lines by default
 * (.wc-block-components-product-metadata__description uses -webkit-line-clamp).
 * Our tariff descriptions are the key selling point, so let them wrap fully. */
.wc-block-cart-item__product .wc-block-components-product-metadata,
.wc-block-cart-item__product .wc-block-components-product-metadata > *,
.wc-block-components-product-metadata__description,
.wc-block-cart-item__product .wc-block-components-product-details,
.wc-block-cart-item__product .wc-block-components-product-details li {
	display: block !important;
	-webkit-line-clamp: unset !important;
	line-clamp: unset !important;
	-webkit-box-orient: unset !important;
	overflow: visible !important;
	text-overflow: clip !important;
	white-space: normal !important;
	max-height: none !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: #475569 !important;
}

/* ========== Promo banner in cart / checkout / mini-cart ========== */
.itlife-promo-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	margin: 0 0 20px;
	background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
	border: 1px solid #fdba74;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #7c2d12;
}
.itlife-promo-banner__badge {
	flex: 0 0 auto;
	background: #ea580c;
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	padding: 6px 12px;
	border-radius: 999px;
	white-space: nowrap;
	letter-spacing: 0.3px;
}
.itlife-promo-banner__text {
	flex: 1 1 auto;
	line-height: 1.45;
}
/* Safety: never render the promo banner inside the tiny mini-cart dropdown.
 * Strike-through price on each line is the compact signal there. */
.woocommerce-mini-cart .itlife-promo-banner,
.nav-cart__dropdown-inner .itlife-promo-banner {
	display: none !important;
}

/* Block Checkout — equalise vertical gap between all address-form rows.
 * By default the Name/Last-name row has a tighter margin-bottom than single-
 * field rows, which makes Country sit closer to the Name row than to Address. */
.wc-block-components-address-form > *,
.wp-block-woocommerce-checkout-contact-information-block .wc-block-components-form > *,
.wp-block-woocommerce-checkout-billing-address-block .wc-block-components-form > * {
	margin-bottom: 16px !important;
}
.wc-block-components-address-form > *:last-child,
.wp-block-woocommerce-checkout-contact-information-block .wc-block-components-form > *:last-child,
.wp-block-woocommerce-checkout-billing-address-block .wc-block-components-form > *:last-child {
	margin-bottom: 0 !important;
}
/* Inside the Name+Lastname two-column row, keep horizontal gap intact
 * but reset any extra bottom margin the individual fields may carry. */
.wc-block-components-address-form__first_name,
.wc-block-components-address-form__last_name {
	margin-bottom: 0 !important;
}

/* Hide "Create an account?" checkbox in Block Checkout — every order creates
 * an account automatically (see functions.php) so the toggle is a lie. */
.wc-block-checkout__create-account,
.wp-block-woocommerce-checkout-order-summary-block + .wc-block-checkout__create-account,
.wc-block-components-checkbox.wc-block-checkout__create-account-checkbox {
	display: none !important;
}
/* Legacy classic checkout selector */
.woocommerce-form__input-checkbox[name="createaccount"],
.woocommerce-form__input-checkbox[name="createaccount"] + label,
.woocommerce-account-fields {
	display: none !important;
}

/* Hide the "Войти" link in the Contact Information step.
 * Signup/login is handled silently by our PHP hooks — customers never need to
 * authenticate on the checkout page. Keeping the link around only confused
 * buyers who kept getting "email already registered" errors. */
.wp-block-woocommerce-checkout-contact-information-block .wc-block-components-checkout-step__description-link,
.wc-block-checkout-contact-information-block .wc-block-components-checkout-step__description-link,
.wc-block-components-checkout-step__title + a,
.wc-block-components-checkout-step__heading a[href*="login"],
.wc-block-components-checkout-step__heading a[href*="my-account"] {
	display: none !important;
}

/* ============================================================
 * Payment status pages (success / failed)
 * Shared visual language with the My Account cards + cart.
 * ============================================================ */

.payment-status {
	background: #f8fafc;
	padding: 48px 16px 80px;
	min-height: 60vh;
}
.payment-status__container {
	max-width: 680px;
	margin: 0 auto;
}
.payment-status__card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 40px 40px 36px;
	box-shadow: 0 8px 32px rgba(3, 45, 96, 0.08);
	text-align: center;
}

.payment-status__icon {
	width: 88px;
	height: 88px;
	margin: 0 auto 24px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}
.payment-status__icon--success {
	background: #dcfce7;
	color: #166534;
}
.payment-status__icon--failed {
	background: #fee2e2;
	color: #991b1b;
}

.payment-status__title {
	font-size: 30px;
	font-weight: 900;
	color: #032d60;
	margin: 0 0 14px;
	line-height: 1.2;
}

.payment-status__lead {
	font-size: 17px;
	line-height: 1.55;
	color: #475569;
	margin: 0 0 28px;
}

.payment-status__order {
	background: #f1f5f9;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 0 0 28px;
	text-align: left;
}
.payment-status__order-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
	font-size: 15px;
	color: #334155;
	gap: 16px;
	flex-wrap: wrap;
}
.payment-status__order-row span {
	color: #64748b;
}
.payment-status__order-row strong {
	color: #032d60;
	font-weight: 700;
}

.payment-status__steps {
	text-align: left;
	margin: 0 0 28px;
	padding: 20px 24px;
	background: #f0fdf4;
	border-left: 4px solid #2e844a;
	border-radius: 8px;
}
.payment-status--failed .payment-status__steps {
	background: #fef2f2;
	border-left-color: #dc2626;
}
.payment-status__steps h2 {
	font-size: 16px;
	font-weight: 800;
	color: #032d60;
	margin: 0 0 10px;
}
.payment-status__steps ol,
.payment-status__steps ul {
	margin: 0;
	padding-left: 20px;
	color: #334155;
	font-size: 15px;
	line-height: 1.6;
}
.payment-status__steps li {
	margin-bottom: 4px;
}

.payment-status__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 0 0 24px;
}
.payment-status__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	transition: all 0.2s;
	min-width: 180px;
}
.payment-status__btn--primary {
	background: #2e844a;
	color: #fff;
	border-color: #2e844a;
}
.payment-status__btn--primary:hover {
	background: #276b3e;
	border-color: #276b3e;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(46, 132, 74, 0.25);
}
.payment-status__btn--ghost {
	background: #fff;
	color: #032d60;
	border-color: #cbd5e1;
}
.payment-status__btn--ghost:hover {
	background: #f1f5f9;
	border-color: #94a3b8;
	color: #032d60;
}

.payment-status__help {
	font-size: 13px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}
.payment-status__help a {
	color: #2e844a;
	text-decoration: none;
	font-weight: 600;
}
.payment-status__help a:hover {
	text-decoration: underline;
}

@media ( max-width: 560px ) {
	.payment-status__card { padding: 28px 22px 24px; }
	.payment-status__title { font-size: 24px; }
	.payment-status__lead { font-size: 15px; }
	.payment-status__icon { width: 72px; height: 72px; }
	.payment-status__btn { min-width: 0; width: 100%; }
}
