@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
	--gold: #e6cf00;
	--gold-h: #f5de33;
	--gold-soft: rgba(230, 207, 0, .14);
	--ink: #030303;
	--bg: #030303;
	--bg2: #08080a;
	--surface: #0a0a0c;
	--surface2: #101012;
	--line: rgba(255, 255, 255, .08);
	--muted: rgba(255, 255, 255, .55);
	--text: rgba(255, 255, 255, .92);
	--content: 1180px;
	--btn: 42px;
	--tebex-legal-footer-background-color: var(--ink);
	--tebex-legal-footer-text-color: var(--muted);
	--tebex-legal-footer-border-color: var(--line);
	--tebex-legal-footer-logo-color: var(--gold)
}

*,
*::before,
*::after {
	box-sizing: border-box
}

html {
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0;
	font-family: "DM Sans", system-ui, sans-serif;
	background-color: var(--bg);
	background-image: radial-gradient(circle at 18% 18%, rgba(214, 184, 48, .16), transparent 384px), radial-gradient(circle at 82% 8%, rgba(255, 255, 255, .08), transparent 288px), linear-gradient(var(--bg) 0%, var(--bg2) 52%, var(--bg) 100%);
	color: var(--text);
	line-height: 1.55;
	min-height: 100vh
}

a {
	color: inherit;
	text-decoration: none
}

img {
	max-width: 100%;
	height: auto;
	display: block
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh
}

.site-content {
	flex: 1;
	width: min(100%, var(--content));
	margin: 0 auto;
	padding: 1.25rem 1rem 2.5rem
}

.site-content-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start
}

.site-content-main {
	min-width: 0
}

.site-sidebar .widget {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1rem
}

.site-sidebar .widget-title {
	margin: 0 0 .75rem;
	font-size: .95rem;
	color: var(--gold)
}

.site-sidebar .payment {
	display: flex;
	justify-content: space-between;
	gap: .75rem;
	padding: .45rem 0;
	border-bottom: 1px solid var(--line);
	font-size: .85rem
}

.site-sidebar .payment:last-child {
	border-bottom: 0
}

.site-sidebar .empty {
	margin: 0;
	font-size: .85rem;
	color: var(--muted)
}

@media (min-width: 960px) {
	.site-content-wrap:has(.site-sidebar) {
		grid-template-columns: 1fr 280px
	}
}

.site-toast {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 999;
	padding: .65rem 1rem;
	border-radius: 10px;
	background: var(--surface2);
	border: 1px solid var(--line);
	font-size: .88rem
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(3, 3, 3, .92);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(12px)
}

.site-header-inner {
	display: flex;
	align-items: center;
	gap: .75rem;
	width: min(100%, var(--content));
	margin: 0 auto;
	padding: .65rem 1rem
}

.site-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	color: var(--muted);
	flex-shrink: 0;
	transition: color .15s, background .15s
}

.site-back:hover {
	color: var(--gold);
	background: var(--gold-soft)
}

.site-back-icon {
	display: block
}

.site-title {
	display: flex;
	align-items: center;
	flex-shrink: 0
}

.site-title img {
	max-height: 48px;
	width: auto
}

.site-navigation {
	flex: 1;
	min-width: 0
}

.navigation-horizontal .menu {
	display: flex;
	flex-wrap: wrap;
	gap: .15rem;
	margin: 0;
	padding: 0;
	list-style: none
}

.navigation-horizontal .menu>li>a {
	display: block;
	padding: .45rem .75rem;
	border-radius: 8px;
	color: var(--muted);
	font-size: .92rem;
	font-weight: 500;
	transition: color .15s, background .15s
}

.navigation-horizontal .menu>li>a:hover,
.navigation-horizontal .menu>li>a.is-active {
	color: #fff;
	background: rgba(255, 255, 255, .06)
}

.navigation-horizontal .menu>li>a.is-active {
	color: var(--gold);
	background: var(--gold-soft)
}

.site-header-inner>.actions {
	display: flex;
	align-items: center;
	gap: .45rem;
	margin-left: auto;
	flex-shrink: 0
}

.username {
	font-size: .85rem;
	color: var(--muted);
	max-width: 8rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.btn,
.btn-primary,
.btn-secondary,
.btn-tertiary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	min-height: var(--btn);
	padding: 0 .9rem;
	border-radius: 10px;
	border: 1px solid transparent;
	font: inherit;
	font-size: .88rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s, transform .15s
}

.btn-primary {
	background: var(--gold);
	color: var(--ink)
}

.btn-primary:hover {
	background: var(--gold-h);
	transform: translateY(-1px)
}

.btn-secondary,
.btn-tertiary {
	border-color: var(--line);
	background: rgba(255, 255, 255, .03);
	color: #fff
}

.btn-secondary:hover,
.btn-tertiary:hover {
	background: rgba(255, 255, 255, .07)
}

.btn.wide {
	width: 100%
}

.btn-basket {
	min-width: 2.5rem
}

.btn-basket-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 .3rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, .25);
	font-size: .75rem;
	font-weight: 700
}

.btn-basket-count:empty,
.btn-basket-count[data-zero="1"] {
	opacity: .5
}

.btn-icon {
	width: var(--btn);
	padding: 0;
	background: transparent;
	border-color: var(--line);
	position: relative
}

.btn-icon::before,
.btn-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 2px;
	background: currentColor;
	transform: translate(-50%, -50%)
}

.btn-icon::after {
	transform: translate(-50%, -50%) rotate(90deg)
}

.toggle-navigation {
	display: none
}

.site-footer {
	margin-top: auto;
	border-top: 1px solid var(--line);
	background: var(--ink)
}

.site-footer-inner {
	width: min(100%, var(--content));
	margin: 0 auto;
	padding: 1.5rem 1rem 1rem
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1.25rem;
	margin-bottom: 1.25rem
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: .35rem
}

.footer-col strong {
	color: #fff;
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: .15rem
}

.footer-col p {
	margin: 0;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.45
}

.footer-col a {
	color: var(--muted);
	font-size: .85rem
}

.footer-col a:hover {
	color: var(--gold)
}

.footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1rem;
	justify-content: center;
	padding: 1rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-bottom: 1rem
}

.footer-trust span {
	font-size: .78rem;
	color: var(--muted)
}

.copyright {
	margin: 0;
	color: var(--muted);
	font-size: .82rem;
	text-align: center
}

.sticky-cta {
	display: none
}

.text-content h1,
.text-content h2,
.text-content h3 {
	color: #fff;
	line-height: 1.25
}

.text-content p,
.text-content li {
	color: var(--muted)
}

.text-content a:not(.shinsei-cta) {
	color: var(--gold)
}

.text-content a.shinsei-cta-primary {
	color: var(--ink)
}

.text-content a.shinsei-cta-secondary {
	color: #fff
}

.cat-hero {
	position: relative;
	margin-bottom: 1rem;
	padding: 1.75rem 1.25rem;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: linear-gradient(165deg, rgba(12, 12, 12, .95), rgba(8, 8, 10, .85));
	text-align: center;
	overflow: hidden
}

.cat-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 90% 100% at 50% 50%, rgba(230, 207, 0, .1), transparent 72%);
	pointer-events: none
}

.cat-kicker {
	position: relative;
	margin: 0 0 .5rem;
	color: var(--gold);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase
}

.cat-hero h1 {
	position: relative;
	margin: 0 0 .45rem;
	font-size: clamp(1.5rem, 3vw, 2rem)
}

.cat-lead {
	position: relative;
	margin: 0 auto;
	max-width: 32rem;
	color: var(--muted);
	font-size: .92rem
}

.cat-trust {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem .75rem;
	justify-content: center;
	margin-bottom: .75rem;
	padding: .7rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(8, 8, 10, .55)
}

.cat-trust span {
	font-size: .78rem;
	color: var(--muted);
	white-space: nowrap
}

.cat-trust span::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: .4rem;
	border-radius: 999px;
	background: var(--gold);
	vertical-align: middle
}

.cat-ht {
	margin: 0 0 1rem;
	text-align: center;
	font-size: .76rem;
	color: var(--muted)
}

.price-ht {
	font-size: .62rem;
	font-weight: 600;
	color: var(--muted);
	vertical-align: super;
	margin-left: .1rem;
	letter-spacing: .04em
}

.store-products-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem
}

.store-product {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(12, 12, 12, .7);
	transition: border-color .2s, transform .2s, box-shadow .2s
}

.store-product:hover {
	border-color: rgba(230, 207, 0, .35);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .35)
}

.store-product.is-populaire {
	border-color: rgba(230, 207, 0, .45);
	box-shadow: 0 0 0 1px rgba(230, 207, 0, .15)
}

.store-product.is-best {
	border-color: rgba(230, 207, 0, .25)
}

.product-badge {
	position: absolute;
	top: .65rem;
	left: .65rem;
	z-index: 2;
	padding: .2rem .55rem;
	border-radius: 999px;
	background: var(--gold);
	color: var(--ink);
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em
}

.product-badge-best {
	background: linear-gradient(135deg, #6eb5ff, #4a90d9);
	color: #fff
}

.store-product .image-link {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 280px;
	padding: .5rem
}

.store-product .image {
	width: 100%;
	height: 260px;
	object-fit: contain
}

.store-product .product-title {
	margin: 0;
	text-align: center;
	font-size: 1rem;
	font-weight: 600
}

.store-product .product-title a:hover {
	color: var(--gold)
}

.store-product .product-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: .5rem;
	margin-top: auto;
	width: 100%
}

.store-product .price {
	margin: 0;
	text-align: center
}

.store-product .price strong {
	font-size: 1.35rem;
	color: var(--gold)
}

.store-product .price del {
	font-size: .82rem;
	color: var(--muted);
	margin-right: .25rem
}

.price-unit {
	margin: 0;
	text-align: center;
	font-size: .78rem;
	color: var(--muted)
}

.store-package {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: start
}

.store-package-media .image,
.store-package-media .slide-frame {
	width: 100%;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: var(--surface2)
}

.store-package-info .descr {
	color: var(--muted);
	margin: 1rem 0
}

.store-package-info .actions {
	display: flex;
	flex-direction: column;
	gap: .65rem;
	max-width: 280px
}

.store-empty,
.store-login,
.store-form,
.store-checkout {
	max-width: 520px;
	margin: 0 auto
}

.basket-list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	gap: .65rem
}

.basket-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: .85rem 1rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--surface)
}

.basket-item-info {
	display: grid;
	gap: .2rem;
	min-width: 0
}

.basket-item-info strong {
	font-size: .95rem
}

.basket-item-info span {
	font-size: .85rem;
	color: var(--gold)
}

.basket-remove {
	flex-shrink: 0;
	min-height: 36px;
	padding: 0 .75rem;
	font-size: .82rem
}

.basket-total {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: .92rem
}

.store-checkout .btn+.btn {
	margin-top: .65rem
}

.store-form .field,
.store-login form {
	display: grid;
	gap: .65rem;
	margin-top: 1rem
}

.store-form input,
.store-form select,
.store-login input {
	width: 100%;
	min-height: var(--btn);
	padding: 0 .75rem;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: #fff;
	font: inherit
}

.shinsei-home,
.text-content .shinsei-home {
	display: grid;
	gap: 2rem;
	text-align: left
}

.shinsei-hero {
	position: relative;
	padding: 2.5rem 1.5rem;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: linear-gradient(165deg, rgba(12, 12, 12, .95), rgba(8, 8, 10, .85));
	text-align: center;
	overflow: hidden
}

.shinsei-hero-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 90% 100% at 50% 50%, rgba(230, 207, 0, .1), transparent 72%);
	pointer-events: none
}

.shinsei-hero h1 {
	position: relative;
	margin: 0 0 .65rem;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 700
}

.shinsei-kicker {
	position: relative;
	display: inline-block;
	margin: 0 0 .65rem;
	color: var(--gold);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase
}

.shinsei-lead {
	position: relative;
	margin: 0 auto 1.25rem;
	max-width: 38rem;
	color: var(--muted);
	font-size: 1rem
}

.shinsei-cta-row {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
	justify-content: center
}

.shinsei-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn);
	padding: .6rem 1.15rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: .92rem;
	transition: transform .15s, background .15s
}

.shinsei-cta-primary {
	background: var(--gold);
	color: var(--ink)
}

.shinsei-cta-primary:hover {
	transform: translateY(-2px);
	background: var(--gold-h)
}

.shinsei-cta-secondary {
	border: 1px solid var(--line);
	color: #fff;
	background: rgba(255, 255, 255, .03)
}

.shinsei-cta-secondary:hover {
	background: rgba(255, 255, 255, .07)
}

.shinsei-trust {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: center;
	padding: .85rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(8, 8, 10, .6)
}

.shinsei-trust span {
	font-size: .82rem;
	color: var(--muted);
	white-space: nowrap
}

.shinsei-featured {
	padding: 1.25rem;
	border-radius: 16px;
	border: 1px solid rgba(230, 207, 0, .35);
	background: linear-gradient(135deg, rgba(230, 207, 0, .08), rgba(214, 184, 48, .04))
}

.shinsei-featured-inner {
	display: grid;
	grid-template-columns: minmax(140px, 220px) 1fr;
	gap: 1.25rem;
	align-items: center
}

.shinsei-featured-img {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	padding: .5rem;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(12, 12, 12, .55)
}

.shinsei-featured-img img {
	width: 100%;
	height: 200px;
	object-fit: contain
}

.shinsei-featured-body {
	text-align: left
}

.shinsei-featured h2 {
	margin: .25rem 0 .5rem;
	font-size: 1.35rem
}

.shinsei-featured-meta {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: .9rem
}

.shinsei-section-title {
	margin: 0 0 .85rem;
	font-size: 1.05rem;
	font-weight: 600
}

.shinsei-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: .75rem
}

.shinsei-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))
}

.shinsei-card {
	padding: 1rem;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: rgba(8, 8, 10, .65)
}

.shinsei-card strong {
	display: block;
	margin-bottom: .35rem;
	color: #fff;
	font-size: .9rem
}

.shinsei-card p {
	margin: 0;
	color: var(--muted);
	font-size: .86rem;
	line-height: 1.45
}

.shinsei-step {
	text-align: center
}

.shinsei-step-n {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin: 0 auto .5rem;
	border-radius: 999px;
	background: var(--gold-soft);
	color: var(--gold);
	font-weight: 700;
	font-size: .9rem
}

.shinsei-faq {
	display: grid;
	gap: .5rem
}

.shinsei-faq-item {
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(8, 8, 10, .5);
	overflow: hidden
}

.shinsei-faq-item summary {
	padding: .85rem 1rem;
	cursor: pointer;
	font-weight: 600;
	font-size: .9rem;
	color: #fff;
	list-style: none
}

.shinsei-faq-item summary::-webkit-details-marker {
	display: none
}

.shinsei-faq-item p {
	margin: 0;
	padding: 0 1rem 1rem;
	color: var(--muted);
	font-size: .86rem;
	line-height: 1.5
}

.shinsei-note {
	margin: 0;
	padding: .85rem .95rem;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--muted);
	font-size: .82rem
}

.shinsei-note a {
	color: var(--gold)
}

.legal-content h2 {
	margin: 1.5rem 0 .5rem;
	font-size: 1.1rem
}

.legal-content p,
.legal-content li {
	font-size: .9rem;
	line-height: 1.6
}

@media(max-width:960px) {
	.toggle-navigation {
		display: inline-flex
	}

	.site-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(3, 3, 3, .98);
		border-bottom: 1px solid var(--line);
		padding: .75rem 1rem
	}

	.navigation-open .site-navigation {
		display: block
	}

	.navigation-horizontal .menu {
		flex-direction: column
	}

	.site-title img {
		max-height: 40px
	}

	.store-products-list {
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr))
	}

	.store-product .image-link {
		min-height: 200px;
		padding: .35rem
	}

	.store-product .image {
		height: 180px
	}

	.store-package {
		grid-template-columns: 1fr
	}

	.shinsei-cta-row {
		flex-direction: column
	}

	.shinsei-cta {
		width: 100%
	}

	.shinsei-featured-inner {
		grid-template-columns: 1fr;
		text-align: center
	}

	.shinsei-featured-body {
		text-align: center
	}

	.sticky-cta {
		display: flex;
		position: fixed;
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
		z-index: 90;
		align-items: center;
		justify-content: center;
		min-height: 48px;
		border-radius: 12px;
		background: var(--gold);
		color: var(--ink);
		font-weight: 700;
		font-size: .95rem;
		box-shadow: 0 8px 24px rgba(0, 0, 0, .45)
	}

	body {
		padding-bottom: 4.5rem
	}
}