/* Fixes for header when using WordPress template (new dev markup) */

/* Old theme's style.min.css has `.nav { background-color: #f60611; margin-top: -70px }`
   which collides with the new dev `.nav` class. Neutralize it here. */
.header .nav {
	background-color: transparent;
	margin-top: 0;
	padding: 0;
	color: inherit;
}

@media (max-width: 767px) {
	/* Hide old WP-generated .nav on mobile — replaced by .mobile-nav */
	.header .nav {
		display: none !important;
	}

	.burger {
		position: relative;
		z-index: 1001;
	}
}

/* ============================================================
 * Mobile nav (design-kit style)
 * ============================================================ */
.mobile-nav {
	display: none;
}

@media (max-width: 767px) {
	.mobile-nav {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #ffffff;
		z-index: 999;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 64px 16px 24px;
		gap: 0;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		pointer-events: none;
		will-change: transform;
	}

	.mobile-nav[hidden] {
		display: flex;
	}

	.mobile-nav.active {
		transform: translateX(0);
		pointer-events: auto;
	}

	.mobile-nav__langs {
		display: flex;
		gap: 8px;
		padding: 10px 4px 14px;
		border-bottom: 1px solid #eef0f3;
	}

	.mobile-nav__lang {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 44px;
		padding: 6px 12px;
		border: 1px solid #d6dde5;
		border-radius: 6px;
		text-decoration: none;
		font-size: 13px;
		font-weight: 600;
		color: #555;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	}

	.mobile-nav__lang:hover,
	.mobile-nav__lang:focus {
		border-color: #153475;
		color: #153475;
	}

	.mobile-nav__lang.is-active {
		background-color: #153475;
		border-color: #153475;
		color: #fff;
	}

	.mobile-nav__email {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 14px 4px;
		text-decoration: none;
		color: #333;
		font-size: 16px;
		font-weight: 500;
		border-bottom: 1px solid #eef0f3;
	}

	.mobile-nav__email span {
		text-decoration: underline;
	}

	.mobile-nav__email img {
		width: 20px;
		height: 20px;
		flex: none;
	}

	.mobile-nav__group {
		border-bottom: 1px solid #eef0f3;
	}

	.mobile-nav__group-head {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 14px 4px;
		width: 100%;
		background: none;
		border: none;
		font: inherit;
		cursor: pointer;
		text-align: left;
	}

	.mobile-nav__group-icon {
		display: inline-flex;
		width: 22px;
		justify-content: center;
		flex: none;
	}

	.mobile-nav__group-title {
		flex: 1;
		color: #153475;
		font-size: 16px;
		font-weight: 500;
	}

	.mobile-nav__group-arrow {
		display: inline-flex;
		flex: none;
		transition: transform 0.2s ease;
	}

	.mobile-nav__group.is-open .mobile-nav__group-arrow {
		transform: rotate(180deg);
	}

	.mobile-nav__group-body {
		display: none;
		padding: 4px 0 16px;
	}

	.mobile-nav__group.is-open .mobile-nav__group-body {
		display: block;
	}

	.mobile-nav__cat-grid {
		list-style: none;
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px 12px;
	}

	.mobile-nav__cat-card {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-nav__cat-link {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		text-decoration: none;
		color: #153475;
	}

	.mobile-nav__cat-image {
		width: 100%;
		aspect-ratio: 1 / 1;
		background: #f5f7fa;
		border-radius: 8px;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 8px;
		box-sizing: border-box;
	}

	.mobile-nav__cat-image img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		display: block;
	}

	.mobile-nav__cat-title {
		font-size: 13px;
		font-weight: 500;
		color: #153475;
		text-align: center;
		line-height: 1.2;
	}

	.mobile-nav__item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 16px 4px;
		text-decoration: none;
		color: #153475;
		font-size: 16px;
		font-weight: 500;
		border-bottom: 1px solid #eef0f3;
	}

	.mobile-nav__item-icon {
		display: inline-flex;
		width: 22px;
		justify-content: center;
		flex: none;
	}

	.mobile-nav__item-title {
		flex: 1;
	}

	.mobile-nav__item-arrow {
		display: inline-flex;
		flex: none;
	}
}

.header__cart,
a.header__cart {
	text-decoration: none;
	color: #333333;
}

.header__cart:hover,
.header__cart:focus {
	text-decoration: none;
	color: #333333;
}

/* Apply nav styles to WP-generated menu */
.nav .nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav .nav__list li,
.nav .nav__item {
	list-style: none;
}

.nav .nav__list a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
}

.nav .nav__list a:hover {
	color: #153475;
}

/* Mobile: open nav */
@media (max-width: 767px) {
	body.nav-open {
		overflow: hidden;
	}

	.header .nav {
		gap: 2rem;
	}

	.header .nav .nav__list {
		display: flex;
		flex-direction: column;
		gap: 1.6rem;
		width: 100%;
	}

	.header .nav .nav__list a {
		font-size: 1.8rem;
		display: block;
		padding: 0.6rem 0;
	}

	.header .nav .nav__email {
		order: -1;
	}
}

/* Catalog dropdown under header__bottom */
.header__bottom {
	position: relative;
}

.catalog-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	max-height: 80vh;
	overflow-y: auto;
}

.catalog-dropdown[hidden] {
	display: none;
}

/* Mega menu dropdown — appears right under the header__bottom, as in the design */
.catalog-dropdown--mega {
	background-color: #fff;
	max-height: none;
	padding: 0;
}

.catalog-dropdown__grid {
	list-style: none;
	padding: 24px 0 32px;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

@media (max-width: 1199px) {
	.catalog-dropdown__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 767px) {
	.catalog-dropdown--mega {
		padding-top: 180px;
	}
	.catalog-dropdown__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		padding: 16px 0 24px;
	}
}

.catalog-dropdown__card {
	list-style: none;
	margin: 0;
	padding: 0;
}

.catalog-dropdown__card-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	color: #153475;
	text-decoration: none;
	padding: 8px;
	border-radius: 8px;
	transition: background-color 0.15s ease, transform 0.15s ease;
	height: 100%;
}

.catalog-dropdown__card-link:hover,
.catalog-dropdown__card-link:focus {
	background-color: #f3f7fa;
	transform: translateY(-2px);
}

.catalog-dropdown__card-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	box-sizing: border-box;
}

.catalog-dropdown__card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.catalog-dropdown__card-title {
	font-size: 15px;
	font-weight: 700;
	color: #153475;
	text-align: center;
	line-height: 1.2;
}

.catalog-btn.is-open {
	background-color: #2f2f2f;
}

/* Mobile: catalog dropdown is hidden because header__bottom itself is hidden */
@media (max-width: 767px) {
	.catalog-dropdown {
		display: none !important;
	}
}

/* ============================================================================
 * Checkout page (WooCommerce) — map WC markup to the kit's visual style
 * ============================================================================ */

.braslet-checkout-section {
	padding: 20px 0 40px;
}

.braslet-checkout-section .product__title h1 {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 20px;
	color: #333;
}

.checkout-breadcrumbs-wrap {
	margin-top: 12px;
}

.braslet-checkout-section .checkout__wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	align-items: flex-start;
}

@media (max-width: 1023px) {
	.braslet-checkout-section .checkout__wrap {
		grid-template-columns: 1fr;
	}
}

.braslet-checkout-section .placing {
	background: #ffffff;
	border: 1px solid #e8eaec;
	border-radius: 6px;
	padding: 20px 24px;
	margin-bottom: 16px;
}

.braslet-checkout-section .placing__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.braslet-checkout-section .placing__title {
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: #333;
}

.braslet-checkout-section .placing__title > span:first-child {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #153475;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.braslet-checkout-section .placing__text {
	margin: 0;
	font-size: 13px;
	color: #888;
}

.braslet-checkout-section .placing__text span {
	color: #e31e24;
}

/* Billing form — force 3-column grid (override kit's 2-col + margin-top hack) */
.braslet-checkout-billing .form__row {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 20px !important;
	flex-direction: initial !important;
	flex-wrap: initial !important;
	width: 100%;
}

@media (min-width: 900px) {
	.braslet-checkout-billing .form__row {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 24px !important;
	}
}

.braslet-checkout-billing .form__col {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin-top: 0 !important;
	position: static !important;
	z-index: auto !important;
	gap: 14px !important;
	display: flex !important;
	flex-direction: column !important;
}

.braslet-checkout-billing .form__col--last {
	margin-top: 0 !important;
}

/* Inputs must fill their column — override any narrow widths from the kit */
.braslet-checkout-billing .form__field {
	width: 100% !important;
	display: block !important;
	position: relative;
}

.braslet-checkout-billing .form__input {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
	display: block !important;
}

/* Radio labels: wrap naturally instead of forced 35% fixed width */
.braslet-checkout-billing .form__line {
	flex-wrap: wrap !important;
	gap: 10px 16px !important;
}

.braslet-checkout-billing .form__line--contact .services__option,
.braslet-checkout-billing .form__line .services__option {
	width: auto !important;
	white-space: normal !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.braslet-checkout-billing .form-row label {
	display: block;
	margin: 0 0 4px;
	font-size: 13px;
	color: #555;
	font-weight: 500;
}

.braslet-checkout-billing .form-row .required {
	color: #e31e24;
}

.braslet-checkout-billing .form-row input[type="text"],
.braslet-checkout-billing .form-row input[type="tel"],
.braslet-checkout-billing .form-row input[type="email"],
.braslet-checkout-billing .form-row input[type="number"],
.braslet-checkout-billing .form-row textarea,
.braslet-checkout-billing .form-row .select2-selection,
.braslet-checkout-billing .form-row select {
	width: 100% !important;
	border: 1px solid #c5c8cc !important;
	border-radius: 4px !important;
	padding: 10px 14px !important;
	font-size: 14px !important;
	background: #fff !important;
	box-shadow: none !important;
	height: auto !important;
	min-height: 42px;
}

.braslet-checkout-billing .form-row input:focus,
.braslet-checkout-billing .form-row textarea:focus,
.braslet-checkout-billing .form-row select:focus {
	border-color: #153475 !important;
	outline: none;
}

/* Radio groups in billing (contact method, recipient) */
.braslet-checkout-billing .braslet-contact-method span.woocommerce-input-wrapper,
.braslet-checkout-billing .braslet-recipient span.woocommerce-input-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 6px;
}

.braslet-checkout-billing .braslet-contact-method label,
.braslet-checkout-billing .braslet-recipient label {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 400;
	margin: 0 !important;
	cursor: pointer;
}

.braslet-checkout-billing .braslet-contact-method input[type="radio"],
.braslet-checkout-billing .braslet-recipient input[type="radio"] {
	margin: 0;
	accent-color: #153475;
}

/* Company/EDRPOU block — shown only when bank-transfer payment is selected */
.js-company-block {
	display: none !important;
}

.js-company-block.is-visible {
	display: block !important;
}

.js-company-block .form__title--sub {
	font-size: 13px;
	font-weight: 500;
	color: #555;
	margin: 8px 0 6px;
}

/* Override legacy red radio pseudo-elements from style.min.css — recolor to brand blue. */
.braslet-checkout-section input[type="radio"]::before {
	border-color: #153475 !important;
}
.braslet-checkout-section input[type="radio"]:checked::after {
	background-color: #153475 !important;
}

/* Payment & shipping — custom .radio-group / .radio-item styling */
.braslet-checkout-section .radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.braslet-checkout-section .radio-group .radio-item {
	border: 1px solid #e8eaec;
	border-radius: 6px;
	padding: 14px 16px;
	background: #fff;
	transition: border-color 0.15s ease;
}

.braslet-checkout-section .radio-group .radio-item:has(input:checked) {
	border-color: #153475;
}

.braslet-checkout-section .radio-group .radio-item__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.braslet-checkout-section .radio-group .radio-item__label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	margin: 0;
}

.braslet-checkout-section .radio-group .radio-item__circle {
	width: 20px;
	height: 20px;
	border: 2px solid #c5c8cc;
	border-radius: 50%;
	flex: none;
	margin-top: 2px;
	position: relative;
}

.braslet-checkout-section .radio-group .radio-item__input:checked + .radio-item__label .radio-item__circle {
	border-color: #153475;
}

.braslet-checkout-section .radio-group .radio-item__input:checked + .radio-item__label .radio-item__circle::after {
	content: '';
	position: absolute;
	inset: 3px;
	background: #153475;
	border-radius: 50%;
}

.braslet-checkout-section .radio-group .radio-item__body {
	flex: 1;
	min-width: 0;
}

.braslet-checkout-section .radio-group .radio-item__img {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.braslet-checkout-section .radio-group .radio-item__img img {
	max-height: 24px;
	width: auto;
	display: block;
}

.braslet-checkout-section .radio-group .radio-item__title {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.braslet-checkout-section .radio-group .radio-item__text {
	margin: 0 0 6px;
	font-size: 14px;
	color: #555;
	line-height: 1.4;
}

.braslet-checkout-section .radio-group .radio-item__desription {
	margin: 0;
	font-size: 12px;
	color: #888;
}

.braslet-checkout-section .braslet-no-payment,
.braslet-checkout-section .braslet-no-shipping {
	padding: 12px 16px;
	background: #fff6e5;
	border: 1px solid #ffcc7f;
	border-radius: 6px;
	color: #555;
	font-size: 14px;
}

/* (legacy block — kept, no longer used but harmless) */
.braslet-checkout-payment #payment {
	background: transparent;
	padding: 0;
}

.braslet-checkout-payment .wc_payment_methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.braslet-checkout-payment .wc_payment_method {
	border: 1px solid #e8eaec;
	border-radius: 6px;
	padding: 14px 16px;
	list-style: none;
	background: #fff;
	transition: border-color 0.15s ease;
}

.braslet-checkout-payment .wc_payment_method:has(input:checked) {
	border-color: #153475;
}

.braslet-checkout-payment .wc_payment_method > input[type="radio"] {
	margin-right: 8px;
	accent-color: #153475;
}

.braslet-checkout-payment .wc_payment_method label {
	font-weight: 500;
	font-size: 15px;
	color: #333;
	cursor: pointer;
}

.braslet-checkout-payment .payment_box {
	margin-top: 8px;
	background: #f3f7fa;
	padding: 10px 12px;
	font-size: 13px;
	color: #555;
	border-radius: 4px;
}

/* Shipping (radio-group from the kit) */
.braslet-checkout-shipping {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.braslet-checkout-shipping .radio-item {
	border: 1px solid #e8eaec;
	border-radius: 6px;
	padding: 14px 16px;
	background: #fff;
}

.braslet-checkout-shipping .radio-item:has(input:checked) {
	border-color: #153475;
}

.braslet-checkout-shipping .radio-item__input {
	display: none;
}

.braslet-checkout-shipping .radio-item__label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	margin: 0;
}

/* Align radio circle with the method-title row. Uses CSS grid so the circle
   sits in the first row (title line), while the optional .radio-item__hide
   (Nova Poshta city/warehouse fields) expands below without pulling the
   circle downward. */
.braslet-checkout-shipping .radio-item__label--delivery {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 12px;
	align-items: start;
}

.braslet-checkout-shipping .radio-item__label--delivery > .radio-item__circle {
	margin-top: 0;
	align-self: center;
	grid-row: 1;
}

.braslet-checkout-shipping .radio-item__label--delivery > .radio-item__body {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

.braslet-checkout-shipping .radio-item__circle {
	width: 18px;
	height: 18px;
	border: 2px solid #c5c8cc;
	border-radius: 50%;
	flex: none;
	margin-top: 2px;
	position: relative;
}

.braslet-checkout-shipping .radio-item__input:checked + .radio-item__label .radio-item__circle {
	border-color: #153475;
}

.braslet-checkout-shipping .radio-item__input:checked + .radio-item__label .radio-item__circle::after {
	content: '';
	position: absolute;
	inset: 3px;
	background: #153475;
	border-radius: 50%;
}

.braslet-checkout-shipping .radio-item__body {
	flex: 1;
}

.braslet-checkout-shipping .radio-item__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.braslet-checkout-shipping .radio-item__title {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

.braslet-checkout-shipping .radio-item__title span {
	color: #888;
	font-weight: 400;
	font-size: 13px;
}

.braslet-checkout-shipping .radio-item__hide {
	margin-top: 12px;
	display: none;
}

.braslet-checkout-shipping .radio-item__input:checked + .radio-item__label .radio-item__hide,
.braslet-checkout-shipping .radio-item__input:checked + .radio-item__label .mrkv_ua_shipping_checkout_fields {
	display: block !important;
}

/* Nova Poshta city/warehouse/address fields — bigger, more readable */
.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields {
	margin-top: 10px;
}

.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields label {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	margin-bottom: 6px;
	display: block;
}

.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields .form-row {
	margin-bottom: 14px;
}

.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields .select2-container .select2-selection {
	height: 44px;
	border: 1px solid #c5c8cc;
	border-radius: 4px;
	display: flex;
	align-items: center;
}

.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields .select2-container .select2-selection__rendered {
	font-size: 15px;
	line-height: 1.4;
	color: #333;
	padding: 0 14px;
}

.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields .select2-container .select2-selection__placeholder {
	font-size: 15px;
	color: #888;
}

.braslet-checkout-shipping .mrkv_ua_shipping_checkout_fields .select2-container .select2-selection__arrow {
	height: 42px;
	right: 8px;
}

/* Select2 dropdown (city list etc.) — bigger, more readable */
.select2-dropdown {
	font-size: 15px;
}

.select2-dropdown .select2-results__option {
	padding: 10px 14px;
	font-size: 15px;
	line-height: 1.35;
}

.select2-dropdown .select2-search__field {
	font-size: 15px;
	padding: 8px 12px;
	min-height: 38px;
}

.braslet-checkout-shipping .form__select-wrap {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.braslet-checkout-shipping .form__select {
	flex: 1;
	min-width: 200px;
	padding: 10px 12px;
	border: 1px solid #c5c8cc;
	border-radius: 4px;
	background: #fff;
	font-size: 14px;
}

/* Sidebar */
.braslet-checkout-section .order-descr {
	position: sticky;
	top: 20px;
	background: #fff;
	border: 1px solid #e8eaec;
	border-radius: 6px;
	padding: 18px 20px;
	align-self: flex-start;
}

.braslet-checkout-section .order-descr__delivery {
	background: #f3f7fa;
	border-radius: 6px;
	padding: 12px 14px 22px;
	margin-bottom: 16px;
}

.braslet-checkout-section .order-descr__delivery .bar {
	padding-top: 18px;
	margin-top: 4px;
}

.braslet-checkout-section .order-descr__delivery .bar__start-text,
.braslet-checkout-section .order-descr__delivery .bar__end-text {
	font-size: 12px;
	line-height: 1.2;
	white-space: nowrap;
}

.braslet-checkout-section .order-descr__delivery-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.braslet-checkout-section .order-descr__delivery-icon {
	width: 24px;
	flex: none;
}

.braslet-checkout-section .order-descr__delivery-icon img {
	width: 100%;
	display: block;
}

.braslet-checkout-section .order-descr__delivery-title {
	font-size: 13px;
	font-weight: 500;
	color: #333;
}

.braslet-checkout-section .order-descr__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	padding-bottom: 10px;
	border-bottom: 1px solid #e8eaec;
	margin-bottom: 12px;
}

.braslet-checkout-section .order-descr__title-icon img {
	width: 18px;
	display: block;
}

.braslet-checkout-section .order-descr__title-count {
	margin-left: auto;
	color: #888;
	font-weight: 400;
	font-size: 13px;
}

.braslet-checkout-section .order-descr__rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 340px;
	overflow-y: auto;
	padding-right: 4px;
}

.braslet-checkout-section .product-card {
	border-bottom: 1px dashed #e8eaec;
	padding-bottom: 10px;
}

.braslet-checkout-section .product-card:last-child {
	border-bottom: none;
}

.braslet-checkout-section .product-card__top {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.braslet-checkout-section .product-card__img {
	width: 54px;
	height: 54px;
	flex: none;
	border-radius: 4px;
	overflow: hidden;
	background: #f3f7fa;
}

.braslet-checkout-section .product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.braslet-checkout-section .product-card__info {
	flex: 1;
	min-width: 0;
}

.braslet-checkout-section .product-card__title {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
}

.braslet-checkout-section .product-card__color {
	font-size: 12px;
	color: #666;
	line-height: 1.3;
}

.braslet-checkout-section .product-card__color strong {
	font-weight: 500;
	color: #333;
}

.braslet-checkout-section .product-card__top {
	position: relative;
}

.braslet-checkout-section .product-card__remove {
	position: absolute;
	top: 0;
	right: 0;
	background: none;
	border: none;
	cursor: pointer;
	padding: 2px;
	line-height: 0;
}

.braslet-checkout-section .product-card__remove:hover svg circle {
	fill: #e31e24;
}

.braslet-checkout-section .product-card__bottom {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 6px;
	align-items: start;
	margin-top: 10px;
	padding: 10px 0 0;
	border-top: 1px dashed #e8eaec;
	font-size: 12px;
	color: #666;
}

.braslet-checkout-section .product-card__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.braslet-checkout-section .product-card__item:nth-child(2) {
	text-align: center;
	justify-self: center;
}

.braslet-checkout-section .product-card__item:nth-child(3) {
	text-align: right;
	justify-self: end;
}

.braslet-checkout-section .product-card__label {
	font-size: 11px;
	color: #888;
	white-space: nowrap;
}

/* Qty counter in the sidebar card */
.braslet-checkout-section .product-card__counter {
	display: inline-flex;
	align-items: center;
	border: 1px solid #c5c8cc;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	height: 30px;
}

.braslet-checkout-section .product-card__counter-btn {
	width: 26px;
	height: 28px;
	border: none;
	background: #fff;
	color: #333;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.braslet-checkout-section .product-card__counter-btn:hover {
	background: #f3f7fa;
}

.braslet-checkout-section .product-card__counter-input {
	width: 54px;
	height: 28px;
	border: none;
	border-left: 1px solid #e8eaec;
	border-right: 1px solid #e8eaec;
	text-align: center;
	font-size: 13px;
	color: #333;
	-moz-appearance: textfield;
	appearance: textfield;
}

.braslet-checkout-section .product-card__counter-input::-webkit-outer-spin-button,
.braslet-checkout-section .product-card__counter-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.braslet-checkout-section .product-card__value {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.braslet-checkout-section .order-descr__info {
	margin-top: 14px;
	padding: 10px 12px;
	background: #f3f7fa;
	border-radius: 4px;
	font-size: 12px;
	color: #555;
	line-height: 1.3;
}

.braslet-checkout-section .order-descr__line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 14px 0 12px;
	padding-top: 12px;
	border-top: 1px solid #e8eaec;
}

.braslet-checkout-section .order-descr__total-label {
	font-size: 14px;
	color: #555;
}

.braslet-checkout-section .order-descr__total-value {
	font-size: 20px;
	font-weight: 700;
	color: #333;
}

.braslet-checkout-section .order-descr__options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

.braslet-checkout-section .order-descr__options .services__option {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	line-height: 1.3;
	cursor: pointer;
	color: #555;
}

.braslet-checkout-section .order-descr__options .services__radio {
	margin-top: 3px;
	accent-color: #153475;
}

.braslet-checkout-section .order-descr__footer {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.braslet-checkout-section .order-descr__footer .btn.primary {
	background: #e31e24;
	color: #fff;
	border: none;
	padding: 14px 18px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

.braslet-checkout-section .order-descr__footer .btn.primary img {
	width: 18px;
	height: 18px;
}

.braslet-checkout-section .order-descr__footer .btn.secondary {
	background: #fff;
	color: #555;
	border: 1px solid #c5c8cc;
	padding: 10px 14px;
	border-radius: 4px;
	font-size: 13px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Fibosearch inside .search-form wrapper */
.search-form .dgwt-wcas-search-wrapp {
	width: 100%;
}

.search-form .dgwt-wcas-search-form {
	width: 100%;
}

/* Product page: center the current-total label over the delivery bar
   (same pattern as the cart page) */
.order-descr__delivery-bar {
	position: relative;
	margin-top: 2px;
}

.order-descr__delivery-bar .bar {
	padding-top: 22px;
	position: relative;
}

.order-descr__delivery-bar .bar__center-text {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #153475;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	pointer-events: none;
}

.order-descr__delivery-bar .bar__start-text {
	display: none;
}

.order-descr__delivery .order-descr__delivery-top {
	margin-bottom: 2px;
}

/* Cart page: limit colors column height to ~5 rows with vertical scroll */
.cart-wrap__body .item--colors-scroll {
	max-height: 280px;
	overflow-y: auto;
	padding-right: 6px;
}

.cart-wrap__body .item--colors-scroll::-webkit-scrollbar {
	width: 6px;
}

.cart-wrap__body .item--colors-scroll::-webkit-scrollbar-thumb {
	background-color: #c5c8cc;
	border-radius: 3px;
}

.cart-wrap__body .item--colors-scroll::-webkit-scrollbar-track {
	background-color: transparent;
}

/* Cart page: show color image inside .item-flex__color swatch */
.cart-wrap__body .item-flex__color {
	width: 50px !important;
	height: 30px !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	background-color: #f3f3f3;
}

/* Cart product name + thumbnail: one clickable block */
.cart-wrap__body .item-product-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	color: inherit;
	text-decoration: none;
	max-width: 180px;
}

.cart-wrap__body .item-product-link .item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #333;
	transition: color 0.15s ease;
}

.cart-wrap__body .item-product-link:hover .item-title {
	color: #153475;
}

.cart-wrap__body .item-product-link .item-image {
	width: 140px;
	height: 100px;
	margin: 0;
	border-radius: 6px;
	overflow: hidden;
	background-color: #f3f7fa;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-wrap__body .item-product-link .item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}

.cart-wrap__body .item-product-link:hover .item-image img {
	transform: scale(1.04);
}

/* Cart: selected options (add_info) list */
.cart-wrap__body .cart_add_info {
	display: block;
	font-size: 14px;
	line-height: 1.35;
	padding: 4px 0;
	color: #333;
}

.cart-wrap__body .cart_add_info__title {
	font-weight: 500;
}

.cart-wrap__body .cart_add_info__price {
	color: #666;
	white-space: nowrap;
}

.cart-wrap__body .cart_add_info--comment {
	margin-top: 6px;
	padding-top: 6px;
	border-top: 1px dashed #d0d4d8;
	font-style: italic;
	color: #555;
}

/* Cart: price breakdown (base + options = total) */
.cart-wrap__body .cart_price_breakdown {
	display: inline-block;
	text-align: right;
	font-size: 13px;
	line-height: 1.4;
}

.cart-wrap__body .cart_price_breakdown__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #555;
}

.cart-wrap__body .cart_price_breakdown__row--total {
	font-weight: 700;
	color: #333;
	font-size: 15px;
	border-top: 1px solid #d0d4d8;
	margin-top: 4px;
	padding-top: 4px;
}

.cart-wrap__body .cart_price_breakdown__label {
	white-space: nowrap;
}

.cart-wrap__body .cart_price_breakdown__value {
	white-space: nowrap;
}

/* Cart delivery bar — centered amount over the entire bar line */
.cart-delivery-bar__bar {
	padding-top: 22px !important;
	position: relative;
}

.cart-delivery-bar__bar .bar__center-text {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #153475;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	pointer-events: none;
}

/* Cart page layout — restore full-width blocks and apply brand colors */
.cart.cart_wrapper .bread {
	margin: 12px 0 6px;
}

.cart.cart_wrapper .cart-wrap,
.cart.cart_wrapper .cart-tot.container {
	max-width: 1322px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.cart-header {
	max-width: 1322px;
	margin: 0 auto 12px;
	padding: 0 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.cart-header .cart-title {
	margin: 0;
	line-height: 1.2;
}

/* Cart table — brand colors: deep blue header + soft blue row background */
.cart.cart_wrapper .cart-wrap__top {
	background-color: #153475 !important;
	color: #ffffff !important;
	border-radius: 6px 6px 0 0;
}

.cart.cart_wrapper .cart-wrap__top .item {
	color: #ffffff !important;
	font-weight: 500;
}

.cart.cart_wrapper .cart-wrap__body {
	background-color: #f3f7fa !important;
}

.cart.cart_wrapper .cart-wrap__body::after {
	background-color: #d6dde5 !important;
}

.cart.cart_wrapper .cart-wrap__body:last-child {
	border-radius: 0 0 6px 6px;
}

/* Free-shipping bar: soft tinted background, no border, compact padding */
.cart-delivery-bar {
	width: 100%;
	max-width: 360px;
	margin: 0;
	padding: 10px 14px;
	background-color: #f3f7fa;
	border: none;
	border-radius: 6px;
	box-shadow: none;
}

.cart-delivery-bar .order-descr__delivery {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

.cart-delivery-bar .order-descr__delivery-top {
	margin-bottom: 2px !important;
	gap: 8px !important;
}

.cart-delivery-bar .order-descr__delivery-icon {
	width: 22px !important;
	flex: none;
}

.cart-delivery-bar .order-descr__delivery-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.cart-delivery-bar .order-descr__delivery-title {
	font-size: 13px !important;
	font-weight: 500;
	line-height: 1.2;
}

.cart-delivery-bar .bar__start-text,
.cart-delivery-bar .bar__end-text {
	font-size: 12px;
}

@media (max-width: 767px) {
	.cart-header {
		flex-direction: column;
		align-items: stretch;
	}
	.cart-delivery-bar {
		max-width: none;
	}
}

.cart-delivery-bar .order-descr__delivery-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 2px;
}

.cart-delivery-bar .order-descr__delivery-icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.cart-delivery-bar .order-descr__delivery-title {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

/* Cart footer: align Разом total and action buttons to the right column */
.cart-tot {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	padding-top: 20px;
}

.cart-tot .cart-tot__flex {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	width: auto;
	justify-content: flex-end;
}

.cart-tot .cart-tot__flex .item {
	margin-right: 0;
}

.cart-tot .cart-tot__flex-buttons {
	gap: 12px;
}

.cart-tot .cart-tot__flex-buttons .btn {
	margin-right: 0;
}

.cart-tot .free-delivery {
	margin: 0;
	text-align: right;
}

@media (max-width: 767px) {
	.cart-tot {
		align-items: stretch;
	}
	.cart-tot .cart-tot__flex-buttons {
		flex-direction: column-reverse;
	}
}
