body {
    background: rgba(19, 19, 19);
    color: #f0f0f0;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
	min-height: 100vh;
}

/* Shop Container */
.shop-container {
	max-width: 900px;
	margin: 60px auto 0 auto;
	padding: 40px 32px;
	background: rgba(42,50,73,0.18);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(40,40,40,0.18);
}
.shop-title {
	text-align: center;
	margin-bottom: 32px;
	font-size: 2.2rem;
	letter-spacing: 0.03em;
	color: #ff00007a;
}
.shop-products {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}
.shop-card {
	background: rgba(66,69,76,0.18);
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(40,40,40,0.08);
	padding: 24px 18px;
	width: 220px;
	text-align: center;
	transition: box-shadow 0.2s;
}
.shop-card:hover {
	box-shadow: 0 4px 16px rgba(40,40,40,0.18);
}
.shop-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 12px;
	background: #222;
}
.shop-name {
	font-size: 1.2rem;
	margin-bottom: 8px;
	color: #f0f0f0;
}
.shop-desc {
	font-size: 1rem;
	margin-bottom: 12px;
	color: #cfcfcf;
}
.shop-price {
	font-weight: bold;
	color: #ff00007a;
	margin-bottom: 12px;
	font-size: 1.1rem;
}
.shop-btn {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	background: #ff00007a;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	margin-bottom: 8px;
	cursor: pointer;
	transition: background 0.2s;
}
.shop-btn:hover {
	background: #ff00007a;
}
.shop-cart {
	background: rgba(66,69,76,0.12);
	padding: 18px 12px;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(40,40,40,0.08);
	max-width: 340px;
	margin: 0 auto;
	text-align: center;
}
.shop-cart h3 {
	color: #ff00007a;
	margin-bottom: 12px;
}
.shop-cart ul {
	list-style: none;
	padding: 0;
	margin-bottom: 12px;
	color: #f0f0f0;
}
.shop-cart p {
	margin-bottom: 12px;
	font-weight: bold;
	color: #ff00007a;
}

/* Übersichtlicher Warenkorb Apple-Style */
.shop-container {
	max-width: 700px;
	margin: 40px auto 0 auto;
	padding: 32px 18px;
}
#cartList li {
	background: rgba(66,69,76,0.18);
	border-radius: 10px;
	margin-bottom: 16px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(40,40,40,0.08);
	gap: 18px;
}
#cartList img {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	margin-right: 12px;
	box-shadow: 0 2px 8px rgba(40,40,40,0.08);
	transition: transform 0.2s;
	cursor: pointer;
}
#cartList img:hover {
	transform: scale(1.25);
	z-index: 2;
}
#cartList span {
	font-size: 1.1rem;
	color: #f0f0f0;
	font-weight: 500;
	flex: 1;
}
#cartList input[type="number"] {
	border-radius: 6px;
	border: 1px solid #ff00007a;
	padding: 4px 8px;
	background: #222;
	color: #f0f0f0;
	width: 48px;
	margin-left: 8px;
}
#cartList button {
	background: #ff00007a;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 6px 12px;
	margin-left: 8px;
	cursor: pointer;
	transition: background 0.2s;
}
#cartList button:hover {
	background: #ff00007a;
}
#cartList label {
	font-size: 0.95rem;
	color: #ff00007a;
	margin-left: 8px;
}
.cart-summary {
	background: rgba(66,69,76,0.14);
	border-radius: 12px;
	padding: 18px 24px;
	margin: 24px 0;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 2px 8px rgba(40,40,40,0.08);
	animation: fadeInCart 0.4s;
}
@keyframes fadeInCart {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.cart-summary p {
	margin: 8px 0;
	font-size: 1.05rem;
	color: #f0f0f0;
}
.cart-summary .cart-total {
	font-size: 1.2rem;
	font-weight: bold;
	color: #ff00007a;
	margin-top: 12px;
}
.cart-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
	flex-wrap: wrap;
	border-top: 1px solid #444;
	padding-top: 16px;
}
.shop-btn-green {
	background: #2ecc40 !important;
	color: #fff !important;
	font-weight: bold;
	font-size: 1rem;
	max-width: 180px;
	padding: 8px 24px;
	border-radius: 8px;
}
.shop-btn-green:hover {
	background: #27ae60 !important;
}
#cartList img {
	box-shadow: 0 2px 8px rgba(40,40,40,0.08);
}
#cartList label {
	font-size: 0.95rem;
	color: #ff00007a;
	margin-left: 8px;
}

/* Buttons */
.shop-btn,
#cartList button,
#deleteOrdersBtn,
#exportOrdersBtn,
#clearCartBtn,
#checkoutBtn,
#exportCartBtn {
	font-size: 0.85rem;
	padding: 4px 12px;
	border-radius: 6px;
	max-width: 110px;
	margin-bottom: 6px;
	transition: box-shadow 0.2s;
}
#cart-empty-hint {
	text-align: center;
	color: #ff00007a;
	font-size: 1.1rem;
	margin: 32px 0;
	opacity: 0.85;
}
.gift-summary {
	background: rgba(66,69,76,0.10);
	border-radius: 8px;
	padding: 12px 18px;
	margin: 18px 0;
	color: #ff00007a;
	font-size: 1rem;
	text-align: center;
}