#wochenkarte-sticky-buttons {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

#wochenkarte-sticky-buttons .sticky-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #18312e;
	color: #e6b15f;
	text-decoration: none;
	padding: 20px 10px;
	border: 1px solid #e6b15f;
	border-right: none;
	border-radius: 8px 0 0 8px;
	font-weight: 600;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 2px;
	transition: all 0.2s ease;
	min-height: 180px;
}

#wochenkarte-sticky-buttons .sticky-tab:hover,
#wochenkarte-sticky-buttons .sticky-tab:focus {
	background: #21423d;
	color: #e6b15f;
}

/* Startseite: initial versteckt */
#wochenkarte-sticky-buttons.is-hidden-on-home {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Startseite: nach Scroll sichtbar */
#wochenkarte-sticky-buttons.is-visible-on-home {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Angebotsseite / Rest */
.wa-angebote-page {
	padding: 2rem 0;
}

.wa-angebote-container {
	width: min(1200px, calc(100% - 2rem));
	margin: 0 auto;
}

.wa-angebote-header {
	margin-bottom: 2rem;
}

.wa-angebote-title {
	margin: 0;
}

.wa-angebote-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.wa-angebot-row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.wa-angebot-thumb {
	flex: 0 0 100px;
}

.wa-angebot-thumb img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.wa-angebot-body {
	flex: 1;
}

.wa-angebot-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	flex-wrap: wrap;
}

.wa-angebot-title {
	margin: 0;
	font-size: 1.3rem;
}

.wa-angebot-title a {
	text-decoration: none;
}

.wa-angebot-meta {
	display: flex;
	gap: 15px;
	font-weight: 600;
}

.wa-angebot-price {
	color: #18312e;
}

.wa-angebot-date {
	color: #666;
	font-size: 0.9rem;
}

.wa-angebot-text {
	margin-top: 10px;
}

.wa-angebote-empty {
	padding: 2rem 0;
}

/* Mobil: Buttons unten nebeneinander */
@media (max-width: 767px) {
	#wochenkarte-sticky-buttons {
		top: auto;
		bottom: 0px;
		right: 0px;
		left: 0px;
		transform: none;
		flex-direction: row;
		align-items: stretch;
		justify-content: center;
		gap: 10px;
		background-color: #18312e;
    	padding: 12px;
	}

	#wochenkarte-sticky-buttons .sticky-tab {
		flex: 1 1 0;
		min-height: auto;
		padding: 12px 16px;
		writing-mode: horizontal-tb;
		text-orientation: initial;
		letter-spacing: 0;
		border-right: 1px solid #e6b15f;
		border-radius: 8px;
	}

	.wa-angebot-row {
		gap: 14px;
	}

	.wa-angebot-thumb {
		flex: 0 0 80px;
	}

	.wa-angebot-thumb img {
		width: 80px;
		height: 80px;
	}

	.wa-angebot-title {
		font-size: 1.1rem;
	}
}

/* Angebotsliste */

.wa-angebote-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.wa-angebot-row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

/* Bild */

.wa-angebot-thumb {
	flex: 0 0 100px;
}

.wa-angebot-thumb img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

/* Inhalt */

.wa-angebot-body {
	flex: 1;
}

.wa-angebot-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	flex-wrap: wrap;
}

.wa-angebot-title {
	margin: 0;
	font-size: 1.3rem;
}

.wa-angebot-meta {
	display: flex;
	gap: 15px;
	font-weight: 600;
}

.wa-angebot-price {
	color: #18312e;
}

.wa-angebot-date {
	color: #666;
	font-size: 0.9rem;
}

.wa-angebot-text {
	margin-top: 10px;
}