/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ������������� �������� */
.logo-container[b-f6zglqh1i0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text[b-f6zglqh1i0] {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.5rem;
    font-weight: 400;
}

.logo-sub[b-f6zglqh1i0] {
    font-size: 0.6rem;
    letter-spacing: 0.5rem;
    margin-top: 4px;
    margin-left: 5px;
    color: #666;
    text-transform: uppercase;
}

.footer-text[b-f6zglqh1i0] {
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    color: #999;
}


.nav-item[b-f6zglqh1i0] {
    font-size: 0.75rem !important;
    letter-spacing: 0.2rem !important;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a !important;
    transition: opacity 0.3s;
}

    .nav-item:hover[b-f6zglqh1i0] {
        opacity: 0.6;
    }




/* ����������� ������������ ��������� ������, ����� ��� �� �������� */
.nav-item[b-f6zglqh1i0], .logo-text[b-f6zglqh1i0], .mud-icon-root[b-f6zglqh1i0] {
    color: #1a1a1a !important;
    font-weight: 500;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-zdunoxqlrz],
.components-reconnect-repeated-attempt-visible[b-zdunoxqlrz],
.components-reconnect-failed-visible[b-zdunoxqlrz],
.components-pause-visible[b-zdunoxqlrz],
.components-resume-failed-visible[b-zdunoxqlrz],
.components-rejoining-animation[b-zdunoxqlrz] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-retrying[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-failed[b-zdunoxqlrz],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-zdunoxqlrz] {
    display: block;
}


#components-reconnect-modal[b-zdunoxqlrz] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-zdunoxqlrz 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-zdunoxqlrz 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-zdunoxqlrz 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-zdunoxqlrz]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-zdunoxqlrz 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-zdunoxqlrz {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-zdunoxqlrz {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-zdunoxqlrz {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-zdunoxqlrz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-zdunoxqlrz] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-zdunoxqlrz] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-zdunoxqlrz] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-zdunoxqlrz] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-zdunoxqlrz] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-zdunoxqlrz] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-zdunoxqlrz 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-zdunoxqlrz] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-zdunoxqlrz {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* Page-specific styles (from about.css). Variables in common.css. */

/* Закругление картинок на странице About */
.showcase__picture[b-z1adirndqu],
.showcase__image[b-z1adirndqu],
.conception__image[b-z1adirndqu],
.brand-inner__image[b-z1adirndqu] {
	border-radius: 6px;
}
.showcase__picture[b-z1adirndqu] {
	overflow: hidden;
}

/* conception */
.conception[b-z1adirndqu] {
}
.conception__content[b-z1adirndqu] {
	display: grid;
	grid-template-columns: minmax(300px, 35%) 1fr;
	align-items: center;

	gap: 70px;

	@media (max-width: 992px) {
		gap: 40px;[b-z1adirndqu]
	}
	@media (max-width: 768px) {
		grid-template-columns: 1fr;
		place-items: center;[b-z1adirndqu]
	}

	@media (max-width: 576px) {
		gap: 20px;[b-z1adirndqu]
	}
}
.conception__title[b-z1adirndqu] {
	margin-bottom: 35px;
	color: var(--colors-tertiary);
}
.conception__text[b-z1adirndqu] {
	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);
	line-height: normal;

	span {
		color: var(--colors-tertiary);
	}
}

/* section brand inner */
.brand-inner[b-z1adirndqu] {
	margin-bottom: 70px;

	@media (max-width: 576px) {
		margin-bottom: 50px;[b-z1adirndqu]
	}
	&:nth-of-type(even) {
		.brand-inner__content {
			grid-template-columns: minmax(280px, 360px) minmax(250px, 1fr);

			@media (max-width: 576px) {
				grid-template-columns: 1fr;[b-z1adirndqu]
			}
		}

		.brand-inner__text-block[b-z1adirndqu] {
			align-items: flex-start;
			order: 2;

			@media (max-width: 576px) {
				order: 1;[b-z1adirndqu]
			}
		}

		.brand-inner__title[b-z1adirndqu],
		.brand-inner__text-block p[b-z1adirndqu] {
			text-align: left;
		}
	}
}
.brand-inner__content[b-z1adirndqu] {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) minmax(280px, 360px);
	align-items: center;
	gap: 50px;

	@media (max-width: 768px) {
		gap: 20px;[b-z1adirndqu]
	}

	@media (max-width: 576px) {
		grid-template-columns: 1fr;[b-z1adirndqu]
	}
}
.brand-inner__text-block[b-z1adirndqu] {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;

	@media (max-width: 576px) {
		order: 2;

		align-items: flex-start;[b-z1adirndqu]
	}
}
.brand-inner__title[b-z1adirndqu],
.brand-inner__text-block p[b-z1adirndqu] {
	text-align: right;

	@media (max-width: 576px) {
		text-align: left;[b-z1adirndqu]
	}
}
.brand-inner__title[b-z1adirndqu] {
	color: var(--colors-tertiary);
	margin-bottom: 0;
}
.brand-inner__subtitle[b-z1adirndqu] {
	font-size: clamp(1.25rem, 0.385vw + 1.163rem, 1.5rem);
	font-weight: 500;
}
.brand-inner__text-block p[b-z1adirndqu] {
	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);
}
.brand-inner__text-block p span[b-z1adirndqu] {
	color: var(--colors-tertiary);
}
/* /Components/Pages/Cart.razor.rz.scp.css */
/* Корзина — в общей стилистике сайта (как профиль / токены common.css) */

.cart[b-kcv8d0astl] {
	padding-top: clamp(2.5rem, 6vw, 4.5rem);
	padding-bottom: clamp(2rem, 5vw, 4rem);
}

.cart__content[b-kcv8d0astl] {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
	max-width: min(1200px, 100%);
	margin-inline: auto;
}

@media (max-width: 992px) {
	.cart__content[b-kcv8d0astl] {
		grid-template-columns: 1fr;
	}
}

/* Шапка: назад + заголовок */
.cart__header[b-kcv8d0astl] {
	display: flex;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
	flex-wrap: wrap;
}

.cart__back[b-kcv8d0astl] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 2px solid rgba(163, 169, 139, 0.45);
	border-radius: var(--radii-lg);
	background: var(--colors-primary);
	color: var(--colors-text-main);
	cursor: pointer;
	transition:
		border-color 0.25s ease,
		background 0.25s ease,
		box-shadow 0.25s ease;
	flex-shrink: 0;
}

.cart__back:hover[b-kcv8d0astl] {
	border-color: var(--colors-text-highlight);
	box-shadow: 0 4px 16px rgba(163, 169, 139, 0.25);
}

.cart__back:focus-visible[b-kcv8d0astl] {
	outline: 2px solid var(--colors-text-highlight);
	outline-offset: 2px;
}

.cart__page-title[b-kcv8d0astl] {
	margin: 0;
	font-family: var(--font-secondary);
	font-size: clamp(1.5rem, 2.5vw + 1rem, 2.25rem);
	font-weight: 700;
	color: var(--colors-text-main);
	letter-spacing: -0.02em;
	line-height: 1.15;
}

/* Общая «карточка» */
.cart__panel[b-kcv8d0astl] {
	background: var(--colors-secondary);
	border-radius: var(--radii-lg);
	border: 1px solid rgba(32, 25, 15, 0.08);
	box-shadow: 0 8px 32px rgba(32, 25, 15, 0.06);
}

/* Пустая корзина */
.cart__empty[b-kcv8d0astl] {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
	text-align: center;
}

.cart__empty-text[b-kcv8d0astl] {
	margin: 0;
	max-width: 28rem;
	font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.25rem);
	line-height: 1.55;
	color: var(--colors-text-main);
	opacity: 0.9;
}

.cart__cta[b-kcv8d0astl] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 16px 36px;
	font-family: var(--font-primary);
	font-size: clamp(1.0625rem, 0.45vw + 0.98rem, 1.25rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--colors-primary);
	background: var(--colors-text-highlight);
	border: 2px solid var(--colors-text-highlight);
	border-radius: var(--radii-lg);
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(163, 169, 139, 0.35);
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.2s ease;
}

.cart__cta:hover[b-kcv8d0astl] {
	background: var(--colors-text-main);
	border-color: var(--colors-text-main);
	color: var(--colors-primary);
	box-shadow: 0 6px 24px rgba(32, 25, 15, 0.18);
	transform: translateY(-1px);
}

/* Список товаров */
.cart__grid[b-kcv8d0astl] {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}

.cart__item[b-kcv8d0astl] {
	display: grid;
	grid-template-columns: minmax(100px, 160px) minmax(0, 1fr) auto;
	gap: clamp(1rem, 3vw, 1.75rem);
	align-items: start;
	padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.cart__item:not(:last-child)[b-kcv8d0astl] {
	margin-bottom: 0;
}

.cart__item-image[b-kcv8d0astl] {
	display: block;
	width: 100%;
	max-width: 160px;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--radii-lg);
	border: 1px solid rgba(163, 169, 139, 0.25);
	background: var(--colors-primary);
}

.cart__item-body[b-kcv8d0astl] {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 2vw, 1.5rem);
	min-width: 0;
}

/* Без font-secondary — при смешанных языках в названии (en/ru/kk) шрифт «прыгает» */
.cart__item-title[b-kcv8d0astl] {
	margin: 0;
	font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
	font-weight: 600;
	color: var(--colors-text-main);
	line-height: 1.35;
}

.cart__item-quantity[b-kcv8d0astl] {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
}

.cart__item-btn-remove[b-kcv8d0astl] {
	padding: 8px 0;
	font-family: var(--font-primary);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--colors-text-danger);
	background: none;
	border: none;
	border-bottom: 1px solid transparent;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.cart__item-btn-remove:hover[b-kcv8d0astl] {
	border-bottom-color: var(--colors-text-danger);
}

.cart__item-price[b-kcv8d0astl] {
	font-family: var(--font-secondary);
	font-size: clamp(1.125rem, 0.5vw + 1rem, 1.35rem);
	font-weight: 700;
	color: var(--colors-text-main);
	white-space: nowrap;
	align-self: start;
	padding-top: 0.25rem;
}

@media (max-width: 576px) {
	.cart__item[b-kcv8d0astl] {
		grid-template-columns: 100px 1fr;
		grid-template-rows: auto auto;
	}

	.cart__item-price[b-kcv8d0astl] {
		grid-column: 2;
		justify-self: end;
		padding-top: 0;
	}

	.cart__item-image[b-kcv8d0astl] {
		grid-row: 1 / span 2;
		max-width: 100px;
	}
}

/* Блок итогов */
.order-summary[b-kcv8d0astl] {
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.order-summary__title[b-kcv8d0astl] {
	margin: 0 0 1.5rem;
	font-family: var(--font-secondary);
	font-size: clamp(1.2rem, 1.5vw + 0.9rem, 1.5rem);
	font-weight: 700;
	color: var(--colors-text-main);
	letter-spacing: -0.02em;
}

.order-summary__list[b-kcv8d0astl] {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(163, 169, 139, 0.35);
	line-height: 1.45;
}

.order-summary__list > div[b-kcv8d0astl] {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.order-summary__label[b-kcv8d0astl] {
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--colors-text-main);
	opacity: 0.85;
}

.order-summary__value[b-kcv8d0astl] {
	font-weight: 600;
	font-size: 1rem;
	color: var(--colors-text-main);
}

.order-summary__total[b-kcv8d0astl] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.order-summary__total-label[b-kcv8d0astl] {
	font-family: var(--font-secondary);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--colors-text-main);
}

.order-summary__total-value[b-kcv8d0astl] {
	font-family: var(--font-secondary);
	font-size: clamp(1.25rem, 1vw + 1.1rem, 1.5rem);
	font-weight: 700;
	color: var(--colors-text-main);
}

.order-summary__delivery[b-kcv8d0astl] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	font-size: 0.9375rem;
}

.order-summary__delivery-label[b-kcv8d0astl] {
	opacity: 0.85;
}

.order-summary__promo-field[b-kcv8d0astl] {
	position: relative;
	margin-bottom: 1.25rem;
}

.order-summary__promo-field img[b-kcv8d0astl] {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	opacity: 0.5;
	pointer-events: none;
}

.order-summary__promo-input[b-kcv8d0astl] {
	width: 100%;
	min-height: 56px;
	padding: 16px 52px 16px 18px;
	font-family: var(--font-primary);
	font-size: 1rem;
	color: var(--colors-text-main);
	background: var(--colors-primary);
	border: 1px solid rgba(163, 169, 139, 0.45);
	border-radius: var(--radii-lg);
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}

.order-summary__promo-input[b-kcv8d0astl]::placeholder {
	color: var(--colors-text-highlight);
	opacity: 0.65;
}

.order-summary__promo-input:focus[b-kcv8d0astl] {
	border-color: var(--colors-text-highlight);
	box-shadow: 0 0 0 3px rgba(163, 169, 139, 0.2);
}

.order-summary__checkout-button[b-kcv8d0astl] {
	width: 100%;
	min-height: 56px;
	padding: 16px 28px;
	margin-bottom: 1.25rem;
	font-family: var(--font-primary);
	font-size: clamp(1.0625rem, 0.45vw + 0.98rem, 1.25rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--colors-primary);
	background: var(--colors-text-highlight);
	border: 2px solid var(--colors-text-highlight);
	border-radius: var(--radii-lg);
	cursor: pointer;
	box-shadow: 0 4px 18px rgba(163, 169, 139, 0.4);
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.2s ease;
}

.order-summary__checkout-button:hover[b-kcv8d0astl] {
	background: var(--colors-text-main);
	border-color: var(--colors-text-main);
	box-shadow: 0 6px 24px rgba(32, 25, 15, 0.18);
	transform: translateY(-1px);
}

.order-summary__note[b-kcv8d0astl] {
	margin: 0;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--colors-text-main);
	opacity: 0.75;
}
/* /Components/Pages/Catalog.razor.rz.scp.css */
/* Page-specific styles (from shop.css). Variables in common.css. */



/* catalog-info */

.catalog-info[b-mlzga50cq8] {

}

.catalog-info__title[b-mlzga50cq8] {

	color: var(--colors-tertiary);

}

.catalog-info__text[b-mlzga50cq8] {

	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);

	text-align: center;

}



/* catalog all */

.catalog.catalog--all .catalog__title[b-mlzga50cq8] {

	color: var(--colors-tertiary);

}



.catalog-filters__label[b-mlzga50cq8] {

	margin: 0 0 0.75rem;

	font-size: clamp(0.875rem, 0.2vw + 0.85rem, 1rem);

	color: var(--colors-tertiary);

	opacity: 0.9;

}



.catalog-filters__hint[b-mlzga50cq8] {

	margin: 0 0 0.75rem;

	font-size: clamp(0.8125rem, 0.15vw + 0.8rem, 0.9375rem);

	color: var(--colors-tertiary);

	opacity: 0.75;

}



.catalog-filters[b-mlzga50cq8] {

	display: flex;

	flex-wrap: wrap;

	gap: 0.5rem 0.75rem;

	margin-bottom: 1.75rem;

	max-width: 100%;

}



.catalog-filters__chip[b-mlzga50cq8] {

	display: inline-flex;

	align-items: center;

	padding: 0.45rem 1rem;

	border-radius: 999px;

	font-size: clamp(0.875rem, 0.2vw + 0.85rem, 1rem);

	text-decoration: none;

	color: var(--colors-tertiary);

	background: var(--colors-secondary);

	border: 1px solid transparent;

	transition: background 0.2s ease, border-color 0.2s ease;

}



.catalog-filters__chip:hover[b-mlzga50cq8] {

	opacity: 0.92;

}



.catalog-filters__chip--active[b-mlzga50cq8] {

	background: var(--colors-tertiary);

	color: var(--colors-primary);

	border-color: var(--colors-tertiary);

}



/* catalog present */

.catalog.catalog--present[b-mlzga50cq8] {

}

/* Стили карточек catalog--all (сетка, footer) — в common.css для каталога и wishlist */

/* /Components/Pages/Checkout.razor.rz.scp.css */
/* Использование шрифта с засечками для заголовков */
.font-serif[b-20mypm5lr8] {
    font-family: 'Playfair Display', serif; /* Убедитесь, что шрифт подключен в index.html */
    letter-spacing: 0.02em;
}

/* Кастомная кнопка "Luxury" */
[b-20mypm5lr8] .btn-luxury {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border-radius: 0px; /* Прямые углы выглядят более строго/премиально */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    [b-20mypm5lr8] .btn-luxury:hover {
        background-color: #333333 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* Фон для блока итогов */
.bg-gray-50[b-20mypm5lr8] {
    background-color: #fcfcfc;
}

.border[b-20mypm5lr8] {
    border: 1px solid #eeeeee;
}

/* Стилизация полей ввода (убираем излишнюю закругленность) */
[b-20mypm5lr8] .mud-input-outlined-border {
    border-radius: 0px !important;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 960px) {
    .mt-16[b-20mypm5lr8] {
        margin-top: 2rem !important;
    }
}
/* /Components/Pages/Contacts.razor.rz.scp.css */
/* Page-specific styles (from contacts.css). Variables in common.css. */

/* contact us */
.contact-us[b-vm3ajmxqnn] {
	padding-top: 70px;

	@media (max-width: 576px) {
		padding-top: 40px;[b-vm3ajmxqnn]
	}
}
.contact-us__content[b-vm3ajmxqnn] {
	display: flex;
	flex-direction: column;
	align-items: center;

	max-width: 1063px;
	margin: 0 auto;

	padding: 36px 40px;

	color: var(--colors-primary);

	border-radius: 12px;
	background-color: var(--colors-tertiary);
}
.contact-us__title[b-vm3ajmxqnn] {
	margin-bottom: 20px;
	color: var(--colors-primary);
}
.contact-us address[b-vm3ajmxqnn] {
	display: flex;
	flex-direction: column;
	gap: 10px;

	margin-bottom: 20px;

	font-style: normal;

	font-size: 1.25rem;
	text-align: center;
}

/* address */
.address[b-vm3ajmxqnn] {
}
.address__content[b-vm3ajmxqnn] {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.address__title[b-vm3ajmxqnn] {
	color: var(--colors-text-main);
}
.address__city[b-vm3ajmxqnn] {
	margin-bottom: 30px;

	font-size: 1.5rem;
	font-weight: 500;

	text-align: center;
}
.address address[b-vm3ajmxqnn] {
	display: grid;
	grid-template-columns: repeat(3, minmax(140px, 220px));
	gap: 60px;

	width: 100%;
	max-width: 800px;
	margin-inline: auto;

	justify-items: center;
	align-items: center;
	text-align: center;

	margin-bottom: 105px;

	font-style: normal;

	@media (max-width: 576px) {
		grid-template-columns: 1fr;
		gap: 30px;

		margin-bottom: 40px;[b-vm3ajmxqnn]
	}
}
.address address a[b-vm3ajmxqnn] {
	text-decoration: underline;
	text-underline-offset: 4px;
}
.address address a:hover[b-vm3ajmxqnn] {
	text-decoration-thickness: 2px;
}

/* карта: на мобильных без зума — только просмотр, по тапу «Открыть карту» откроется в 2GIS/вкладке */
.address__map[b-vm3ajmxqnn] {
	position: relative;
	width: 100%;
	margin-top: 0;
	border-radius: var(--radii);
	overflow: hidden;
}

.address__map-iframe[b-vm3ajmxqnn] {
	display: block;
	width: 100%;
	height: 945px;
	border: 0;
}

@media (max-width: 768px) {
	.address__map[b-vm3ajmxqnn] {
		/* на мобильных карта не реагирует на тап/зум — страница скроллится нормально */
		-webkit-touch-callout: none;
		touch-action: pan-y;
	}

	.address__map-iframe[b-vm3ajmxqnn] {
		height: 320px;
		pointer-events: none;
	}

	.address__map-open[b-vm3ajmxqnn] {
		position: absolute;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1;
		font-size: 1.125rem;
		font-weight: 500;
		color: var(--colors-primary);
		background: rgba(0, 0, 0, 0.35);
		text-decoration: none;
	}

	.address__map-open:hover[b-vm3ajmxqnn],
	.address__map-open:focus[b-vm3ajmxqnn] {
		background: rgba(0, 0, 0, 0.5);
		color: var(--colors-primary);
	}
}

@media (min-width: 769px) {
	.address__map-open[b-vm3ajmxqnn] {
		display: none;
	}
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Page-specific styles (from home.css). Variables in common.css. */

.showcase.showcase--main[b-abtscon96j] {
	position: relative;
	width: 100%;

	aspect-ratio: 1.8/1;
	max-height: calc(100dvh - 77px);

	min-height: 400px;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 200px;

	padding: 0 15px;

	margin-bottom: 70px;

	@media (max-height: 1066px) {
		height: auto;[b-abtscon96j]
	}

	@media (max-width: 1300px) {
		gap: 50px;

		height: auto;
		aspect-ratio: 1.8/1;[b-abtscon96j]
	}

	/* Мобильный hero: без обрезки текста (overflow + flex center) и без лишнего смещения */
	@media (max-width: 768px) {
		aspect-ratio: unset;
		min-height: 0;
		max-height: none;
		overflow: visible;
		gap: clamp(16px, 4vw, 24px);
		padding: max(24px, env(safe-area-inset-top, 0px)) 16px max(32px, env(safe-area-inset-bottom, 0px));
		justify-content: center;
		align-items: stretch;[b-abtscon96j]
	}

	@media (max-width: 576px) {
		padding-left: max(12px, env(safe-area-inset-left, 0px));
		padding-right: max(12px, env(safe-area-inset-right, 0px));[b-abtscon96j]
	}
}
.showcase.showcase--main .showcase__title[b-abtscon96j] {
	margin-bottom: 0;
	color: var(--colors-primary);
}
.showcase.showcase--main .showcase__subtitle[b-abtscon96j] {
	font-size: clamp(1.125rem, 0.577vw + 0.995rem, 1.5rem);
	font-weight: 500;
	text-align: center;
}

@media (max-width: 768px) {
	.showcase.showcase--main .showcase__title[b-abtscon96j] {
		font-size: clamp(1.125rem, 3.2vw + 0.85rem, 1.75rem);
		line-height: 1.25;
		max-width: 100%;
		padding: 0 2px;
		text-wrap: balance;
	}
	.showcase.showcase--main .showcase__subtitle[b-abtscon96j] {
		max-width: 100%;
		padding: 0 2px;
	}
}
/* .showcase__text — стили для кнопки на главной перенесены в common.css (a.showcase__text) */
.showcase.showcase--main .showcase__picture[b-abtscon96j] {
	position: absolute;
	inset: 0;

	z-index: -1;
}
.showcase.showcase--main .showcase__image[b-abtscon96j] {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.showcase.showcase--main .showcase__header[b-abtscon96j] {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;

	color: var(--colors-primary);
	text-shadow: var(--shadow-text);
}

@media (max-width: 768px) {
	.showcase.showcase--main .showcase__header[b-abtscon96j] {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		align-items: center;
	}
}

.showcase.showcase--main .showcase__actions[b-abtscon96j] {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	z-index: 1;
	width: 100%;
	max-width: 960px;
	padding: 0 12px;
}

@media (max-width: 768px) {
	.showcase.showcase--main .showcase__actions[b-abtscon96j] {
		max-width: 100%;
		min-width: 0;
		padding: 0;
		align-items: stretch;
	}
}

.showcase.showcase--main .showcase__category-chips[b-abtscon96j] {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 0.75rem;
}

@media (max-width: 768px) {
	.showcase.showcase--main .showcase__category-chips[b-abtscon96j] {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		justify-content: center;
		align-content: center;
		row-gap: 0.5rem;
		column-gap: 0.5rem;
	}
}

/* a.showcase__category-chip — стили перенесены в common.css (NavLink) */

/* list-about */
.list-about[b-abtscon96j] {
}
.list-about__grid[b-abtscon96j] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 335px));
	justify-content: center;
	gap: 50px 100px;

	@media (max-width: 992px) {
		grid-template-columns: repeat(2, 1fr);[b-abtscon96j]
	}
	@media (max-width: 576px) {
		grid-template-columns: 1fr;[b-abtscon96j]
	}
}
.list-about__title[b-abtscon96j] {
	color: var(--colors-tertiary);
}
.card.card--about[b-abtscon96j] {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.card.card--about img[b-abtscon96j] {
	margin-bottom: 20px;
}
.card.card--about p[b-abtscon96j] {
	font-size: 1.25rem;
	text-align: center;
}
.card.card--about p:not(:last-child)[b-abtscon96j] {
	margin-bottom: 10px;
}

/* main products */
.main-products[b-abtscon96j] {
}
.main-products__grid[b-abtscon96j] {
	display: flex;
	flex-direction: column;
	gap: 70px;

	max-width: 1140px;
	margin: 0 auto;

	@media (max-width: 992px) {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;[b-abtscon96j]
	}
	@media (max-width: 576px) {
		display: grid;
		grid-template-columns: 1fr;
		gap: 50px;[b-abtscon96j]
	}
}
.card.card--prod-main[b-abtscon96j] {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 35px;

	&:nth-child(even) {
		.card__text-block {
			order: -1;
			text-align: right;
		}
	}

	@media (max-width: 992px) {
		flex-direction: column;
		gap: 10px;

		&:nth-child(even)[b-abtscon96j] {
			.card__text-block {
				order: 1;
				text-align: left;
			}
		}
	}
}
.card.card--prod-main .card__image-wrapper[b-abtscon96j] {
	flex: 1;
	min-width: 0;
}
.card.card--prod-main .card__text-block[b-abtscon96j] {
	flex: 1;
	min-width: 0;
}
@media (max-width: 992px) {
	/* На мобилке задаём высоту блоку с фото (aspect-ratio), иначе flex даёт 0 */
	.card.card--prod-main .card__image-wrapper[b-abtscon96j] {
		position: relative;
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	.card.card--prod-main .card__image-inner[b-abtscon96j] {
		position: absolute;
		inset: 0;
		height: 100%;
		width: 100%;
	}
}

/* Ссылка поверх фото — клик ведёт на карточку товара */
.card.card--prod-main .card__image-link[b-abtscon96j] {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.card.card--prod-main .card__title-link[b-abtscon96j] {
	text-decoration: none;
	color: inherit;
	display: block;
}
.card.card--prod-main .card__title-link:hover .card__title[b-abtscon96j] {
	color: var(--colors-tertiary);
}

/* Рамка без фона; высота прямоугольника = высоте блока с названием/описанием/кнопкой */
.card.card--prod-main .card__image-wrapper[b-abtscon96j] {
	position: relative;
	padding: 12px;
	border: 1px solid var(--colors-text-highlight);
	border-radius: var(--radii);
	display: flex;
	min-height: 0;
}
.card.card--prod-main .card__image-inner[b-abtscon96j] {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	border-radius: calc(var(--radii) - 4px);
	padding: 16px;
}
.card.card--prod-main .card__image-wrapper .card__image[b-abtscon96j] {
	position: absolute;
	inset: 16px;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	object-fit: contain;
	display: block;
}
.card__text-block[b-abtscon96j] {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	text-align: left;
}
.card.card--prod-main .card__title[b-abtscon96j] {
	margin-bottom: 20px;

	font-size: clamp(1.125rem, 1.731vw + 0.736rem, 2.25rem);
	font-weight: 500;
	color: var(--colors-text-highlight);
	line-height: 1.21;

	@media (max-width: 576px) {
		margin-bottom: 10px;[b-abtscon96j]
	}
}
.card.card--prod-main .card__text[b-abtscon96j] {
	margin-bottom: 40px;

	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;

	max-width: 100%;
	word-break: break-word;

	@media (max-width: 576px) {
		margin-bottom: 20px;[b-abtscon96j]
	}
}

/* promo */
.promo[b-abtscon96j] {
}
.video-embed[b-abtscon96j] {
	position: relative;
	width: 100%;
	max-width: 1280px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	border: 0;
	overflow: hidden;
	border-radius: 12px;
}

.video-embed .video-content__iframe[b-abtscon96j] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

/* massage */
.massage[b-abtscon96j] {
	position: relative;

	width: 100%;
	aspect-ratio: 1.7/1;
	min-height: 350px;
	overflow: hidden;

	padding: 123px 0;

	@media (max-width: 767px) {
		padding: 40px 0;[b-abtscon96j]
	}
}
.massage[b-abtscon96j]::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-color: var(--colors-tertiary);
}
.massage__bg[b-abtscon96j] {
	position: absolute;
	inset: 0;
	z-index: -1;

	display: block;
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;
}
.massage__content[b-abtscon96j] {
	max-width: 965px;
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	align-items: center;
}
.massage__title[b-abtscon96j] {
	max-width: 690px;

	margin-bottom: 20px;
	text-align: center;

	color: var(--colors-primary);
}
.massage__subtitle[b-abtscon96j] {
	margin-bottom: 50px;

	font-size: clamp(1.125rem, 0.577vw + 0.995rem, 1.5rem);
	font-weight: 500;
	color: var(--colors-primary);
	text-align: center;

	@media (max-width: 576px) {
		margin-bottom: 20px;[b-abtscon96j]
	}
}
.massage__btn[b-abtscon96j] {
	padding: 10px 15px;

	font-size: clamp(1.5rem, 0.385vw + 1.413rem, 1.75rem);
	font-weight: 500;
	color: var(--colors-tertiary);

	background-color: var(--colors-primary);
	border-radius: var(--radii);
}

/* blog advices */
.blog-advices[b-abtscon96j] {
}
.blog-advices__title[b-abtscon96j] {
	color: var(--colors-tertiary);
}
.blog-advices__grid[b-abtscon96j] {
	max-width: 1210px;
	margin: 0 auto;

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	justify-content: center;

	@media (max-width: 768px) {
		grid-template-columns: repeat(2, 1fr);[b-abtscon96j]
	}
	@media (max-width: 576px) {
		grid-template-columns: 1fr;[b-abtscon96j]
	}
}
.card.card--blog[b-abtscon96j] {
	display: flex;
	flex-direction: column;
	gap: 10px;

	font-size: clamp(1.125rem, 0.192vw + 1.082rem, 1.25rem);
	line-height: 1.3;
}
.card.card--blog .card__image[b-abtscon96j] {
	width: 100%;
	border-radius: 16px;
}
.card.card--blog .card__title[b-abtscon96j] {
	font-weight: 300;
	font-size: clamp(1.125rem, 0.192vw + 1.082rem, 1.25rem);

	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;

	max-width: 100%;
	word-break: break-word;
}
.card.card--blog .card__date[b-abtscon96j] {
	display: flex;
	align-items: center;
	gap: 5px;
}
.card.card--blog time[b-abtscon96j] {
	font-weight: 400;
}

/* testimonials on home */
.section.testimonials .swiper[b-abtscon96j] {
	overflow: hidden;
}
.section.testimonials .swiper-slide[b-abtscon96j] {
	display: flex;
	height: auto;
}

.section.testimonials.testimonials--no-date .testimonial header[b-abtscon96j] {
	justify-content: flex-start;
}
.section.testimonials.testimonials--no-date .testimonial blockquote p + p[b-abtscon96j] {
	margin-top: 0.65em;
}

/* faq */
.faq[b-abtscon96j] {
}
.faq__content[b-abtscon96j] {
	display: flex;
	gap: 126px;

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 70px;[b-abtscon96j]
	}
}
.faq__title[b-abtscon96j] {
	margin-bottom: 3px;
	color: var(--colors-text-main);
	text-align: left;
}
.faq__subtitle[b-abtscon96j] {
	font-size: 1.5rem;
	color: var(--colors-text-main);
}

.faq .accordion[b-abtscon96j] {
	max-width: 818px;
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* Контейнер карточки логина */
.login-card[b-iuc8ln9xus] {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

/* Фирменная кнопка Skinhaptics */
.btn-luxury[b-iuc8ln9xus] {
    border-radius: 0 !important; /* Строгие квадратные формы */
    letter-spacing: 0.2rem !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    transition: all 0.4s ease !important;
}

    .btn-luxury:hover[b-iuc8ln9xus] {
        background-color: #333 !important;
        transform: translateY(-2px);
    }

/* Подзаголовки в стиле Hero */
.luxury-subtitle[b-iuc8ln9xus] {
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #888;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
}

/* Оформление списка заказов в профиле */
.order-card[b-iuc8ln9xus] {
    border: 1px solid #eee !important;
    border-radius: 0 !important;
    transition: border-color 0.3s ease;
}

    .order-card:hover[b-iuc8ln9xus] {
        border-color: #1a1a1a !important;
    }

/* Статусы заказов (тонкие шрифты) */
.mud-chip-text[b-iuc8ln9xus] {
    font-size: 0.7rem !important;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Детали аккаунта */
.account-info-box[b-iuc8ln9xus] {
    border-left: 2px solid #1a1a1a;
    padding-left: 20px;
}
/* /Components/Pages/ProductDetails.razor.rz.scp.css */
/* Page-specific styles (from product.css). Variables in common.css. */

/* product */
.product[b-8u7vzi1ghy] {
	padding-top: 45px;

	.btn-back {
		margin-bottom: 45px;
	}

	.accordion[b-8u7vzi1ghy] {
		gap: 25px;
	}
	.accordion__item-btn[b-8u7vzi1ghy] {
		font-size: 1.25rem;
		font-weight: 300;
	}
}

.product__content[b-8u7vzi1ghy] {
	display: grid;
	grid-template-columns: minmax(300px, 670px) minmax(50%, 1fr);
	gap: 70px;

	@media (max-width: 992px) {
		grid-template-columns: 1fr;[b-8u7vzi1ghy]
	}
}
.product__info-title[b-8u7vzi1ghy],
.product__info-price[b-8u7vzi1ghy] {
	margin-bottom: 20px;
	font-size: clamp(1.75rem, 1.923vw + 1.317rem, 3rem);
	font-weight: 700;
}
.product__info-title[b-8u7vzi1ghy] {
	margin-bottom: 10px;
}
.product__info-price[b-8u7vzi1ghy] {
	display: block;
	margin-bottom: 8px;
	color: var(--colors-text-highlight);
}
.product__info-volume[b-8u7vzi1ghy] {
	margin: 0 0 20px 0;
	font-size: 0.95rem;
	font-weight: 300;
	color: var(--colors-tertiary);
}
.product__info-desc[b-8u7vzi1ghy] {
	margin-bottom: 12px;
	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);
	font-weight: 300;
}
.product__info-line[b-8u7vzi1ghy] {
	margin: 0 0 8px 0;
	font-size: 0.95rem;
	font-weight: 300;
	color: var(--colors-tertiary);
}
.product__info-line:last-of-type[b-8u7vzi1ghy] {
	margin-bottom: 40px;
}
.product__actions-row[b-8u7vzi1ghy] {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.product__actions-row .add-to-wishlist[b-8u7vzi1ghy] {
	padding: 8px;
}
.product__quantity[b-8u7vzi1ghy] {
	display: flex;
	align-items: stretch;
	gap: 35px;

	margin-bottom: 35px;

	.add-to-cart {
		height: auto;
	}
}

.product__gallery[b-8u7vzi1ghy] {
	min-width: 0;
}

/* gallery */
.product-gallery[b-8u7vzi1ghy] {
	max-width: 600px;
	margin: 0 auto;

	padding: 0;

	position: relative;
}

.product-gallery__main[b-8u7vzi1ghy] {
	margin: 0;

	padding: 0;
}

.product-gallery__main .swiper-slide[b-8u7vzi1ghy] {
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-gallery__main .swiper-slide img[b-8u7vzi1ghy] {
	width: 100%;
	max-height: 100%;
	height: auto;
	object-fit: contain;
	background: #f3ebe6;
	border-radius: 8px;
}

.product-gallery__thumbs[b-8u7vzi1ghy] {
	margin: 0 auto;
	padding: 0;

	transform: translateY(calc(-100% - 36px));

	margin-bottom: -126px;
}

.product-gallery__thumbs .swiper-wrapper[b-8u7vzi1ghy] {
	justify-content: center;
}
.product-gallery__thumbs .swiper-slide[b-8u7vzi1ghy] {
	cursor: pointer;
	opacity: 0.6;
	transition: 0.3s ease;
	border-radius: 8px;
}

.product-gallery__thumbs .swiper-slide img[b-8u7vzi1ghy] {
	object-fit: contain;
	background: #f3ebe6;
	border-radius: 8px;

	width: 100px;
	height: 90px;

	border: 1px solid var(--colors-text-main);
}

.product-gallery__thumbs .swiper-slide-thumb-active[b-8u7vzi1ghy] {
	opacity: 1;
}

/* catalog */
.catalog.catalog--related .catalog__title[b-8u7vzi1ghy] {
	font-size: clamp(1.375rem, 0.577vw + 1.245rem, 1.75rem);
	font-weight: 500;
	color: var(--colors-text-main);
}
/* /Components/Pages/Profile.razor.rz.scp.css */
/* Profile / account — aligned with common.css tokens */

.history__content[b-oh8l9anmhk] {
	min-height: 40dvh;
	font-size: 1.125rem;
	line-height: 1.5;
}

.user-data[b-oh8l9anmhk] {
	padding-top: 70px;
	width: 100%;
	max-width: min(960px, 100%);
	margin-inline: auto;
}

.user-data__content[b-oh8l9anmhk] {
	width: 100%;
}

.user-data__controls[b-oh8l9anmhk] {
	display: flex;
	align-items: center;
	gap: 1rem 1.25rem;
	flex-wrap: wrap;
}

.user-data__logout-form[b-oh8l9anmhk] {
	display: inline;
	margin: 0;
}

/* Кнопки — в духе акцентов сайта (sage / контраст), крупнее для тач-целей */
.user-data__btn[b-oh8l9anmhk] {
	font-family: var(--font-primary);
	font-size: clamp(1.0625rem, 0.45vw + 0.98rem, 1.25rem);
	font-weight: 600;
	padding: 16px 32px;
	min-height: 56px;
	min-width: 10rem;
	border-radius: var(--radii-lg);
	border: 2px solid transparent;
	cursor: pointer;
	line-height: 1.2;
	letter-spacing: 0.02em;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.user-data__btn--save[b-oh8l9anmhk] {
	color: var(--colors-primary);
	background: var(--colors-text-highlight);
	border-color: var(--colors-text-highlight);
	box-shadow: 0 4px 18px rgba(163, 169, 139, 0.4);
}

.user-data__btn--save:hover:not(:disabled)[b-oh8l9anmhk] {
	background: var(--colors-text-main);
	border-color: var(--colors-text-main);
	color: var(--colors-primary);
	box-shadow: 0 6px 24px rgba(32, 25, 15, 0.18);
	transform: translateY(-1px);
}

.user-data__btn--save:disabled[b-oh8l9anmhk] {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.user-data__btn--logout[b-oh8l9anmhk] {
	color: var(--colors-text-danger);
	background: transparent;
	border-color: var(--colors-text-danger);
}

.user-data__btn--logout:hover[b-oh8l9anmhk] {
	color: var(--colors-primary);
	background: var(--colors-text-danger);
	border-color: var(--colors-text-danger);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(241, 70, 53, 0.25);
}

.user-data__feedback[b-oh8l9anmhk] {
	margin: 0 0 1.25rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	line-height: 1.45;
	color: var(--colors-text-main);
	background: var(--colors-secondary);
	border-radius: var(--radii);
	border: 1px solid rgba(163, 169, 139, 0.35);
}

/* Form card — same family as Checkout summary / site panels */
.user-data__panel[b-oh8l9anmhk] {
	width: 100%;
	margin-bottom: 2.5rem;
	padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 4vw, 2.75rem);
	background: var(--colors-secondary);
	border-radius: var(--radii-lg);
	border: 1px solid rgba(32, 25, 15, 0.08);
	box-shadow: 0 8px 32px rgba(32, 25, 15, 0.06);
}

.registration-form[b-oh8l9anmhk] {
	max-width: none;
	margin: 0;
	padding: 0;
}

.registration-form__hint[b-oh8l9anmhk] {
	margin: 0.4rem 0 0;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--colors-text-main);
	opacity: 0.78;
}

.registration-form__grid[b-oh8l9anmhk] {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
	margin-bottom: 0;
}

.registration-form__group[b-oh8l9anmhk] {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.registration-form__group--full[b-oh8l9anmhk] {
	grid-column: 1 / -1;
}

.registration-form__label[b-oh8l9anmhk] {
	font-family: var(--font-secondary);
	font-size: clamp(1rem, 0.6vw + 0.9rem, 1.2rem);
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--colors-text-main);
}

.registration-form__input[b-oh8l9anmhk] {
	font-family: var(--font-primary);
	font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
	font-weight: 400;
	line-height: 1.45;
	padding: 20px 22px;
	min-height: 64px;
	width: 100%;
	border: 1px solid rgba(163, 169, 139, 0.45);
	border-radius: var(--radii-lg);
	background: var(--colors-primary);
	color: var(--colors-text-main);
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}

/* Blazor InputText рендерит <input> — дублируем в ::deep, чтобы высота не съедалась */
[b-oh8l9anmhk] input.registration-form__input {
	min-height: 64px;
	padding: 20px 22px;
	line-height: 1.45;
}

.registration-form__input[b-oh8l9anmhk]::placeholder {
	color: var(--colors-text-highlight);
	opacity: 0.65;
}

.registration-form__input:hover[b-oh8l9anmhk] {
	border-color: rgba(163, 169, 139, 0.75);
}

.registration-form__input:focus[b-oh8l9anmhk] {
	border-color: var(--colors-text-highlight);
	box-shadow: 0 0 0 3px rgba(163, 169, 139, 0.25);
}

/* History block */
.user-data__history[b-oh8l9anmhk] {
	margin-top: clamp(2rem, 5vw, 3.5rem);
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
	border-top: 1px solid rgba(32, 25, 15, 0.1);
}

.user-data__history-title[b-oh8l9anmhk] {
	margin-bottom: 1.5rem;
	font-family: var(--font-secondary);
	font-size: clamp(1.35rem, 2vw + 0.85rem, 2rem);
	font-weight: 700;
	color: var(--colors-text-main);
	text-align: left;
	letter-spacing: -0.02em;
}

.order-history__list[b-oh8l9anmhk] {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.order-history__card[b-oh8l9anmhk] {
	padding: 1.25rem 1.5rem;
	background: var(--colors-primary);
	border: 1px solid rgba(163, 169, 139, 0.35);
	border-radius: var(--radii-lg);
	box-shadow: 0 4px 20px rgba(32, 25, 15, 0.05);
}

.order-history__card p[b-oh8l9anmhk] {
	margin: 0.35rem 0;
}

.order-history__card p:first-child[b-oh8l9anmhk] {
	margin-top: 0;
}

.order-history__headline[b-oh8l9anmhk] {
	margin: 0 0 0.5rem;
	line-height: 1.45;
}

.order-history__meta[b-oh8l9anmhk] {
	font-weight: 400;
	color: var(--colors-text-main);
	opacity: 0.88;
}

.order-history__status[b-oh8l9anmhk] {
	font-weight: 600;
	white-space: nowrap;
}

.order-history__status--new[b-oh8l9anmhk],
.order-history__status--pending[b-oh8l9anmhk] {
	color: var(--colors-text-highlight);
}

.order-history__status--paid[b-oh8l9anmhk],
.order-history__status--shipped[b-oh8l9anmhk],
.order-history__status--completed[b-oh8l9anmhk] {
	color: rgba(76, 110, 72, 0.95);
}

.order-history__status--canceled[b-oh8l9anmhk] {
	color: var(--colors-text-danger);
}

.order-history__actions[b-oh8l9anmhk] {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 1rem;
	align-items: center;
}

.order-history__btn-pay[b-oh8l9anmhk] {
	text-decoration: none;
	text-align: center;
	min-width: 0;
	font-size: clamp(0.9375rem, 0.35vw + 0.88rem, 1.0625rem);
	padding: 12px 20px;
	min-height: 48px;
}

.order-history__btn-cancel[b-oh8l9anmhk] {
	font-size: clamp(0.9375rem, 0.35vw + 0.88rem, 1.0625rem);
	padding: 12px 20px;
	min-height: 48px;
	min-width: 0;
}

@media (max-width: 900px) {
	.registration-form__grid[b-oh8l9anmhk] {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.user-data__panel[b-oh8l9anmhk] {
		padding: 1.15rem 1rem;
		border-radius: var(--radii);
	}

	.user-data__controls[b-oh8l9anmhk] {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.user-data__logout-form[b-oh8l9anmhk] {
		display: block;
		width: 100%;
	}

	.user-data__btn[b-oh8l9anmhk] {
		width: 100%;
		min-width: 0;
	}
}
/* /Components/Pages/Training.razor.rz.scp.css */
/* Page-specific styles (from training.css). Variables in common.css. */

/* testimonials on training page */
.testimonials--training .section__title[b-y9fcwsen2y] {
	margin-bottom: 35px;
	color: var(--colors-tertiary);
}

/* training */
.program[b-y9fcwsen2y] {
}
.program__title[b-y9fcwsen2y] {
	color: var(--colors-tertiary);
}
.program__slider[b-y9fcwsen2y] {
	margin-bottom: 120px;

	@media (max-width: 576px) {
		margin-bottom: 50px;[b-y9fcwsen2y]
	}
}
.program__cert[b-y9fcwsen2y] {
	display: flex;
	flex-direction: column;
	align-items: center;

	text-align: center;

	margin-bottom: 120px;

	@media (max-width: 576px) {
		margin-bottom: 50px;[b-y9fcwsen2y]
	}
}
.program__cert-image[b-y9fcwsen2y] {
	margin-bottom: 15px;
}
.program__cert-title[b-y9fcwsen2y] {
	margin-bottom: 20px;

	font-size: clamp(1.25rem, 0.385vw + 1.163rem, 1.5rem);
	font-weight: 500;
}
.program__cert-text[b-y9fcwsen2y] {
	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);
}

/* school */
.program__school[b-y9fcwsen2y] {
	display: grid;
	grid-template-columns: minmax(300px, 670px) minmax(40%, 1fr);
	align-items: center;
	gap: 70px;

	@media (max-width: 992px) {
		grid-template-columns: 1fr;[b-y9fcwsen2y]
	}
	@media (max-width: 576px) {
		gap: 20px;[b-y9fcwsen2y]
	}
}
.program__school-image[b-y9fcwsen2y] {
	border-radius: 8px;
	object-fit: cover;
	min-width: 0;
}
.program__school-text-block[b-y9fcwsen2y] {
	word-wrap: break-word;
}

.program__school-text-block span[b-y9fcwsen2y],
.program__school-text-block a[b-y9fcwsen2y] {
	color: var(--colors-tertiary);
}
.program__school-text-block-title[b-y9fcwsen2y] {
	margin-bottom: 20px;

	font-size: clamp(1.375rem, 1.346vw + 1.072rem, 2.25rem);
	font-weight: 500;
}
.program__school-text-block p[b-y9fcwsen2y] {
	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.25rem);
}

/* card */
.card.card--program[b-y9fcwsen2y] {
	display: flex;
	flex-direction: column;
	gap: 35px;

	height: 100%;

	@media (max-width: 768px) {
		gap: 15px;[b-y9fcwsen2y]
	}
}
.card.card--program .card__image[b-y9fcwsen2y] {
	border-radius: var(--radii);
}
.card.card--program .card__title[b-y9fcwsen2y] {
	flex-grow: 1;
	font-size: clamp(1.25rem, 1.538vw + 0.904rem, 2.25rem);
	font-weight: 500;
	line-height: 1.21;
	text-align: center;
}
.card.card--program .card__btn[b-y9fcwsen2y] {
	text-align: center;
}

/* testimonials */
.testimonials--training .section__title[b-y9fcwsen2y] {
	margin-bottom: 35px;
	color: var(--colors-tertiary);
}
/* /Components/Pages/TrainingMassageDetail.razor.rz.scp.css */
.training-massage-detail[b-nj3fow4f5r] {
	padding-bottom: 100px;
}

.training-massage-detail__back[b-nj3fow4f5r] {
	margin-bottom: 32px;
}

.training-massage-detail__back-link[b-nj3fow4f5r] {
	color: var(--colors-tertiary);
	font-size: clamp(1rem, 0.385vw + 0.913rem, 1.125rem);
	font-weight: 500;
	text-decoration: none;
}

.training-massage-detail__back-link:hover[b-nj3fow4f5r] {
	text-decoration: underline;
}

/* Читаемая колонка текста */
.training-massage-detail__article[b-nj3fow4f5r] {
	max-width: 720px;
	margin: 0 auto;
	padding: 8px 0 0;
}

.training-massage-detail__doc-title[b-nj3fow4f5r] {
	margin: 0 0 28px;
	color: var(--colors-tertiary);
	font-family: var(--font-secondary, 'Playfair Display', serif);
	font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
	font-weight: 500;
	line-height: 1.3;
}

.training-massage-detail__section-title[b-nj3fow4f5r] {
	margin: 40px 0 18px;
	color: var(--colors-tertiary);
	font-size: clamp(1.125rem, 0.8vw + 1rem, 1.5rem);
	font-weight: 500;
	line-height: 1.35;
}

.training-massage-detail__section-title:first-of-type[b-nj3fow4f5r] {
	margin-top: 0;
}

.training-massage-detail__p[b-nj3fow4f5r] {
	margin: 0 0 1.35em;
	color: #333333;
	font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
	font-weight: 400;
	line-height: 1.7;
}

.training-massage-detail__p:last-child[b-nj3fow4f5r] {
	margin-bottom: 0;
}

/*
 * Абзац перед списком (часто длинный, как в Word) — тот же цвет и кегль, что и основной текст.
 * Раньше задавался акцентный цвет и крупнее шрифт → весь блок выглядел «не как в Word».
 */
.training-massage-detail__list-intro[b-nj3fow4f5r] {
	margin: 0 0 0.35em 0;
	padding: 0;
	color: #333333;
	font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
	font-weight: 400;
	line-height: 1.7;
}

/*
 * Списки из MarkupString не получают scope-атрибут изоляции CSS Blazor — без ::deep
 * правила не доходят до <ul>/<li>, остаётся common.css: ul { list-style: none }.
 */
.training-massage-detail__article[b-nj3fow4f5r]  ul.training-massage-detail__list {
	list-style: disc outside;
	margin: 0 0 1em 0;
	padding: 0 0 0 1.27em;
	color: #333333;
	font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
	line-height: 1.35;
}

.training-massage-detail__article[b-nj3fow4f5r]  ol.training-massage-detail__list {
	list-style: decimal outside;
	margin: 0 0 1em 0;
	padding: 0 0 0 1.27em;
	color: #333333;
	font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
	line-height: 1.35;
}

.training-massage-detail__article[b-nj3fow4f5r]  ul.training-massage-detail__list > li,
.training-massage-detail__article[b-nj3fow4f5r]  ol.training-massage-detail__list > li {
	margin: 0 0 0.45em 0;
	padding-left: 0.35em;
	display: list-item;
}

.training-massage-detail__article[b-nj3fow4f5r]  ul.training-massage-detail__list ul.training-massage-detail__list {
	margin-top: 0.25em;
	margin-bottom: 0.5em;
}

.training-massage-detail__article[b-nj3fow4f5r]  a.training-massage-detail__product-link {
	color: var(--colors-tertiary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.training-massage-detail__article[b-nj3fow4f5r]  a.training-massage-detail__product-link:hover {
	opacity: 0.88;
}

.training-massage-detail__accordion .accordion__item-body[b-nj3fow4f5r]  ul.training-massage-detail__list {
	margin: 0 0 0.85em 0;
	padding-left: 1.27em;
	list-style: disc outside;
	font-size: inherit;
	line-height: 1.35;
	color: inherit;
}

.training-massage-detail__accordion .accordion__item-body[b-nj3fow4f5r]  ol.training-massage-detail__list {
	margin: 0 0 0.85em 0;
	padding-left: 1.27em;
	list-style: decimal outside;
	font-size: inherit;
	line-height: 1.35;
	color: inherit;
}

.training-massage-detail__accordion .accordion__item-body[b-nj3fow4f5r]  ul.training-massage-detail__list > li,
.training-massage-detail__accordion .accordion__item-body[b-nj3fow4f5r]  ol.training-massage-detail__list > li {
	display: list-item;
	margin: 0 0 0.35em 0;
}

/* FAQ — как на главной: плюс в круге, разделители */
.training-massage-detail__accordion[b-nj3fow4f5r] {
	gap: 0;
	margin: 32px 0 40px;
}

.training-massage-detail__accordion .accordion__item[b-nj3fow4f5r] {
	border-bottom: 1px solid #eeeded;
}

.training-massage-detail__accordion .accordion__item:first-child[b-nj3fow4f5r] {
	border-top: 1px solid #eeeded;
}

.training-massage-detail__accordion .accordion__item-btn[b-nj3fow4f5r] {
	padding: 16px 0 14px;
	font-family: var(--font-primary);
	font-size: clamp(1rem, 0.35vw + 0.92rem, 1.125rem);
	font-weight: 500;
	color: #333333;
	line-height: 1.45;
}

.training-massage-detail__accordion .accordion__item-btn.active[b-nj3fow4f5r] {
	color: var(--colors-tertiary);
}

.training-massage-detail__accordion .accordion__item-btn[b-nj3fow4f5r]::after {
	color: var(--colors-primary);
	font-size: 28px;
	width: 36px;
	height: 36px;
}

.training-massage-detail__accordion .accordion__item-collapse[b-nj3fow4f5r] {
	font-size: clamp(0.9375rem, 0.25vw + 0.9rem, 1.0625rem);
	line-height: 1.65;
}

.training-massage-detail__accordion .accordion__item-body[b-nj3fow4f5r] {
	margin-bottom: 16px;
	color: #333333;
}

.training-massage-detail__accordion .accordion__item-body p[b-nj3fow4f5r] {
	margin: 0 0 1em;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.training-massage-detail__accordion .accordion__item-body p:last-child[b-nj3fow4f5r] {
	margin-bottom: 0;
}
