html, body {
	width:100%;
	height:100%;
	margin:0px;
	padding:0px;
	font-family: sans-serif;
	font-weight: 500;
	color:white;
}

img {
	max-width:100%;
}

.home {
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	align-content:center;
}

.home .logobar {
	position:absolute;
	top:0px;
	right:0px;
	padding:30px;
	background-color:rgba(0,0,0,0.85);
	border-bottom-left-radius:64px;
}

.home .logobar .logo {
	height:100px;
}

.home .logobar .tagesdeal {
	height:100px;
}

.home .preisliste {
	position:absolute;
	top:0px;
	left:0px;
	padding:60px;
	padding-top:25px;
	padding-bottom:25px;
	background-color:rgba(0,0,0,0.85);
	border-bottom-right-radius:64px;
	text-align:center;
	width:15%;
}

.home .preisliste .price-container {
	position: relative;
	display: inline-block;
}

.home .preisliste .cross-overlay {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	pointer-events: none;
}

.home .preisliste .price {
	margin: 0;
}

.home .preisliste p {
	font-family: 'Source Sans 3',sans-serif;
	font-weight: 400;
	margin:0px;
	padding:0px;
	font-size:25px;
}

.home .preisliste .uvp {
	padding-bottom:20px;
}

.home .preisliste .preprice {
	padding-bottom:20px;
}

.home .preisliste .dealprice {
	padding-bottom:40px;
}

.home .preisliste .uvp h2 {
	font-family: 'Racing Sans One';
	margin:0px;
	padding:0px;
	font-size:60px;
}

.home .preisliste .preprice h2 {
	font-family: 'Racing Sans One';
	margin:0px;
	padding:0px;
	font-size:60px;
	color:#b4b4b4;
}

.home .preisliste .dealprice p {
	font-family: 'Source Sans 3',sans-serif;
	font-weight: 400;
	margin:0px;
	padding:0px;
	font-size:20px;
}

.home .preisliste .dealprice img {
	max-width:250px;
}

.home .preisliste .dealprice h2 {
	font-family: 'Racing Sans One';
	margin:0px;
	padding:0px;
	font-size:90px;
	color:#ff0000;
}

.home .preisliste .info p {
	font-size:20px;
}

.home .preisliste .info a {
	background-color:black;
	border-radius:256px;
	border:2px solid white;
	display:block;
	margin-right:auto;
	margin-left:auto;
	padding:10px 20px;
	color:white;
	text-decoration:none;
	transition: all 0.3s ease;
}

.home .preisliste .info a:hover {
	text-decoration:none;
	background-color:white;
	color:black;
}

.home .countdown {
	position:absolute;
	bottom:0px;
	left:0px;
	padding:60px;
	padding-top:25px;
	padding-bottom:25px;
	background-color:rgba(0,0,0,0.85);
	border-top-right-radius:64px;
	text-align:center;
	width:15%;
}

.home .countdown .hh,.home .countdown .mm, .home .countdown .ss {
	font-size:150px;
	font-weight:bold;
	line-height:110px;
	font-family: 'Racing Sans One';
}

.home .countdown .ss.pulse {
	animation: pulse 1s infinite;
	color: #ff0000;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}


.price-drop-animation {
	animation: priceDrop 0.5s ease-out;
}

@keyframes priceDrop {
	0% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.3) rotate(5deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}


.price-drop-notification {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	background: linear-gradient(135deg, #ff0000, #ff6b00);
	color: white;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	z-index: 10000;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.price-drop-notification.show {
	transform: translate(-50%, -50%) scale(1);
}

.price-drop-notification h3 {
	font-family: 'Racing Sans One';
	font-size: 48px;
	margin-bottom: 20px;
}

.price-drop-notification p {
	font-size: 24px;
	margin: 10px 0;
}

.price-drop-notification .new-price {
	font-family: 'Racing Sans One';
	font-size: 72px;
	margin: 20px 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-drop-notification .hurry-text {
	font-size: 18px;
	font-style: italic;
}


.cart-notification {
	position: fixed;
	bottom: -100px;
	right: 30px;
	background-color: #00a000;
	color: white;
	padding: 20px 30px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	transition: bottom 0.5s ease-out;
	z-index: 10000;
}

.cart-notification.show {
	bottom: 30px;
}

.cart-notification i {
	font-size: 30px;
}

.cart-notification p {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
}

.home .countdown .watcher {
	margin-top:20px;
	font-size:18px;
	color:#ff0000;
	font-weight:bold;
}

h1, h2, h3 {
	padding:0px;
	margin:0px;
}


.product-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
}

.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	color: #333;
	width: 90%;
	max-width: 1200px;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 20px;
	display: flex;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 40px;
	color: #999;
	cursor: pointer;
	z-index: 10;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-close:hover {
	color: #333;
}

.product-gallery {
	flex: 1;
	padding: 40px;
	background-color: #f8f8f8;
}

.product-gallery .main-image {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
}

.product-gallery .thumbnail-row {
	display: flex;
	gap: 10px;
}

.product-gallery .thumbnail-row img {
	flex: 1;
	border-radius: 5px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.product-gallery .thumbnail-row img:hover {
	opacity: 1;
}

.product-info {
	flex: 1;
	padding: 40px;
	overflow-y: auto;
}

.product-info h2 {
	font-family: 'Racing Sans One';
	font-size: 36px;
	color: #333;
	margin-bottom: 30px;
}

.product-info h3 {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 24px;
	color: #555;
	margin: 20px 0 15px 0;
}

.product-features ul {
	list-style: none;
	padding: 0;
}

.product-features li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	font-size: 16px;
}

.product-features li:last-child {
	border-bottom: none;
}

.product-features strong {
	color: #333;
}

.product-description p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 15px;
}

.price-summary {
	background-color: #f0f0f0;
	padding: 20px;
	border-radius: 10px;
	margin: 30px 0;
}

.price-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 18px;
}

.price-crossed {
	text-decoration: line-through;
	color: #999;
}

.price-deal {
	font-family: 'Racing Sans One';
	font-size: 28px;
	color: #ff0000;
}

.price-save {
	color: #00a000;
	font-weight: bold;
}

.add-to-cart {
	width: 100%;
	padding: 20px;
	background-color: #ff0000;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.add-to-cart:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255,0,0,0.3);
}


@media (max-width: 1920px) {
	.home .preisliste .uvp h2 {
		font-size:50px;
	}

	.home .preisliste .preprice h2 {
		font-size:50px;
	}

	.home .preisliste .dealprice img {
		max-width:250px;
	}

	.home .preisliste .dealprice h2 {
		font-size:70px;
	}

	.home .preisliste, .home .countdown {
		width:20%;
	}

	.home .countdown .hh, .home .countdown .mm, .home .countdown .ss {
		font-size: 100px;
		font-weight: bold;
		line-height: 70px;
	}
}

@media (max-height: 1200px) {
	.home .preisliste .uvp h2 {
		font-size:50px;
	}

	.home .preisliste .preprice h2 {
		font-size:50px;
	}

	.home .preisliste .dealprice img {
		max-width:250px;
	}

	.home .preisliste .dealprice h2 {
		font-size:70px;
	}

	.home .preisliste, .home .countdown {
		width:20%;
	}

	.home .countdown .hh, .home .countdown .mm, .home .countdown .ss {
		font-size: 100px;
		font-weight: bold;
		line-height: 70px;
	}
}

@media (max-width: 768px) {
	.popup-content {
		flex-direction: column;
		width: 95%;
		max-height: 95vh;
	}

	.product-gallery {
		padding: 20px;
	}

	.product-info {
		padding: 20px;
	}

	.home .preisliste, .home .countdown {
		width: 30%;
	}

	.home .logobar {
		padding: 15px;
	}

	.home .logobar .logo, .home .logobar .tagesdeal {
		height: 60px;
	}
}