.fixed-buttons {
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 11;
	display: flex;
	gap: 10px;
	flex-direction: column;
}
.fixed-buttons.mobile { display: none; }
.fixed-button {
	display: flex;
	gap: 3px;
	align-items: center;
	max-width: max-content;
	margin-left: auto;
}
.fixed-buttons .svg-wrapper svg {
	position: absolute;
    width: 24px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	margin-left: 0;
}
.fixed-button-to-top { 
	opacity: 0; 
	pointer-events: none; 
	transition: opacity 0.2s ease;
}
body:has(.header.scrolled) .fixed-button-to-top {
	opacity: 1; 
	pointer-events: auto; 
}
.fixed-button-to-top .svg-wrapper {
	background-color: var(--accent-color);
}
.fixed-button-to-top .svg-wrapper svg {
	transform: translate(-50%, -50%) rotate(180deg);
}
.fixed-button-to-top:hover .svg-wrapper {
	background-color: var(--black-color);
}
.fixed-button-to-luna .svg-wrapper,
.fixed-button-to-luna span {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background-image: linear-gradient(
		259.84deg,
		#DD78C6 -155.18%,
		#1C0717 55.44%,
		#DD78C6 218.32%
	);

	color: var(--white-color);
}
.fixed-button-to-luna .svg-wrapper::before,
.fixed-button-to-luna span::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: linear-gradient(
		259.84deg,
		#1C0717 -155.18%,
		#DD78C6 55.44%,
		#1C0717 218.32%
	);
	opacity: 0;
	transition: opacity 300ms ease;
	pointer-events: none;
}
.fixed-button-to-luna:hover .svg-wrapper::before,
.fixed-button-to-luna:hover span::before {
	opacity: 1;
}
.fixed-button-to-luna span { 
	display: inline-block; 
}
.fixed-button-to-appointment .svg-wrapper,
.fixed-button-to-appointment span {
	background-color: var(--white-color);
	color: var(--accent-color);
}
.fixed-button-to-appointment:hover .svg-wrapper,
.fixed-button-to-appointment:hover span {
	background-color: var(--black-color); 
	color: var(--white-color);
}
.fixed-buttons .svg-wrapper {
	width: 56px;
	min-width: 56px;
	height: auto;
	max-height: 56px;
	aspect-ratio: 1;
	border-radius: 50%;
	position: relative;
}
.fixed-button .svg-wrapper svg path {
	fill: var(--white-color);
}
.fixed-button-to-appointment .svg-wrapper svg path {
	fill: var(--accent-color);
}
@media screen and (max-width:700px) {
	.fixed-buttons:not(.mobile) { display: none; }
	.fixed-buttons.mobile {
		display: flex;
		right: 16px;
		bottom: 16px;
		align-items: flex-end;
	}
	.fixed-buttons.mobile .fixed-buttons__close,
	.fixed-buttons.mobile .fixed-button__state {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}
	.fixed-buttons.mobile .fixed-buttons__overlay {
		position: fixed;
		inset: 0;
		z-index: 0;
		display: none;
		background: transparent;
	}
	.fixed-buttons.mobile:has(.fixed-button__state:checked) .fixed-buttons__overlay {
		display: block;
	}
	.fixed-buttons.mobile .fixed-button {
		position: relative;
		z-index: 1;
		gap: 3px;
	}
	.fixed-buttons.mobile .fixed-button__icon {
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}
	.fixed-buttons.mobile .fixed-button__label {
		min-height: 56px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		opacity: 0;
		max-width: 0;
		padding-inline: 0;
		overflow: hidden;
		white-space: nowrap;
		pointer-events: none;
		transform: translateX(12px);
		transition:
			max-width 240ms ease,
			padding-inline 240ms ease,
			opacity 200ms ease,
			transform 240ms ease;
	}
	.fixed-buttons.mobile .fixed-button__state:checked ~ .fixed-button__label {
		opacity: 1;
		max-width: 260px; 
		padding-inline: 18px;
		transform: translateX(0);
		pointer-events: auto;
	}
	.fixed-buttons.mobile .fixed-button-to-top .fixed-button__label {
		background-color: var(--accent-color);
		color: var(--white-color);
		border-radius: 999px;
	}
	.fixed-buttons.mobile .fixed-button-to-top .fixed-button__label:active {
		background-color: var(--black-color);
	}
	.fixed-buttons.mobile .fixed-button-to-luna .fixed-button__label {
		position: relative;
		overflow: hidden;
		isolation: isolate;
		border-radius: 999px;
		background-image: linear-gradient(
			259.84deg,
			#DD78C6 -155.18%,
			#1C0717 55.44%,
			#DD78C6 218.32%
		);
		color: var(--white-color);
	}
	.fixed-buttons.mobile .fixed-button-to-luna .fixed-button__label::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		background-image: linear-gradient(
			259.84deg,
			#1C0717 -155.18%,
			#DD78C6 55.44%,
			#1C0717 218.32%
		);
		opacity: 0;
		transition: opacity 300ms ease;
	}
	.fixed-buttons.mobile .fixed-button-to-luna .fixed-button__label:active::before {
		opacity: 1;
	}
	.fixed-buttons.mobile .fixed-button-to-appointment .fixed-button__label {
		background-color: var(--white-color);
		color: var(--accent-color);
		border-radius: 999px;
	}
	.fixed-buttons.mobile .fixed-button-to-appointment .fixed-button__label:active {
		background-color: var(--black-color);
		color: var(--white-color);
	}
}







section.hero {}
/* .hero__container { padding: 0 30px 40px; } */
.hero__bg {
	background-image: url('http://luna-wedding.ru/wp-content/uploads/2025/11/hero-bg-v2.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	position: relative;
}
.hero__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background-image: 
		linear-gradient(
			to right, 
			rgba(0, 0, 0, 0.2) 50%, 
			rgba(255, 255, 255, 0) 70%
		);
}
.hero__content {
	position: relative;
	padding: 146px 42px;
	margin-right: auto;
}
.hero__heading span { margin-bottom: 30px; }
.hero__heading { 
	display: grid;
	margin-bottom: 30px; 
	color: var(--white-color);
}
.hero__description {
	margin-bottom: 30px;
	color: var(--white-color);
	color: color-mix(in srgb, var(--white-color) 79%, transparent);
}
.hero__cta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero__button {}
.hero__slider { 
	overflow: visible; 
	transform-origin: center;
}
.hero__slider--pink { 
	background-color: var(--accent-color);
	transform: rotate(2deg) translateY(-40px) translateX(-5px);
 }
.hero__slider--black { 
	background-color: var(--black-color);
	transform: rotate(-2deg) translateY(-80px)  translateX(5px);
 }
.hero__slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	color: var(--white-color);
}
.hero__slider .swiper-wrapper { min-width: max-content; }
@media screen and (max-width: 900px) {
	.hero .hero__slider { display: none; }
}
@media screen and (max-width: 700px) {
	.hero__content { padding: 50px 30px; }
}
@media screen and (max-width: 600px) {
	.hero { 
		--hero-cta-offset-y: 160px; 
		--hero-cta-offset-x: 15px;
	}
	.hero__bg { background-position: right; }
	.hero__bg, .hero__bg::before { border-radius: 30px; }
	.hero__cta { 
		flex-direction: column;
		align-items: start;
		margin-bottom: calc(-1 * var(--hero-cta-offset-y));
        margin-left: calc(-1 * var(--hero-cta-offset-x));
        width: calc(100% + var(--hero-cta-offset-x) * 2);
	}
	.hero__cta a {
		max-width: unset;
		width: 100%;
		justify-content: center;
	}
	body .hero__cta .yButton.button {
		width: 100% !important;
		height: 55px !important;
	}
	.hero__content { 
		padding: 20px;
		padding-top: 150px;
	}
	.hero__container, .hero__bg { padding-bottom: calc(var(--hero-cta-offset-y) / 2); }
}




section.advantages {}
.advantages__container {}
.advantages__heading { 
	margin-inline: auto;
	margin-bottom: 40px;
	color: var(--black-color);
}
.advantages__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
.advantages__item { 
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 30px;
	background-color: var(--white-color);
	border-radius: 20px;
 }
.advantages__item-image {
	position: relative;
	width: 68px;
	height: 63px;
}
.advantages__item-image svg { position: absolute; }
.advantages__item-image svg:first-child {}
.advantages__item-image svg:last-child {
	top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
	max-width: 48px;
	max-height: 41px;
	width: 100%;
	height: 100%;
}
.advantages__item-title { color: var(--black-color); }
.advantages__item-description { color: color-mix(in srgb, var(--black-color) 56%, transparent);}
@media screen and (max-width: 900px) {
	.advantages__list { grid-template-columns: 1fr; }
}




section.about {}
.about__container {}
.about__content {
	display: grid; gap: 55px;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
}
.about__text-block {
	display: flex; gap: 40px;
	flex-direction: column;
}
.about__heading { 
	display: grid;
	line-height: 1.2;
	color: var(--black-color);
 }
.about__heading span { margin-bottom: 30px; }
.about__text { 
	color: color-mix(in srgb, var(--black-color) 93%, transparent);
	display: flex; gap: 25px;
	flex-direction: column
}
.about__text-part {}
.about svg { 
	display: block;
	width: 100%;
	max-width: 600px;
	max-height: 600px; 
	min-width: 0;
	height: auto;
}
.about__button {}
@media screen and (max-width: 1100px) {
	.about__content { grid-template-columns: 1fr; }
	.about__content > svg {
    	margin: 0 auto;
	}
}





section.dresses {}
.dresses__container {}
.dresses__content {}
.dresses__heading {
	margin-inline:  auto;
	margin-bottom: 40px;
	color: var(--black-color);
}
.dresses__list {
	display: grid; gap: 20px;
	grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
	grid-auto-rows: 1fr;
}
.dresses__item-wrapper {
	padding: 30px;
    border-radius: 20px;
    background-color: var(--white-color);
}
.dresses__item-link { height: fit-content; }
.dresses__item {}
.dresses__item-image-wrapper {
	border-radius: 20px;
    overflow: hidden;
}
.dresses__item-image {
	width: 100%;
    height: 100%;
    max-height: 443px;
    aspect-ratio: 368 / 443;
    transform: scale(1.2);
	transform-origin: center;
    transition: transform 0.4s ease;
    will-change: transform;
}
.dresses__item-wrapper:hover .dresses__item-image { transform: scale(1); }
.dresses__item-text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 30px;
}
.dresses__item-price {
	color: var(--black-color); 
	transition: color 0.2s ease;
	will-change: color;
}
.dresses__item-wrapper:hover .dresses__item-price { color: var(--accent-color); }
.dresses__item-description { color: color-mix(in srgb, var(--black-color) 56%, transparent);}
@media screen and (max-width: 1000px) {
	.dresses__list { grid-template-columns: 1fr; }
	.dresses__item {
		display: grid; gap: 30px;
    	grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 600px) {
	.dresses__item { grid-template-columns: 1fr; gap: 0; }
}



section.add-on {}
.add-on__contaiber {}
.add-on__content {}
.add-on__heading {
	margin-inline: auto;
	margin-bottom: 40px;
	color: var(--black-color);
}



section.recommendations {}
.recommendations__container {}
.recommendations__content {}
.recommendations__heading-wrapper { 
	text-align: center; 
	margin-bottom: 40px;
}
.recommendations__heading-wrapper h2 { 
	margin: 0 auto;
	margin-bottom: 20px;
}
.recommendations__heading-wrapper p {}



main.site-main:has(.tinv-wishlist-favorites) .tinv-header,
main.site-main:has(.tinv-wishlist-favorites) .social-buttons { display: none !important; }
main.site-main:has(.tinv-wishlist-favorites) .container { margin-bottom: 70px; }
main.site-main:has(.tinv-wishlist-favorites) .heading { margin-bottom: 30px; }




















































