/* /Components/Layout/MainLayout.razor.rz.scp.css */
wrapper[b-zl8o0fbkiw] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
header[b-zl8o0fbkiw] {
    display: grid;
    justify-content: center;
    margin-bottom: .5rem;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(to bottom, hsl(245 50% 10% / 0) 0%, hsl(245 50% 10% / 0.5) 100%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: hsl(300 50% 25% / 0.7) 0px 10px 26px 14px;
    border-top: 1px hsl(245 50% 50% / 0.2) solid;
    border-bottom: 1px hsl(245 50% 50% / 0.2) solid;
}
@media (max-width: 600px) {
    header[b-zl8o0fbkiw] {
    display: grid;
    justify-content: center;
    margin-bottom: .5rem;
    position: relative;
    flex-shrink: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    border: 0;
}
}
video[b-zl8o0fbkiw] {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}
header[b-zl8o0fbkiw] >  a {
    --color: #07bcff;
    font-family: 'FlemishScript', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: normal;
    color: #d3f2ff;
    text-shadow: 0 0 5px var(--color), 
        0 0 10px var(--color), 
        0 0 20px var(--color), 
        0 0 40px var(--color), 
        0 0 80px var(--color), 
        0 0 90px var(--color), 
        0 0 100px var(--color), 
        0 0 150px var(--color);
    display: inline-block;
    margin: 0 auto;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
main[b-zl8o0fbkiw] {
    display: block;
    width: clamp(400px, 75%, 1000px);
    margin: auto;
    position: relative;
    z-index: 10;
    flex: 1;
    overflow-y: visible;
}
footer[b-zl8o0fbkiw] {
    display: block;
    margin: 2rem 1rem;
    border-top: 1px solid hsl(0 100% 100% / 0.2);
    padding: 0.5rem 0;
    font-size: 10pt;
    color: hsl(0 0% 100% / 0.4);
    flex-shrink: 0;
    z-index: 10;
}
footer[b-zl8o0fbkiw] >  a {
    color: hsl(0 0% 40%);
    text-decoration: none;
}
footer[b-zl8o0fbkiw] >  a:hover {
    color: hsl(0 0% 80%);
}

@media (max-width: 600px) {
    main[b-zl8o0fbkiw],
    footer[b-zl8o0fbkiw] {
        width: 100%;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Hamburger button ─────────────────────────────── */
.hamburger[b-ofsnbwwuva] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 300;
    width: 42px;
    height: 42px;
    background: hsl(0 0% 0% / 0.6);
    border: 1px solid hsl(195 100% 52% / 0.4);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 0 10px hsl(195 100% 52% / 0.2);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.hamburger:hover[b-ofsnbwwuva],
.hamburger.is-open[b-ofsnbwwuva] {
    box-shadow: 0 0 16px hsl(195 100% 52% / 0.5), 0 0 30px hsl(195 100% 52% / 0.2);
    border-color: hsl(195 100% 52% / 0.75);
}

.hamburger span[b-ofsnbwwuva] {
    display: block;
    width: 20px;
    height: 2px;
    background: #07bcff;
    box-shadow: 0 0 6px #07bcff, 0 0 10px #07bcff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.is-open span:nth-child(1)[b-ofsnbwwuva] {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2)[b-ofsnbwwuva] {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3)[b-ofsnbwwuva] {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Overlay ──────────────────────────────────────── */
.nav-overlay[b-ofsnbwwuva] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 150;
}

/* ── Desktop nav links ────────────────────────────── */
.nav-links[b-ofsnbwwuva] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-bottom: .1rem;
    position: relative;
    z-index: 99;
    flex-shrink: 0;
}

.nav-links[b-ofsnbwwuva]  a {
    --neon: #07bcff;
    position: relative;
    color: hsl(0 0% 60%);
    text-decoration: none;
    padding: 0.3rem 0.9rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: color 0.25s, text-shadow 0.25s, border-color 0.25s;
}

.nav-links[b-ofsnbwwuva]  a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--neon, #07bcff);
    box-shadow: 0 0 6px var(--neon, #07bcff);
    transition: left 0.25s ease, right 0.25s ease;
}

.nav-links[b-ofsnbwwuva]  a:hover,
.nav-links[b-ofsnbwwuva]  a.active {
    color: #d3f2ff;
    text-shadow: 0 0 6px #07bcff, 0 0 14px #07bcff;
    /*border-color: hsl(195 100% 52% / 0.2);*/
}

.nav-links[b-ofsnbwwuva]  a:hover::after,
.nav-links[b-ofsnbwwuva]  a.active::after {
    left: 12%;
    right: 12%;
}

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 600px) {
    .hamburger[b-ofsnbwwuva] {
        display: flex;
    }

    .nav-links[b-ofsnbwwuva] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 4.5rem 0 1.5rem;
        background: rgba(4, 6, 12, 0.3);
        border-bottom: 1px solid hsl(195 100% 52% / 0.3);
        box-shadow: 0 6px 40px hsl(195 100% 52% / 0.12);
        z-index: 200;
        margin-bottom: 0;
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .nav-links.is-open[b-ofsnbwwuva] {
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-links[b-ofsnbwwuva]  a {
        font-size: 1rem;
        letter-spacing: 0.15em;
        padding: 0.85rem 2rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid hsl(0 0% 100% / 0.05);
        text-align: center;
    }

    .nav-links[b-ofsnbwwuva]  a::after {
        display: none;
    }

    .nav-links[b-ofsnbwwuva]  a:hover,
    .nav-links[b-ofsnbwwuva]  a.active {
        border-color: transparent;
        border-bottom-color: hsl(0 0% 100% / 0.05);
        background: hsl(195 100% 52% / 0.15);
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-d1evn6qii3],
.components-reconnect-repeated-attempt-visible[b-d1evn6qii3],
.components-reconnect-failed-visible[b-d1evn6qii3],
.components-pause-visible[b-d1evn6qii3],
.components-resume-failed-visible[b-d1evn6qii3],
.components-rejoining-animation[b-d1evn6qii3] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-retrying[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-failed[b-d1evn6qii3],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-d1evn6qii3] {
    display: block;
}


#components-reconnect-modal[b-d1evn6qii3] {
    --border-color: 181;
    --color: rgba(0, 0, 0, 0.7);
    font-family: 'Amaranth', sans-serif;
    background-color: hsl(0 50% 35% / 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(8px);
    border-top: 1px hsl(var(--border-color) 50% 100% / 0.25) solid;
    border-right: 1px hsl(var(--border-color) 50% 100% / 0.05) solid;
    border-left: 1px hsl(var(--border-color) 50% 100% / 0.05) solid;
    border-bottom: 1px hsl(var(--border-color) 50% 100% / 0.1) solid;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    color: hsl(0 0% 100% / 0.6);
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px var(--color), 0 0 10px var(--color), 0 0 20px var(--color), inset 0 0 20px 5px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-d1evn6qii3 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-d1evn6qii3 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-d1evn6qii3 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-d1evn6qii3]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-d1evn6qii3 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-d1evn6qii3 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-d1evn6qii3 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-d1evn6qii3 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-d1evn6qii3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-d1evn6qii3] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-d1evn6qii3] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-d1evn6qii3] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-d1evn6qii3] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-d1evn6qii3] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-d1evn6qii3] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-d1evn6qii3 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-d1evn6qii3] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-d1evn6qii3 {
    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 */
img[b-lvp70mx4iq] {
	float: right;
	width: 170px;
	margin-left: 1rem;
	border-radius: 10px;
}
ol[b-lvp70mx4iq] {
	list-style: none;
}
/* /Components/Pages/Custom.razor.rz.scp.css */
.custom-cards[b-j8vxv6t81k] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	margin: 0 auto;
	margin-bottom: 1rem;
}

@media (max-width: 600px) {
	/* Make cards more compact on small screens */
	.custom-cards[b-j8vxv6t81k] {
		display: block; /* stack cards vertically */
		gap: 0.5rem;
	}

	.custom-cards[b-j8vxv6t81k]  .custom-card {
		margin-bottom: 0.6rem;
	}

    /* Arrange card: title full-width above, then thumbnail + description side-by-side */
    .custom-cards[b-j8vxv6t81k]  .custom-card box {
		display: grid;
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"title title"
			"thumb desc";
		gap: 0.45rem;
		align-items: start; /* align content to top of each cell */
	}

	.custom-cards[b-j8vxv6t81k]  .custom-card box h2 {
		grid-area: title;
		margin: 0 0 0.25rem 0;
		font-size: 1rem;
		line-height: 1.1;
		width: 100%;
        text-align: left;
	}

	/* Thumbnail becomes the left cell with minimal width */
    .custom-cards[b-j8vxv6t81k]  thumbnail {
		grid-area: thumb;
		width: 120px; /* slightly larger */
		height: 120px;
		margin-bottom: 0!important;
	}

	/* Description fills remaining space */
    .custom-cards[b-j8vxv6t81k]  .custom-card p {
		grid-area: desc;
		margin: 0;
		align-self: start; /* stick description to top of its cell */
	}
}

.custom-cards h2[b-j8vxv6t81k] {
	text-align: center;
	text-transform: uppercase;
}

.custom-cards[b-j8vxv6t81k]  a {
	text-decoration: none;
}

.custom-cards[b-j8vxv6t81k]  thumbnail {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 0.5rem;
}

.custom-cards[b-j8vxv6t81k]  thumbnail.photos {
	background-image: url('/images/card_custom_photos.jpg');
}

.custom-cards[b-j8vxv6t81k]  thumbnail.voice {
	background-image: url('/images/card_custom_voice.jpg');
}

.custom-cards[b-j8vxv6t81k]  thumbnail.video {
	background-image: url('/images/card_custom_video.jpg');
}

.custom-cards[b-j8vxv6t81k]  .custom-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.custom-cards[b-j8vxv6t81k]  .custom-card box {
	margin-bottom: 0;
	height: 100%;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.custom-cards[b-j8vxv6t81k]  .custom-card:hover box {
	background: linear-gradient(235deg, hsl(var(--hue1) 50% 10% / 0.5));
}

.custom-cards[b-j8vxv6t81k]  .custom-card:focus-visible {
	outline: none;
}

.custom-cards[b-j8vxv6t81k]  .custom-card:focus-visible box {
	border-color: hsl(200 100% 70% / 0.55);
	box-shadow:
		0 0 6px hsl(200 100% 60% / 0.22),
		0 0 18px hsl(200 100% 60% / 0.14),
		inset 0 0 0 1px hsl(0 0% 0% / 0.35);
}
/* /Components/Pages/Customs/CustomPhotos.razor.rz.scp.css */
.name-contact-row[b-bl3syuw05b] {
	display: flex;
	gap: 0.75rem;
}

label.toggle-field[b-bl3syuw05b] {
	justify-content: flex-start;
}

.toggle-text[b-bl3syuw05b] {
	flex: 1 1 auto;
}

.toggle-price[b-bl3syuw05b] {
	flex: 0 0 auto;
	white-space: nowrap;
}

.total-row[b-bl3syuw05b] {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.15rem 0;
}

.total-row > span:last-child[b-bl3syuw05b] {
	white-space: nowrap;
}

.total-row--sum[b-bl3syuw05b] {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid hsl(0 0% 100% / 0.12);
	font-weight: 600;
	color: hsl(0 0% 100% / 0.85);
}

.validation li[role="button"][b-bl3syuw05b] {
	cursor: pointer;
	user-select: none;
}

.validation li[role="button"]:focus-visible[b-bl3syuw05b] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 2px;
}

.submit-success[b-bl3syuw05b] {
	margin-bottom: 0.5rem;
	color: hsl(120 60% 70% / 0.95);
}

.submit-error[b-bl3syuw05b] {
	margin-bottom: 0.5rem;
	color: hsl(0 70% 70% / 0.95);
}

.name-contact-row > input[b-bl3syuw05b] {
	flex: 1 1 0;
	width: 0;
}

.style-gallery[b-bl3syuw05b] {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
	gap: 0.5rem;
}

.style-gallery-loading[b-bl3syuw05b] {
	margin: 0.5rem 0 0;
	color: hsl(0 0% 100% / 0.4);
	font-size: 0.875rem;
}

.style-thumb-frame[b-bl3syuw05b] {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background-color: hsl(0 0% 100% / 0.06);
	background-image: linear-gradient(
		90deg,
		hsl(0 0% 100% / 0.06) 0%,
		hsl(0 0% 100% / 0.14) 40%,
		hsl(0 0% 100% / 0.06) 80%
	);
	background-size: 200% 100%;
	animation: style-thumb-loading-b-bl3syuw05b 1.2s ease-in-out infinite;
}

.style-thumb-frame:focus-visible[b-bl3syuw05b] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 3px;
}

.style-thumb[b-bl3syuw05b] {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 160ms ease-out;
}

.style-thumb-frame.is-loaded[b-bl3syuw05b] {
	animation: none;
	background-image: none;
}

.style-thumb-frame.is-loaded .style-thumb[b-bl3syuw05b] {
	opacity: 1;
}

@keyframes style-thumb-loading-b-bl3syuw05b {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.style-thumb-frame[b-bl3syuw05b] {
		animation: none;
	}
}

.image-preview-backdrop[b-bl3syuw05b] {
	position: fixed;
	inset: 0;
	background-color: hsl(0 0% 0% / 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 1000;
}

.image-preview-dialog[b-bl3syuw05b] {
	position: relative;
	max-width: min(1100px, 95vw);
	max-height: 100vh;
}

.image-preview-img[b-bl3syuw05b] {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px hsl(0 0% 0% / 0.5);
}

.image-preview-close[b-bl3syuw05b] {
	position: absolute;
	top: -0.75rem;
	right: -0.75rem;
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	border: 1px solid hsl(0 0% 100% / 0.25);
	background: hsl(0 0% 0% / 1);
	color: hsl(0 0% 100% / 0.85);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding-bottom: 6px;
}

.image-preview-close:focus-visible[b-bl3syuw05b] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 2px;
}

.image-preview-close:hover[b-bl3syuw05b] {
	background: hsl(0 0% 0% / 0.8);
}

@media (max-width: 600px) {
	.name-contact-row[b-bl3syuw05b] {
		flex-direction: column;
		gap: 0;
	}

	.name-contact-row > input[b-bl3syuw05b] {
		width: 100%;
	}

	button[b-bl3syuw05b] {
		width: 100%;
	}
}
/* /Components/Pages/Customs/CustomVideo.razor.rz.scp.css */
.name-contact-row[b-wv6k2aorc7] {
	display: flex;
	gap: 0.75rem;
}

label.toggle-field[b-wv6k2aorc7] {
	justify-content: flex-start;
}

.toggle-text[b-wv6k2aorc7] {
	flex: 1 1 auto;
}

.toggle-price[b-wv6k2aorc7] {
	flex: 0 0 auto;
	white-space: nowrap;
}

.toggle-branch[b-wv6k2aorc7] {
	position: relative;
	margin-left: 1.50rem;
	padding-left: 1rem;
	padding-top: 0.25rem;
	margin-top: 0.25rem;
}

.toggle-branch[b-wv6k2aorc7]::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25rem;
	bottom: 1.3rem;
	width: 2px;
	background: hsl(0 0% 100% / 0.14);
	border-radius: 999px;
}

.toggle-branch > label.toggle-field[b-wv6k2aorc7] {
	position: relative;
}

.toggle-branch > label.toggle-field[b-wv6k2aorc7]::before {
	content: "";
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 2px;
	background: hsl(0 0% 100% / 0.14);
	border-radius: 999px;
}

.total-row[b-wv6k2aorc7] {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.15rem 0;
}

.total-row > span:last-child[b-wv6k2aorc7] {
	white-space: nowrap;
}

.total-row--sum[b-wv6k2aorc7] {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid hsl(0 0% 100% / 0.12);
	font-weight: 600;
	color: hsl(0 0% 100% / 0.85);
}

.validation li[role="button"][b-wv6k2aorc7] {
	cursor: pointer;
	user-select: none;
}

.validation li[role="button"]:focus-visible[b-wv6k2aorc7] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 2px;
}

.submit-success[b-wv6k2aorc7] {
	margin-bottom: 0.5rem;
	color: hsl(120 60% 70% / 0.95);
}

.submit-error[b-wv6k2aorc7] {
	margin-bottom: 0.5rem;
	color: hsl(0 70% 70% / 0.95);
}

.name-contact-row > input[b-wv6k2aorc7] {
	flex: 1 1 0;
	width: 0;
}

.field-title[b-wv6k2aorc7] {
	display: block;
	margin-top: 0.5rem;
	margin-bottom: 0.25rem;
}

.style-gallery[b-wv6k2aorc7] {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
	gap: 0.5rem;
}


.style-gallery-loading[b-wv6k2aorc7] {
	margin: 0.5rem 0 0;
	color: hsl(0 0% 100% / 0.4);
	font-size: 0.875rem;
}

.style-thumb-frame[b-wv6k2aorc7] {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background-color: hsl(0 0% 100% / 0.06);
	background-image: linear-gradient(
		90deg,
		hsl(0 0% 100% / 0.06) 0%,
		hsl(0 0% 100% / 0.14) 40%,
		hsl(0 0% 100% / 0.06) 80%
	);
	background-size: 200% 100%;
	animation: style-thumb-loading-b-wv6k2aorc7 1.2s ease-in-out infinite;
}

.style-thumb-frame:focus-visible[b-wv6k2aorc7] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 3px;
}

.style-thumb[b-wv6k2aorc7] {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 160ms ease-out;
}

.style-thumb-frame.is-loaded[b-wv6k2aorc7] {
	animation: none;
	background-image: none;
}

.style-thumb-frame.is-loaded .style-thumb[b-wv6k2aorc7] {
	opacity: 1;
}

@keyframes style-thumb-loading-b-wv6k2aorc7 {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.style-thumb-frame[b-wv6k2aorc7] {
		animation: none;
	}
}

.image-preview-backdrop[b-wv6k2aorc7] {
	position: fixed;
	inset: 0;
	background-color: hsl(0 0% 0% / 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 1000;
}

.image-preview-dialog[b-wv6k2aorc7] {
	position: relative;
	max-width: min(1100px, 95vw);
	max-height: 100vh;
}

.image-preview-img[b-wv6k2aorc7] {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px hsl(0 0% 0% / 0.5);
}

.image-preview-close[b-wv6k2aorc7] {
	position: absolute;
	top: -0.75rem;
	right: -0.75rem;
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	border: 1px solid hsl(0 0% 100% / 0.25);
	background: hsl(0 0% 0% / 1);
	color: hsl(0 0% 100% / 0.85);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
    padding-bottom: 6px;
}

.image-preview-close:focus-visible[b-wv6k2aorc7] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 2px;
}

.image-preview-close:hover[b-wv6k2aorc7] {
	background: hsl(0 0% 0% / 0.8);
}

@media (max-width: 600px) {
	.name-contact-row[b-wv6k2aorc7] {
		flex-direction: column;
		gap: 0;
	}

	.name-contact-row > input[b-wv6k2aorc7] {
		width: 100%;
	}
}
@media (max-width: 600px) {
	button[b-wv6k2aorc7] {
		width: 100%;
	}
}
/* /Components/Pages/Customs/CustomVoice.razor.rz.scp.css */
.name-contact-row[b-o4ngwaniqq] {
	display: flex;
	gap: 0.75rem;
}

label.toggle-field[b-o4ngwaniqq] {
	justify-content: flex-start;
}

.toggle-field--stack[b-o4ngwaniqq] {
	flex-direction: column;
	align-items: stretch;
}

.toggle-row[b-o4ngwaniqq] {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
}

.toggle-description[b-o4ngwaniqq] {
	padding-top: 0.35rem;
	color: hsl(0 0% 100% / 0.65);
	font-size: 0.95rem;
	line-height: 1.35;
	font-style: italic;
	border-top: 1px hsl(0, 0%, 20%) solid;
}

.toggle-description > ul[b-o4ngwaniqq] {
	margin: 0;
}

.toggle-text[b-o4ngwaniqq] {
	flex: 1 1 auto;
}

.toggle-price[b-o4ngwaniqq] {
	flex: 0 0 auto;
	white-space: nowrap;
}

.total-row[b-o4ngwaniqq] {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.15rem 0;
}

.total-row > span:last-child[b-o4ngwaniqq] {
	white-space: nowrap;
}

.total-row--sum[b-o4ngwaniqq] {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid hsl(0 0% 100% / 0.12);
	font-weight: 600;
	color: hsl(0 0% 100% / 0.85);
}

.validation li[role="button"][b-o4ngwaniqq] {
	cursor: pointer;
	user-select: none;
}

.validation li[role="button"]:focus-visible[b-o4ngwaniqq] {
	outline: 2px solid hsl(0 0% 100% / 0.6);
	outline-offset: 2px;
}

.submit-success[b-o4ngwaniqq] {
	margin-bottom: 0.5rem;
	color: hsl(120 60% 70% / 0.95);
}

.submit-error[b-o4ngwaniqq] {
	margin-bottom: 0.5rem;
	color: hsl(0 70% 70% / 0.95);
}

.name-contact-row > input[b-o4ngwaniqq] {
	flex: 1 1 0;
	width: 0;
}

@media (max-width: 600px) {
	.name-contact-row[b-o4ngwaniqq] {
		flex-direction: column;
		gap: 0;
	}

	.name-contact-row > input[b-o4ngwaniqq] {
		width: 100%;
	}

	button[b-o4ngwaniqq] {
		width: 100%;
	}
}
/* /Components/Pages/Gallery.razor.rz.scp.css */
/* ── Style cards grid ─────────────────────────────────────────── */
.gallery-cards[b-d1uj68bv8k] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.gallery-card[b-d1uj68bv8k] {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    min-width: 0;
    height: auto;
    font-size: inherit;
    font-family: inherit;
    text-transform: none;
    background: linear-gradient(235deg, hsl(245 50% 10% / 0.2), hsl(245 50% 10% / 0) 33%),
                linear-gradient(45deg, hsl(138 50% 10% / 0.8), hsl(138 50% 10% / 0) 33%),
                linear-gradient(hsl(220deg 25% 4.8% / 0.66));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid hsl(138 12% 20%);
    box-shadow: hsl(138 50% 2%) 0 10px 16px -8px, hsl(138 50% 4%) 0 20px 36px -14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    color: inherit;
}

.gallery-card:hover[b-d1uj68bv8k] {
    background: linear-gradient(235deg, hsl(245 50% 10% / 0.5));
    border-color: hsl(138 20% 30%);
    transform: translateY(-2px);
    box-shadow: hsl(138 50% 2%) 0 14px 20px -8px, hsl(138 50% 4%) 0 28px 44px -14px;
}

.gallery-card:active[b-d1uj68bv8k] {
    background-color: unset;
    transform: translateY(0);
}

.gallery-card:focus-visible[b-d1uj68bv8k] {
    outline: none;
    border-color: hsl(200 100% 70% / 0.55);
    box-shadow:
        0 0 6px hsl(200 100% 60% / 0.22),
        0 0 18px hsl(200 100% 60% / 0.14),
        inset 0 0 0 1px hsl(0 0% 0% / 0.35);
}

.gallery-card-thumb[b-d1uj68bv8k] {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: hsl(0 0% 100% / 0.06);
    flex-shrink: 0;
}

.gallery-card-thumb img[b-d1uj68bv8k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 280ms ease;
}

.gallery-card:hover .gallery-card-thumb img[b-d1uj68bv8k] {
    transform: scale(1.06);
}

.gallery-card-name[b-d1uj68bv8k] {
    display: block;
    padding: 0.6rem 0.75rem 0.7rem;
    font-family: 'Amaranth', sans-serif;
    font-size: 13pt;
    color: hsl(0 0% 90%);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ── Lightbox (Visit Estonia style) ────────────────────────────── */
.gallery-lightbox[b-d1uj68bv8k] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: none;
}

.gallery-lightbox-backdrop[b-d1uj68bv8k] {
    position: absolute;
    inset: 0;
    background: hsl(0 0% 0% / 0.94);
    cursor: pointer;
    border: none;
    padding: 0;
    outline: none;
}

.gallery-lightbox-backdrop:focus-visible[b-d1uj68bv8k] {
    outline: none;
}

/* ── Close button — fixed top-right of viewport ───────────────── */
.gallery-lightbox-close[b-d1uj68bv8k] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 0;
    border-radius: 999px;
    border: none;
    background: hsl(0 0% 100% / 0.1);
    color: hsl(0 0% 100% / 0.85);
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    transition: background 200ms ease, color 200ms ease;
}

.gallery-lightbox-close svg[b-d1uj68bv8k] {
    width: 1.25rem;
    height: 1.25rem;
}

.gallery-lightbox-close:hover[b-d1uj68bv8k] {
    background: hsl(0 0% 100% / 0.2);
    color: hsl(0 0% 100%);
}

.gallery-lightbox-close:focus-visible[b-d1uj68bv8k] {
    outline: 2px solid hsl(0 0% 100% / 0.6);
    outline-offset: 2px;
}

/* ── Inner container ──────────────────────────────────────────── */
.gallery-lightbox-inner[b-d1uj68bv8k] {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-sizing: border-box;
    padding: 1rem;
    height: 100%;
}

/* ── Stage: image area with overlaid arrows ───────────────────── */
.gallery-stage[b-d1uj68bv8k] {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
}

.gallery-slide-wrap[b-d1uj68bv8k] {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    /*aspect-ratio: 16 / 10;*/
    background: hsl(0 0% 0% / 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery-slide[b-d1uj68bv8k] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes slide-from-right-b-d1uj68bv8k {
    from { transform: translateX(48px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

@keyframes slide-from-left-b-d1uj68bv8k {
    from { transform: translateX(-48px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

.gallery-slide.dir-next[b-d1uj68bv8k] {
    animation: slide-from-right-b-d1uj68bv8k 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide.dir-prev[b-d1uj68bv8k] {
    animation: slide-from-left-b-d1uj68bv8k 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-nav[b-d1uj68bv8k] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    min-width: 0;
    border-radius: 999px;
    border: none;
    background: hsl(0 0% 0% / 0.35);
    color: hsl(0 0% 100% / 0.7);
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    opacity: 0;
    transition: opacity 250ms ease, background 200ms ease, color 200ms ease;
}

.gallery-nav svg[b-d1uj68bv8k] {
    width: 1.4rem;
    height: 1.4rem;
}

.gallery-stage:hover .gallery-nav[b-d1uj68bv8k] {
    opacity: 1;
}

.gallery-nav:hover[b-d1uj68bv8k] {
    background: hsl(0 0% 0% / 0.6);
    color: hsl(0 0% 100%);
}

.gallery-nav:focus-visible[b-d1uj68bv8k] {
    opacity: 1;
    outline: 2px solid hsl(0 0% 100% / 0.6);
    outline-offset: 2px;
}

.gallery-nav--prev[b-d1uj68bv8k] {
    left: 0.75rem;
}

.gallery-nav--next[b-d1uj68bv8k] {
    right: 0.75rem;
}

/* ── Counter ──────────────────────────────────────────────────── */
.gallery-counter[b-d1uj68bv8k] {
    text-align: center;
    font-size: 0.85rem;
    color: hsl(0 0% 100% / 0.5);
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}

/* ── Thumbnails strip ─────────────────────────────────────────── */
.gallery-thumbs[b-d1uj68bv8k] {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    padding-bottom: 0.25rem;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: hsl(0 0% 100% / 0.15) transparent;
}

.gallery-thumbs[b-d1uj68bv8k]::-webkit-scrollbar { height: 4px; }
.gallery-thumbs[b-d1uj68bv8k]::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs[b-d1uj68bv8k]::-webkit-scrollbar-thumb { background: hsl(0 0% 100% / 0.15); border-radius: 2px; }

.gallery-thumb[b-d1uj68bv8k] {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    min-width: 0;
    padding: 0;
    border-radius: 4px;
    border: 2px solid transparent;
    background: hsl(0 0% 100% / 0.06);
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 180ms ease, opacity 180ms ease;
    opacity: 0.45;
}

.gallery-thumb img[b-d1uj68bv8k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover[b-d1uj68bv8k] {
    opacity: 0.8;
    background: unset;
}

.gallery-thumb.is-active[b-d1uj68bv8k] {
    border-color: hsl(0 0% 100%);
    opacity: 1;
}

.gallery-thumb:focus-visible[b-d1uj68bv8k] {
    outline: 2px solid hsl(0 0% 100% / 0.6);
    outline-offset: 2px;
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .gallery-cards[b-d1uj68bv8k] {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .gallery-lightbox-close[b-d1uj68bv8k] {
        top: 0.5rem;
        right: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .gallery-nav[b-d1uj68bv8k] {
        width: 2.5rem;
        height: 2.5rem;
        opacity: 1;
    }

    .gallery-nav svg[b-d1uj68bv8k] {
        width: 1.2rem;
        height: 1.2rem;
    }

    .gallery-nav--prev[b-d1uj68bv8k] {
        left: 0.4rem;
    }

    .gallery-nav--next[b-d1uj68bv8k] {
        right: 0.4rem;
    }

    .gallery-thumb[b-d1uj68bv8k] {
        width: 44px;
        height: 44px;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
h1[b-6xk3c236zd] {
    text-align: center;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    font-size: 28pt;
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #f09,
        0 0 82px #f09,
        0 0 92px #f09,
        0 0 102px #f09,
        0 0 151px #f09;
}
content[b-6xk3c236zd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 0 1rem;
}
p[b-6xk3c236zd] {
    color: hsl(0 0% 75%);
    text-shadow: 0 0 5px #000;
    text-align: center;
}

.chips[b-6xk3c236zd] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.chip[b-6xk3c236zd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(10,132,255,0.22), rgba(10,132,255,0.16));
    color: #cfe9ff;
    font-weight: 600;
    letter-spacing: 0.6px;
    box-shadow:
        0 0 8px rgba(10,132,255,0.18),
        0 0 24px rgba(10,132,255,0.12);
    border: 1px solid rgba(10,132,255,0.28);
    backdrop-filter: blur(4px);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.chip[b-6xk3c236zd]::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0.6) 20%, rgba(10,132,255,0.9));
    box-shadow: 0 0 8px rgba(10,132,255,0.8);
}

.exclusive-card[b-6xk3c236zd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem;
    margin-bottom: .5rem;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    background: url('/images/exclusive.jpg') no-repeat center center / cover;
    border: 2px solid #f507ff;
    box-shadow:
        0 0 18px rgba(255,0,100,0.35),
        0 0 48px rgba(255,0,100,0.18),
        inset 0 0 20px rgba(255,0,100,0.06);
    max-width: 500px;
    width: 100%;
    height: 262px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    animation: exclusive-pulse-b-6xk3c236zd 2.6s ease-in-out infinite;
    position: relative;
}
@media (max-width: 600px) {
    .exclusive-card[b-6xk3c236zd] {
        background-position-x: 30%;
    }
}

.exclusive-card[b-6xk3c236zd]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.55), inset 0 -10px 30px rgba(0,0,0,0.25);
    transition: box-shadow 0.15s ease;
}

.exclusive-card-wrap[b-6xk3c236zd] {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin-top: .5rem;
    margin-bottom: .5rem;
    transition: transform 0.15s ease;
}

.exclusive-card-wrap[b-6xk3c236zd]::after {
    content: '';
    position: absolute;
    top: -13px;
    left: -17px;
    width: 116px;
    height: 116px;
    background: url('/images/join.png') no-repeat center center / contain;
    pointer-events: none;
    z-index: 2;
    animation: join-pulse-b-6xk3c236zd 1.8s ease-in-out infinite;
}

@keyframes join-pulse-b-6xk3c236zd {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/*.exclusive-card-wrap:hover {
    transform: translateY(-3px) scale(1.02);
}*/

.exclusive-card:hover[b-6xk3c236zd] {
    border: 2px solid #de4eff;
}

.exclusive-card:hover[b-6xk3c236zd] {
    box-shadow:
        0 0 28px rgba(255,0,100,0.6),
        0 0 70px rgba(255,0,100,0.28),
        inset 0 0 24px rgba(255,0,100,0.1);
}

.exclusive-card > .url[b-6xk3c236zd] {
    color: rgba(255,220,230,0.92);
    line-height: 1.2rem;
    padding: 5px 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: absolute;
    bottom: 3.9rem;
    font-size: 1.0rem;
    font-family: 'Asap SemiCondensed', sans-serif;
    text-transform: uppercase;
    color: #d3f2ff;
    z-index: 30;
    --color: #00b4ff;
    border-radius: 20px;
    text-shadow: 0 0 5px var(--color), 0 0 10px var(--color), 0 0 20px var(--color), 0 0 40px var(--color), 0 0 80px var(--color), 0 0 90px var(--color), 0 0 100px var(--color), 0 0 150px var(--color);
}

.exclusive-card > .desc[b-6xk3c236zd] {
    color: rgba(255,220,230,0.92);
    line-height: 3rem;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-family: 'Amaranth', sans-serif;
    color: #d3f2ff;
    --color: #f507ff;
    z-index: 20;
    text-shadow: 0 0 5px var(--color), 0 0 10px var(--color), 0 0 20px var(--color), 0 0 40px var(--color), 0 0 80px var(--color), 0 0 90px var(--color), 0 0 100px var(--color), 0 0 150px var(--color);
}

@keyframes exclusive-pulse-b-6xk3c236zd {
    0%, 100% {
        box-shadow: 0 0 18px rgba(255,0,100,0.35), 0 0 48px rgba(255,0,100,0.18), inset 0 0 20px rgba(255,0,100,0.06);
    }
    50% {
        box-shadow: 0 0 28px rgba(255,0,100,0.55), 0 0 64px rgba(255,0,100,0.28), inset 0 0 24px rgba(255,0,100,0.1);
    }
}
/* /Components/Pages/Links.razor.rz.scp.css */
content[b-flw8jryc8x] {
	display: grid;
    margin: 0 auto;
    max-width: 600px;
}
@media (min-width: 600px) {
  content[b-flw8jryc8x] {
    grid-template-columns: auto auto;
    column-gap: 3rem;
    row-gap: 1rem;
  }
}
button[b-flw8jryc8x] {
    font-family: 'Amaranth', sans-serif;
    --color: rgba(0, 0, 0, 0.7);
    --border-color: 181;
    display: inline-block;
    height: 4rem;
    font-size: 20pt;
    min-width: 15rem;
    border-radius: 0.5rem;
    border-top: 1px hsl(var(--border-color) 50% 100% / 0.25) solid;
    border-right: 1px hsl(var(--border-color) 50% 100% / 0.05) solid;
    border-left: 1px hsl(var(--border-color) 50% 100% / 0.05) solid;
    border-bottom: 1px hsl(var(--border-color) 50% 100% / 0.1) solid;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(8px);
    background-color: hsl(0 50% 25% / 0.4);
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0.5rem;
    box-shadow: 0 0 5px var(--color), 0 0 10px var(--color), 0 0 20px var(--color), inset 0 0 20px 5px rgba(0, 0, 0, 0.7);
    color: hsl(0 0% 100% / 0.6);
    box-sizing: border-box;
}
button:hover[b-flw8jryc8x] {
    background-color: hsl(300 50% 35% / 0.4);
    color: hsl(0 0% 100% / 0.8);
}
button:active[b-flw8jryc8x] {
    background-color: hsl(300 50% 15% / 0.6);
}
/* /Components/Pages/Shop.razor.rz.scp.css */
.shop-types[b-j23u541vuy] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.shop-header[b-j23u541vuy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.kink-switch[b-j23u541vuy] {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.shop-types[b-j23u541vuy]  a {
    display: inline-block;
    padding: .4rem .4rem .4rem .75rem;
    border: 1px solid hsl(0 0% 100% / 0.18);
    border-radius: 999px;
    text-decoration: none;
    background: hsl(0 0% 0% / 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: hsl(0 0% 100% / 0.75);
    text-shadow: 0 1px 2px hsl(0 0% 0% / 0.75);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.shop-types[b-j23u541vuy]  a > span {
    display: inline-block;
    background: hsl(0 0% 20% / 0.85);
    border-radius: 999px;
    padding: 0 .75rem;
    color: hsl(0 0% 80% / 0.75);
}

.shop-types[b-j23u541vuy]  a.active {
    border-color: hsl(200 100% 70% / 0.55);
    box-shadow:
        0 0 6px hsl(200 100% 60% / 0.18),
        0 0 18px hsl(200 100% 60% / 0.10),
        inset 0 0 0 1px hsl(0 0% 0% / 0.35);
}

.shop-types[b-j23u541vuy]  a {
    text-decoration: none;
}

.shop-products[b-j23u541vuy] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
}

@media (max-width: 600px) {
    .shop-products[b-j23u541vuy] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: .75rem;
        padding: 0 1rem;
    }

    .shop-header[b-j23u541vuy] {
        padding: 0 1rem;
    }
}

.shop-product[b-j23u541vuy] {
    display: block;
    padding: .75rem;
    border: 1px solid hsl(0 0% 100% / 0.18);
    border-radius: .75rem;
    text-decoration: none;
    background: hsl(0 0% 0% / 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shop-product:hover[b-j23u541vuy] {
    border-color: hsl(300 70% 70% / 0.35);
    box-shadow:
        0 0 10px hsl(300 70% 60% / 0.14),
        0 0 28px hsl(300 70% 60% / 0.08),
        inset 0 0 0 1px hsl(0 0% 0% / 0.35);
}

.shop-product .name[b-j23u541vuy] {
    font-weight: 600;
    color: hsl(0 0% 92%);
}

.shop-product .meta[b-j23u541vuy] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .5rem;
}

.shop-product .price[b-j23u541vuy] {
    font-weight: 700;
    color: hsl(120 60% 70% / 0.95);
}

.shop-product .product-thumb[b-j23u541vuy] {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: .5rem;
    margin-bottom: .5rem;
}

.shop-product[b-j23u541vuy] {
    position: relative;
}

.kink-badge[b-j23u541vuy] {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    font-size: 1.15rem;
    line-height: 1;
    transform: translate(25%, -25%);
    border-radius: 999px;
    padding: .15rem .35rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.pagination[b-j23u541vuy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.error[b-j23u541vuy] {
    color: #ff6b6b;
}
/* /Components/Pages/ShopProduct.razor.rz.scp.css */
.description[b-tn64y6iv6m] {
    white-space: pre-wrap;
    margin-bottom: 1rem;
    color: hsl(0 0% 100% / 0.70);
}

.gallery[b-tn64y6iv6m] {
    grid-column: 1;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: start;
    /* allow gallery to flex and take half of the grid column */
    min-width: 0;
}

.error[b-tn64y6iv6m] {
    color: #ff6b6b;
}

.gallery .preview[b-tn64y6iv6m] {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0 0% 0% / 0.06);
    background-position: center;
}

.preview-image[b-tn64y6iv6m] {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: .7rem;
}

.product-grid[b-tn64y6iv6m] {
    display: grid;
    /* make gallery and details share the space equally (50% / 50%) */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    align-items: start;
}

.product-details[b-tn64y6iv6m] {
    /* allow details to flex and take half of the grid column */
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
}

.product-buttons[b-tn64y6iv6m] {
    grid-column: 2;
    grid-row: 2;
}

.thumbs[b-tn64y6iv6m] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.thumb-image[b-tn64y6iv6m] {
    /* Ensure up to 4 thumbnails per row. The calc subtracts the gaps (3 * 0.5rem) and divides remaining space by 4.
       flex: 0 0 ... sets a fixed basis so items wrap to the next row after 4 items. */
    flex: 0 0 calc((100% - 1.5rem) / 4);
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    border-radius: .7rem;
}

.thumb-image.selected[b-tn64y6iv6m] {
    border-color: hsl(0 0% 100% / 0.30);
}

.thumb-image[b-tn64y6iv6m] {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Hide old thumbnails -- replaced by arrows and dots */
.thumbs[b-tn64y6iv6m] { display: none !important; }

/* Preview container to hold image, arrows and dots */
.preview-container[b-tn64y6iv6m] { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: .7rem; }

.preview-container .preview-image[b-tn64y6iv6m] { width: 100%; height: 100%; border-radius: .7rem; }

/* Slides track for sliding animation */
.slides[b-tn64y6iv6m] {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 280ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}
.slide[b-tn64y6iv6m] {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: .7rem;
}

/* subtle vignette / mask so edges are less visible and image feels framed */
.preview-container[b-tn64y6iv6m]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    /* subtle inner shadow to mask edges */
    box-shadow: inset 0 24px 48px -24px rgba(0,0,0,0.35), inset 0 -24px 48px -24px rgba(0,0,0,0.35);
}

.arrow[b-tn64y6iv6m] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(0 0% 0% / 0.35);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    cursor: pointer;
}

/* Keep visible icon small but allow bigger tap area on mobile */
.arrow[b-tn64y6iv6m]::before { content: ""; position: absolute; inset: -10px; }
.arrow svg[b-tn64y6iv6m] { width: 18px; height: 18px; }

.arrow.left[b-tn64y6iv6m] { left: 12px; }
.arrow.right[b-tn64y6iv6m] { right: 12px; }

.arrow svg[b-tn64y6iv6m] { width: 18px; height: 18px; }

.dots[b-tn64y6iv6m] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    background: hsl(0 0% 0% / 0.35);
    border-radius: 999px;
    align-items: center;
}

.dot[b-tn64y6iv6m] { width: 8px; height: 8px; background: hsl(0 0% 100% / 0.4); border-radius: 999px; cursor: pointer; }
.dot.active[b-tn64y6iv6m] { background: hsl(0 0% 100%); width: 10px; height: 10px; }

@media (max-width: 600px) {
    .product-grid[b-tn64y6iv6m] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    .gallery[b-tn64y6iv6m],
    .product-details[b-tn64y6iv6m],
    .product-buttons[b-tn64y6iv6m] {
        width: 100%;
        min-width: 0;
    }
    button[b-tn64y6iv6m] {
        width: 100%;
    }
}

/* Price styling */
.price[b-tn64y6iv6m] {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: hsl(120 60% 70% / 0.95);
}

.original-price[b-tn64y6iv6m] {
    text-decoration: line-through;
    opacity: 0.75;
    color: hsl(0 0% 100% / 0.85);
    font-size: 0.95rem;
}

.discounted-price[b-tn64y6iv6m] {
    color: hsl(43 100% 60%); /* warm accent for discounted price */
    font-weight: 700;
    font-size: 1.1rem;
}

.discount[b-tn64y6iv6m] {
    color: hsl(43 100% 60%);
    margin-bottom: 0.5rem;
}
/* /Components/Pages/Tips.razor.rz.scp.css */
.tips-presets[b-savu46cfoa] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 0.5rem;
	margin: 0.5rem 0;
}

.tips-presets button[b-savu46cfoa] {
	min-width: unset;
	height: 2.6rem;
	font-size: 14pt;
}
/* /Components/Shared/Loading.razor.rz.scp.css */
.loading[b-gfs7b8rrm0] {
    --color: #07bcff;
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    display: flex;
    border-radius: 50%;
    perspective: 800px;    
    color: #d3f2ff;
    font-size: 12pt;
    text-align: center;
    opacity: 0.7;
    text-shadow: 0 0 5px var(--color), 0 0 10px var(--color), 0 0 20px var(--color), 0 0 40px var(--color), 0 0 80px var(--color), 0 0 90px var(--color), 0 0 100px var(--color), 0 0 150px var(--color);
    align-items: flex-end;
}

.loading span[b-gfs7b8rrm0] {
    position: absolute; 
    bottom: -2rem;
}

.line[b-gfs7b8rrm0] {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;  
}

.line.one[b-gfs7b8rrm0] {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #8adfff;
}

.line.two[b-gfs7b8rrm0] {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #8adfff;
}

.line.three[b-gfs7b8rrm0] {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #8adfff;
}
