/* Startseite — Next.js-Look (Fadenkreuz-Cursor) */

body.home,
.ss-home {
	cursor: url('../images/cursor-scope.svg') 16 16, crosshair;
}

body.home a,
body.home button,
body.home input,
body.home select,
body.home textarea,
body.home [role='button'],
body.home .elementor-button,
.ss-home a,
.ss-home button,
.ss-home input,
.ss-home select,
.ss-home textarea,
.ss-home [role='button'] {
	cursor: pointer;
}

.ss-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
}

.ss-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.55);
}

.ss-main--elementor {
	padding-top: 0;
	padding-bottom: 0;
}

.ss-hero {
	position: relative;
	min-height: min(92vh, 820px);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.ss-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 35%;
	transform: scale(1.03);
}

.ss-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(12, 22, 10, 0.18) 0%, transparent 40%),
		linear-gradient(105deg, rgba(18, 32, 14, 0.52) 0%, rgba(18, 32, 14, 0.28) 45%, rgba(18, 32, 14, 0.08) 100%);
}

.ss-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: calc(var(--ss-header-h) + 16px);
	padding-bottom: 56px;
	max-width: 720px;
}

.ss-hero h1 {
	font-family: var(--ss-display);
	font-size: clamp(40px, 6.5vw, 72px);
	line-height: 1.05;
	font-weight: 800;
	color: #fff;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
}

.ss-hero h1 span {
	display: inline;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	background: linear-gradient(90deg, #fff 0%, #d4f5a0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ss-hero__lead {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 32px;
	max-width: 520px;
}

.ss-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.ss-hero__offers {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 28px;
	max-width: 920px;
}

.ss-hero__offer {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 18px;
	border-radius: var(--ss-radius);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	color: #fff;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ss-hero__offer:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(172, 226, 4, 0.42);
}

.ss-hero__offer strong {
	font-family: var(--ss-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--ss-accent-bright);
}

.ss-hero__offer span {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.8);
}

.ss-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ss-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 18px;
	border-radius: var(--ss-radius);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	min-width: 124px;
}

.ss-hero__stat strong {
	font-family: var(--ss-display);
	font-size: 20px;
	font-weight: 800;
	color: var(--ss-accent-bright);
	line-height: 1.1;
}

.ss-hero__stat span {
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.35;
}

.ss-hero__scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 28px;
	height: 44px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.ss-hero__scroll span {
	width: 4px;
	height: 8px;
	background: var(--ss-accent-bright);
	border-radius: 2px;
	animation: ss-scroll 1.8s ease-in-out infinite;
}

@keyframes ss-scroll {
	0%, 100% { transform: translateY(0); opacity: 1; }
	50% { transform: translateY(8px); opacity: 0.4; }
}

.ss-infobar {
	background: var(--ss-accent-dark);
	color: #fff;
	overflow: hidden;
	padding: 13px 0;
}

.ss-infobar__track {
	display: flex;
	width: max-content;
	animation: ss-tick 32s linear infinite;
}

.ss-infobar__track span {
	flex-shrink: 0;
	padding: 0 48px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	white-space: nowrap;
	opacity: 0.9;
}

.ss-infobar__track span::before {
	content: '◆';
	margin-right: 16px;
	color: var(--ss-accent-bright);
	font-size: 8px;
	vertical-align: middle;
}

@keyframes ss-tick {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.ss-section {
	padding: 72px 0;
}

.ss-section--alt {
	background: var(--ss-surface);
	border-top: 1px solid var(--ss-border);
	border-bottom: 1px solid var(--ss-border);
}

.ss-section__head {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	margin-bottom: 32px;
	gap: 20px;
}

.ss-section__head h2 {
	font-family: var(--ss-display);
	font-size: clamp(28px, 3.5vw, 36px);
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.02em;
}

.ss-link {
	font-family: var(--ss-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--ss-accent-dark);
	white-space: nowrap;
}

.ss-link:hover {
	color: var(--ss-accent);
}

.ss-categories__status {
	color: var(--ss-muted);
	font-size: 15px;
	margin: 0;
}

.ss-categories {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.ss-cat-card {
	position: relative;
	display: block;
	aspect-ratio: 5 / 4;
	border-radius: var(--ss-radius-lg);
	overflow: hidden;
	background: var(--ss-surface);
	border: 1px solid var(--ss-border);
	box-shadow: var(--ss-shadow);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.ss-cat-card img,
.ss-cat-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

@media (hover: hover) {
	.ss-cat-card:hover {
		transform: translateY(-6px) scale(1.01);
		box-shadow: 0 20px 48px rgba(20, 36, 20, 0.14);
	}

	.ss-cat-card:hover img,
	.ss-cat-card:hover .ss-cat-card__placeholder {
		transform: scale(1.06);
	}
}

.ss-cat-card__placeholder {
	background: linear-gradient(145deg, #e8efe4, #d5e0d0);
}

.ss-cat-card__label {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding: 40px 18px 16px;
	background: linear-gradient(transparent, rgba(14, 24, 12, 0.82));
	color: #fff;
}

.ss-cat-card__label h3 {
	margin: 0;
	font-family: var(--ss-display);
	font-size: 18px;
	font-weight: 700;
}

.ss-arrow {
	font-size: 18px;
	opacity: 0.85;
}

.ss-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.ss-products--featured {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.ss-product {
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.ss-product h4 {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.ss-product h4 a:hover {
	color: var(--ss-accent-dark);
}

.ss-product__img,
.ss-product__img-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 11 / 14;
	margin-bottom: 12px;
	background: var(--ss-surface);
	border: 1px solid var(--ss-border);
	border-radius: var(--ss-radius);
	overflow: hidden;
	box-shadow: var(--ss-shadow);
	transition: box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.ss-product__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.5s ease;
}

@media (hover: hover) {
	.ss-product:hover {
		transform: translateY(-6px);
	}

	.ss-product:hover .ss-product__img,
	.ss-product:hover .ss-product__img-link {
		box-shadow: 0 20px 48px rgba(20, 36, 20, 0.14);
		transform: scale(1.01);
	}

	.ss-product:hover .ss-product__img img {
		transform: scale(1.03);
	}
}

.ss-product__price {
	font-size: 14px;
	font-weight: 600;
	color: var(--ss-muted);
}

.ss-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--ss-accent-dark);
	color: #fff;
}

.ss-values__item {
	padding: 48px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-values__item:last-child {
	border-right: none;
}

.ss-values__item h5 {
	margin: 0 0 10px;
	font-family: var(--ss-display);
	font-size: 22px;
	font-weight: 700;
}

.ss-values__item p {
	margin: 0;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.ss-trust {
	padding: 80px 0;
}

.ss-trust__layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 48px;
	align-items: start;
}

.ss-trust__intro h2 {
	font-family: var(--ss-display);
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 800;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.ss-trust__intro p {
	margin: 0 0 28px;
	font-size: 17px;
	color: var(--ss-muted);
	line-height: 1.65;
}

.ss-trust__list {
	border-top: 1px solid var(--ss-border);
}

.ss-trust__item {
	padding: 24px 0;
	border-bottom: 1px solid var(--ss-border);
}

.ss-trust__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.ss-trust__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--ss-bg);
	color: var(--ss-accent-dark);
	flex-shrink: 0;
	font-size: 12px;
}

.ss-trust__item h3 {
	margin: 0;
	font-family: var(--ss-display);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.ss-trust__item p {
	margin: 0;
	padding-left: 48px;
	font-size: 15px;
	color: var(--ss-muted);
	line-height: 1.65;
	max-width: 52ch;
}

@media (max-width: 900px) {
	.ss-hero {
		min-height: 85vh;
	}

	.ss-hero h1 {
		font-size: clamp(32px, 9vw, 48px);
	}

	.ss-hero h1 span {
		font-size: 0.52em;
		line-height: 1.25;
		letter-spacing: -0.01em;
	}

	.ss-hero__bg {
		object-position: 72% 28%;
	}

	.ss-hero__scroll {
		display: none;
	}

	.ss-values,
	.ss-trust__layout {
		grid-template-columns: 1fr;
	}

	.ss-hero__offers {
		grid-template-columns: 1fr;
		max-width: 560px;
	}

	.ss-values__item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.ss-values__item:last-child {
		border-bottom: none;
	}

	.ss-trust__item p {
		padding-left: 0;
	}

	.ss-categories,
	.ss-products,
	.ss-products--featured {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ss-cat-card__label {
		padding: 28px 12px 12px;
		gap: 8px;
	}

	.ss-cat-card__label h3 {
		font-size: 15px;
	}

	.ss-product h4 {
		font-size: 14px;
	}
}

@media (max-width: 600px) {
	.ss-section {
		padding: 48px 0;
	}

	.ss-section__head {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 24px;
	}

	.ss-hero__actions .ss-btn {
		flex: 1 1 100%;
		justify-content: center;
	}

	.ss-hero__offer {
		padding: 14px 16px;
	}
}
