/*
Theme Name: cups

WooCommerce styles override

Farbschema:
  --rosa         : #E05D84  (Primäre CTAs, Akzente, Nav-Hover)
  --rosa-hover   : #c94878  (Hover auf rosa Buttons)
  --hellblau     : #C8DBE8  (Hintergrund-Flächen)
  --gelb         : #F9CA4F  (Sekundäre Buttons, Produktkarten)
  --amber        : #F0A800  (Hover auf gelben Buttons)
  --rot          : #c0392b  (Sale-Badges, Sale-Preise)
  --dunkelblau   : #1A3548  (Hero-Hintergrund, Promo-Flächen)
  --text         : #2c2c2c
*/

/**
 * Shop tables
 */
table.shop_table_responsive thead {
	display: none;
}

table.shop_table_responsive tbody th {
	display: none;
}

table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	clear: both;
}

table.shop_table_responsive tr td::before {
	content: attr(data-title) ": ";
	float: left;
}

table.shop_table_responsive tr td.product-remove a {
	text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
	display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
	display: none;
}

table.shop_table_responsive tr td.download-actions .button {
	display: block;
	text-align: center;
}

@media screen and (min-width: 48em) {

	table.shop_table_responsive thead {
		display: table-header-group;
	}

	table.shop_table_responsive tbody th {
		display: table-cell;
	}

	table.shop_table_responsive tr th,
	table.shop_table_responsive tr td {
		text-align: left;
	}

	table.shop_table_responsive tr td {
		display: table-cell;
	}

	table.shop_table_responsive tr td::before {
		display: none;
	}
}

/**
 * Products – Grid
 */
ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	float: none !important;
	clear: both;
}

ul.products.columns-2 { grid-template-columns: repeat(2, 1fr); }
ul.products.columns-3 { grid-template-columns: repeat(3, 1fr); }
ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
ul.products.columns-5 { grid-template-columns: repeat(5, 1fr); }

ul.products li.product {
	list-style: none;
	position: relative;
	background: #fff;
	border: 1px solid #f0ede8;
	border-radius: 8px;
	padding: 0;
	margin: 0 !important;
	float: none !important;
	width: auto !important;
	transition: transform 0.35s cubic-bezier(.22,.68,0,1), box-shadow 0.35s cubic-bezier(.22,.68,0,1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

ul.products li.product:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
	border-color: #e5e0d8;
}

/* Link-Wrapper füllt Resthöhe, Button bleibt unten */
ul.products li.product > a.woocommerce-loop-product__link {
	flex: 0 0 auto;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .star-rating,
ul.products li.product .price,
ul.products li.product .wc-gzd-additional-info,
ul.products li.product .woocommerce-additional-info {
	padding-left: 0;
	padding-right: 0;
}

ul.products li.product .button {
	margin-top: auto;
}

/* Produktbild-Wrapper */
ul.products li.product a.woocommerce-loop-product__link {
	display: block;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	background: #f8f6f3;
}

/* Placeholder wenn kein Bild vorhanden */
ul.products li.product a.woocommerce-loop-product__link img.wp-post-image[src*="placeholder"],
ul.products li.product a.woocommerce-loop-product__link img.wp-post-image[src*="woocommerce-placeholder"] {
	opacity: 0.4;
	mix-blend-mode: multiply;
}

ul.products li.product a.woocommerce-loop-product__link img,
ul.products li.product img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #f8f6f3;
	transition: opacity 0.4s ease, transform 0.6s cubic-bezier(.22,.68,0,1);
}

ul.products li.product:hover a.woocommerce-loop-product__link > img:first-child {
	transform: scale(1.04);
}

/* Hover-Bild: liegt absolut über dem Hauptbild */
ul.products li.product img.product-img-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.4s ease;
}

ul.products li.product:hover img.product-img-hover {
	opacity: 1;
}

/* Hauptbild leicht abdunkeln wenn Hover-Bild sichtbar */
ul.products li.product:hover a.woocommerce-loop-product__link > img:not(.product-img-hover) {
	opacity: 0.15;
}

/* Produktinfos – padding seitlich */
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .star-rating,
ul.products li.product .price,
ul.products li.product .wc-gzd-additional-info,
ul.products li.product .woocommerce-additional-info {
	padding-left: 0;
	padding-right: 0;
}

/* Produkttitel */
ul.products li.product .woocommerce-loop-product__title {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	color: #222;
	line-height: 1.35;
	margin: 0;
	padding: 16px 16px 6px;
	text-decoration: none;
	letter-spacing: 0.01em;
}

ul.products li.product a {
	text-decoration: none;
}

/* Sternebewertung */
ul.products li.product .star-rating {
	margin: 0 0 6px;
	padding: 0 16px;
	font-size: 0.78rem;
}

ul.products li.product .star-rating::before,
ul.products li.product .star-rating span::before {
	color: #F9CA4F;
}

/* Preis */
ul.products li.product .price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 5px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
	padding: 0 16px;
	margin: 0 0 4px;
	min-height: 1.5em;
	letter-spacing: -0.01em;
}

ul.products li.product .price del {
	color: #bbb;
	font-weight: 400;
	font-size: 0.82rem;
}

ul.products li.product .price del .woocommerce-Price-amount {
	color: #bbb;
}

ul.products li.product .price ins {
	text-decoration: none;
	color: #c0392b;
}

/* MwSt. & Versandkosten */
ul.products li.product .woocommerce-loop-product__tax,
ul.products li.product .wc-gzd-additional-info,
ul.products li.product .woocommerce-additional-info {
	font-size: 0.7rem;
	color: #bbb;
	padding: 0 16px;
	margin: 0 0 8px;
	line-height: 1.4;
	min-height: 2em;
}

ul.products li.product .wc-gzd-additional-info a,
ul.products li.product .woocommerce-additional-info a {
	color: #ccc;
	text-decoration: none;
}

/* Farbkreise auf Produkt-Tiles */
.product-color-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 4px 0 10px;
	padding: 0 16px;
	justify-content: center;
}

.color-swatch {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.color-swatch:hover {
	transform: scale(1.25);
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Button */
ul.products li.product .button {
	display: block;
	width: calc(100% - 24px);
	margin: auto 12px 12px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 11px 12px;
	font-family: "Jost", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
	box-sizing: border-box;
}

ul.products li.product .button:hover {
	background: #E05D84;
	color: #fff;
	transform: translateY(-1px);
}

@media screen and (max-width: 900px) {
	ul.products,
	ul.products.columns-4 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media screen and (max-width: 480px) {
	ul.products,
	ul.products.columns-4 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px;
	}
}

/**
 * Globale WooCommerce Buttons
 */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: #111;
	color: #fff;
	border-radius: 6px;
	padding: 12px 28px;
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: #333;
	color: #fff;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: #F9CA4F;
	color: #000;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background: #f0a800;
	color: #000;
}

/**
 * Sale Badge
 */
.woocommerce span.onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #c0392b;
	color: #fff;
	border-radius: 4px;
	font-family: "Jost", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	min-height: auto;
	min-width: auto;
	line-height: 1.5;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(192,57,43,0.25);
}

/**
 * Single product
 */
.single-product div.product {
	position: relative;
}

/* Two-column layout: gallery left, summary right */
.single-product div.product .woocommerce-product-gallery {
	position: relative;
	float: left;
	width: 54%;
	padding-right: 48px;
	box-sizing: border-box;
}

.single-product div.product .summary.entry-summary {
	float: right;
	width: 46%;
	box-sizing: border-box;
	padding-top: 4px;
}

/* Clear floats so tabs/related sit below both columns */
.single-product div.product .woocommerce-tabs,
.single-product div.product .related.products,
.single-product div.product .upsells.products {
	clear: both;
	float: none;
	width: 100%;
}

/* Galerie: Hintergrund + Caption ausblenden */
.single-product .woocommerce-product-gallery__image {
	background: #f8f6f3;
	border-radius: 8px;
	overflow: hidden;
}

.single-product .woocommerce-product-gallery__image img {
	border-radius: 8px;
}

.single-product .woocommerce-product-gallery figcaption {
	display: none;
}

/* Product title */
.single-product .product_title {
	font-family: "Bodoni Moda", serif;
	font-size: 1.9rem;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 10px;
	color: #111;
}

/* Rating */
.single-product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	font-size: 0.82rem;
	color: #888;
}

.single-product .woocommerce-product-rating a {
	color: #888;
	text-decoration: none;
}

.single-product .woocommerce-product-rating a:hover {
	color: #111;
}

/* Price */
.single-product p.price,
.single-product span.price {
	font-family: "Jost", sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 4px;
	line-height: 1;
}

.single-product p.price del,
.single-product span.price del {
	color: #bbb;
	font-weight: 400;
	font-size: 1.1rem;
	margin-right: 6px;
}

.single-product p.price ins,
.single-product span.price ins {
	text-decoration: none;
	color: #c0392b;
}

/* Lagerbestand */
.single-product .stock {
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	margin-bottom: 18px;
}

.single-product .in-stock {
	color: #2a9d5c;
}

.single-product .out-of-stock {
	color: #c0392b;
}

/* MwSt / shipping info */
.single-product .woocommerce-variation-price,
.single-product .wc-gzd-additional-info,
.single-product .woocommerce-additional-info {
	font-size: 0.75rem;
	color: #bbb;
	margin-bottom: 18px;
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 24px;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

/* Quantity + Add to cart */
.single-product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

/* Variable Produkte: Variationen oben, Quantity+Button darunter */
.single-product form.cart.variations_form {
	flex-wrap: wrap;
}

.single-product form.cart.variations_form .variations {
	width: 100%;
	flex-basis: 100%;
	margin-bottom: 8px;
}

.single-product form.cart.variations_form .single_variation_wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.single-product form.cart.variations_form .woocommerce-variation {
	margin-bottom: 12px;
	width: 100%;
}

.single-product form.cart.variations_form .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.single-product form.cart .quantity {
	display: flex;
	align-items: center;
}

.single-product form.cart .quantity input.qty {
	width: 60px;
	height: 48px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: "Jost", sans-serif;
	font-size: 1rem;
	background: #fff;
	color: #111;
}

.single-product form.cart .single_add_to_cart_button {
	flex: 1;
	height: 52px;
	background: #E05D84;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
}

.single-product form.cart .single_add_to_cart_button:hover {
	background: #c94878;
	color: #fff;
	box-shadow: 0 4px 16px rgba(224,93,132,0.3);
	transform: translateY(-1px);
}

/* Product meta (SKU, Kategorie) */
.single-product .product_meta {
	font-size: 0.8rem;
	color: #999;
	margin-top: 20px;
	border-top: 1px solid #eee;
	padding-top: 16px;
}

.single-product .product_meta span {
	display: block;
	margin-bottom: 4px;
}

.single-product .product_meta a {
	color: #555;
	text-decoration: none;
}

.single-product .product_meta a:hover {
	color: #000;
}

/* Tabs (Beschreibung / Bewertungen) */
.single-product .woocommerce-tabs {
	margin-top: 50px;
}

.single-product .woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0 0 0;
	padding: 0;
	display: flex;
	gap: 0;
	border-bottom: 2px solid #eee;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 12px 24px;
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #999;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.2s, border-color 0.2s;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	color: #111;
	border-bottom-color: #111;
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: #111;
}

.single-product .woocommerce-tabs .panel {
	padding: 30px 0;
	font-size: 0.9rem;
	line-height: 1.8;
	color: #444;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	color: #aaa;
	margin-bottom: 28px;
	padding: 0;
}

.woocommerce-breadcrumb a {
	color: #aaa;
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	color: #111;
}

/* USP-Liste unter dem Warenkorb-Button */
.product-usps {
	list-style: none;
	margin: 0;
	padding: 16px 0 0;
	border-top: 1px solid #eee;
}

.product-usps li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: #555;
	padding: 6px 0;
}

.product-usps li svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: #111;
}

.usp-legal-link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Galerie-Thumbnails */
.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	float: none;
	width: calc(25% - 6px);
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.55;
	border: 2px solid transparent;
	transition: opacity 0.2s, border-color 0.2s;
	display: block;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
	opacity: 1;
	border-color: #111;
}

/* Hauptbild */
.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Bewertungen im Tab */
.single-product #reviews #comments ol.commentlist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-product #reviews #comments ol.commentlist li {
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}

.single-product #reviews #comments ol.commentlist li:last-child {
	border-bottom: none;
}

.single-product #reviews #comments .comment-text {
	font-size: 0.88rem;
	line-height: 1.7;
	color: #444;
}

.single-product #reviews #respond h3 {
	font-family: "Bodoni Moda", serif;
	font-size: 1.2rem;
	margin-bottom: 16px;
}

/* Related + Upsell products */
.single-product .related.products,
.single-product .upsells.products {
	margin-top: 80px;
	padding-top: 48px;
	border-top: 1px solid #eee;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	font-family: "Bodoni Moda", serif;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 24px;
	color: #111;
}

/* Responsive single product */
@media screen and (max-width: 768px) {
	.single-product div.product .woocommerce-product-gallery {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}

	.single-product div.product .summary.entry-summary {
		float: none;
		width: 100%;
	}

	.single-product .product_title {
		font-size: 1.5rem;
	}

	.single-product form.cart {
		flex-wrap: wrap;
	}

	.single-product form.cart .single_add_to_cart_button {
		flex: 1 1 100%;
	}
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 2em;
	right: 1em;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.79667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}

.stock:empty::before {
	display: none;
}

.stock.in-stock {
	color: #0f834d;
}

.stock.out-of-stock {
	color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {

	.col2-set .form-row-first {
		float: left;
		margin-right: 3.8%;
	}

	.col2-set .form-row-last {
		float: right;
		margin-right: 0;
	}

	.col2-set .form-row-first,
	.col2-set .form-row-last {
		width: 48.1%;
	}
}

/**
 * General WooCommerce components
 */

/**
 * Header cart
 */
.site-header-cart {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.site-header-cart .cart-contents {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #E05D84;
	color: #fff;
	padding: 10px 20px;
	border-radius: 0;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: background 0.2s ease;
}

.site-header-cart .cart-contents:hover {
	background: #c94878;
}

.site-header-cart .cart-contents .amount {
	font-weight: 700;
}

.site-header-cart .widget_shopping_cart {
	display: none;
}

.site-header-cart .product_list_widget {
	margin: 0;
	padding: 0;
}

/**
 * Star rating
 */
.star-rating {
	overflow: hidden;
	position: relative;
	height: 1.618em;
	line-height: 1.618;
	width: 5.3em;
	font-family: star;
	font-weight: 400;
}

.star-rating::before {
	content: "\53\53\53\53\53";
	opacity: 0.25;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: #000000;
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px;
	font-weight: 400;
}

p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: star;
	content: "\53";
	color: #404040;
	text-indent: 0;
	opacity: 0.25;
}

p.stars a:hover ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars:hover a::before {
	content: "\53";
	color: #000000;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "\53";
	color: #000000;
	opacity: 1;
}

p.stars.selected a.active ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
	content: "\53";
	color: #000000;
	opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0;
	position: relative;
}

.woocommerce-tabs ul.tabs li a {
	padding: 1em 0;
	display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
	text-align: right;
}

.woocommerce-password-strength.strong {
	color: #0f834d;
}

.woocommerce-password-strength.short {
	color: #e2401c;
}

.woocommerce-password-strength.bad {
	color: #e2401c;
}

.woocommerce-password-strength.good {
	color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
	box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	box-shadow: inset 2px 0 0 #e2401c;
}

.required {
	color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background-color: #000000;
	color: #fff;
	clear: both;
	border-radius: 5px;
	padding: 12px 16px;
	margin-bottom: 1em;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	background-color: #f5f5f5;
	color: #000000;
	border-left: 4px solid #000000;
}

.woocommerce-error {
	background-color: #fdf0ee;
	color: #c0392b;
	border-left: 4px solid #c0392b;
}

.woocommerce-message a.button {
	background: #fff;
	color: #000000;
}

.woocommerce-message a.button:hover {
	background: #f5f5f5;
	color: #000000;
}

.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em;
	background-color: #000000;
	color: #fff;
	z-index: 9999;
}

@media screen and (min-width: 48em) {

	/**
	 * Header cart
	 */
	.site-header-cart .widget_shopping_cart {
		position: absolute;
		top: 100%;
		width: 100%;
		z-index: 999999;
		left: -999em;
		display: block;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	}

	.site-header-cart:hover .widget_shopping_cart,
	.site-header-cart.focus .widget_shopping_cart {
		left: 0;
		display: block;
	}
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
	margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
	text-align: right;
	line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
	float: left;
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1em;
	height: 1em;
	cursor: ew-resize;
	outline: none;
	background: #000000;
	box-sizing: border-box;
	margin-top: -0.25em;
	opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
	box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background: #000000;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
	height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	height: 100%;
}

/**
 * WPC Frequently Bought Together – Theme-Styling
 */

/* Wrapper */
.woobt-wrap {
	margin-top: 50px;
	padding: 28px 30px;
	border: 1px solid #e8e8e8;
	background: #ddeef7;
	clear: both;
}

/* Heading */
.woobt-wrap .woobt-text {
	font-family: "Bodoni Moda", serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #111;
	margin-bottom: 20px !important;
}

/* Bilder-Reihe oben */
.woobt-images {
	margin-bottom: 20px;
	gap: 0;
}

.woobt-images .woobt-image {
	width: 90px;
	flex: 0 0 90px;
	margin-right: 30px;
}

.woobt-images .woobt-image img {
	border-radius: 2px;
	background: #fff;
	padding: 4px;
	border: 1px solid #eee;
}

/* "+" Zeichen zwischen den Bildern */
.woobt-images .woobt-image:not(.woobt-image-this)::before {
	content: "+";
	font-family: "Jost", sans-serif;
	font-size: 1.2rem;
	font-weight: 300;
	color: #999;
	left: -18px;
	top: 50%;
}

/* Ausgegrautes Bild wenn abgewählt */
.woobt-images .woobt-image.woobt-image-hide img {
	opacity: 0.25;
	filter: grayscale(100%);
}

/* Produkt-Liste */
.woobt-products {
	border-color: #eee;
	border-style: solid;
	border-width: 1px 0 0 0;
}

.woobt-products .woobt-product {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

/* Checkbox */
.woobt-products .woobt-product .woobt-checkbox {
	width: 17px;
	height: 17px;
	accent-color: #111;
	cursor: pointer;
	flex-shrink: 0;
}

/* Thumbnail in der Liste */
.woobt-products .woobt-product .woobt-thumb {
	width: 44px;
	flex: 0 0 44px;
}

.woobt-products .woobt-product .woobt-thumb img {
	border-radius: 2px;
	border: 1px solid #eee;
}

/* Produktname */
.woobt-products .woobt-product .woobt-title {
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	color: #222;
}

.woobt-products .woobt-product .woobt-title a {
	color: #222;
	font-weight: 500;
}

.woobt-products .woobt-product .woobt-title a:hover {
	color: #000;
	text-decoration: underline;
}

/* Varianten-Dropdown */
.woobt-products .woobt-product .variations_form .variations .variation {
	border: 1px solid #ddd;
	border-radius: 0;
	background: #fff;
	padding: 4px 8px;
	font-size: 0.8rem;
}

/* Preis pro Produkt */
.woobt-products .woobt-product .woobt-price {
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: #111;
}

.woobt-products .woobt-product .woobt-price del {
	color: #bbb;
	font-weight: 400;
	font-size: 0.8rem;
}

.woobt-products .woobt-product .woobt-price ins {
	color: #c0392b;
	text-decoration: none;
}

/* Gesamtpreis + Button */
.woobt-total {
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 12px !important;
}

.woobt-total .woobt-total-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: #111;
}

.woobt-total del {
	color: #bbb;
	font-weight: 400;
}

/* "In den Warenkorb"-Button */
.woobt-actions .single_add_to_cart_button {
	background: #E05D84 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	font-family: "Jost", sans-serif !important;
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	padding: 14px 28px !important;
	cursor: pointer;
	transition: background 0.2s ease !important;
}

.woobt-actions .single_add_to_cart_button:hover {
	background: #c94878 !important;
}

/* Nicht-verfügbare Produkte */
.woobt-products .woobt-product.woobt-hide .woobt-title,
.woobt-products .woobt-product.woobt-hide .woobt-price {
	opacity: 0.4;
}

@media screen and (max-width: 768px) {
	.woobt-wrap {
		padding: 20px 16px;
	}

	.woobt-images .woobt-image {
		width: 70px;
		flex: 0 0 70px;
		margin-right: 22px;
	}
}

/**
 * Brand-Story-Sektion auf der Produktseite
 */
.cups-brand-story {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-top: 70px;
	clear: both;
	padding: 48px;
	background: #f9f7f4;
	border-radius: 12px;
}

/* Einzelnes Portrait-Foto */
.cups-brand-photo-single {
	flex: 0 0 200px;
}

.cups-brand-photo-single img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* Text-Spalte */
.cups-brand-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.cups-brand-title {
	font-family: "Bodoni Moda", serif;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.1;
	margin: 0 0 20px;
	color: #111;
}

.cups-brand-sub {
	font-family: "Jost", sans-serif;
	font-size: 0.95rem;
	font-style: italic;
	color: #555;
	margin: 0 0 16px;
	line-height: 1.6;
}

.cups-brand-desc {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	line-height: 1.85;
	color: #666;
	margin: 0 0 32px;
}

.cups-brand-btn {
	display: inline-block;
	align-self: flex-start;
	background: #E05D84;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 13px 26px;
	transition: background 0.2s ease;
}

.cups-brand-btn:hover {
	background: #c94878;
	color: #fff;
}

@media screen and (max-width: 900px) {
	.cups-brand-story {
		flex-direction: column;
		text-align: center;
		padding: 32px 24px;
		gap: 24px;
	}

	.cups-brand-photo-single {
		flex: 0 0 auto;
	}

	.cups-brand-photo-single img {
		width: 160px;
		height: 160px;
	}

	.cups-brand-btn {
		align-self: center;
	}

	.cups-brand-title {
		font-size: 2rem;
	}
}

/**
 * Login / My Account
 */
.cups-account-login {
	max-width: 960px;
	margin: 60px auto;
}

/* Zweispaltig: Login + Registrierung */
.cups-account-login--split {
	display: grid;
	grid-template-columns: 1fr 40px 1fr;
	gap: 0;
	align-items: start;
}

/* Einspaltig: nur Login */
.cups-account-login--single .cups-login-box {
	max-width: 440px;
	margin: 0 auto;
}

/* Vertikaler Trenner */
.cups-login-divider {
	width: 1px;
	background: #e8e8e8;
	align-self: stretch;
	margin: 20px auto;
}

/* Box */
.cups-login-col {
	padding: 0 48px;
}

.cups-login-col:first-child {
	padding-left: 0;
}

.cups-login-col:last-child {
	padding-right: 0;
}

/* Eyebrow */
.cups-login-eyebrow {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #aaa;
	margin: 0 0 12px;
}

/* Titel */
.cups-login-title {
	font-family: "Bodoni Moda", serif;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.1;
	margin: 0 0 12px;
	color: #111;
}

/* Subtext */
.cups-login-sub {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	color: #888;
	margin: 0 0 32px;
}

/* Formularfeld */
.cups-form-field {
	margin-bottom: 20px;
}

.cups-form-field label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #333;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.cups-forgot-link {
	font-weight: 400;
	font-size: 0.75rem;
	color: #aaa;
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
}

.cups-forgot-link:hover {
	color: #111;
}

.cups-form-field input.input-text {
	width: 100%;
	height: 48px;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 0 14px;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #111;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s;
	outline: none;
}

.cups-form-field input.input-text:focus {
	border-color: #111;
}

/* Checkbox Angemeldet bleiben */
.cups-form-remember {
	margin-bottom: 24px;
}

.cups-form-remember label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: #666;
	cursor: pointer;
}

.cups-form-remember input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #111;
	flex-shrink: 0;
}

/* Anmelden-Button */
.cups-btn-login {
	display: block;
	width: 100%;
	height: 50px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s;
	margin-bottom: 0;
}

.cups-btn-login:hover {
	background: #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Registrieren-Vorteile */
.cups-register-benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.cups-register-benefits li {
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	color: #555;
	padding: 6px 0 6px 24px;
	position: relative;
	line-height: 1.5;
}

.cups-register-benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #E05D84;
	opacity: 0.2;
}

.cups-register-benefits li::after {
	content: '\2713';
	position: absolute;
	left: 1px;
	top: 5px;
	font-size: 0.7rem;
	color: #E05D84;
	font-weight: 700;
}

/* Registrieren-Button */
.cups-btn-register {
	display: block;
	width: 100%;
	height: 50px;
	background: #E05D84;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s;
	margin-bottom: 16px;
}

.cups-btn-register:hover {
	background: #c94878;
	box-shadow: 0 4px 12px rgba(224, 93, 132, 0.25);
}

/* Hinweistexte */
.cups-register-note {
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	color: #999;
	margin-bottom: 20px;
	line-height: 1.6;
}

.cups-privacy-note {
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	color: #bbb;
	line-height: 1.6;
	margin: 0;
}

.cups-privacy-note a {
	color: #888;
	text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.cups-account-login--split {
		grid-template-columns: 1fr;
	}

	.cups-login-divider {
		width: auto;
		height: 1px;
		margin: 40px 0;
	}

	.cups-login-col,
	.cups-login-col:first-child,
	.cups-login-col:last-child {
		padding: 0;
	}

	.cups-login-title {
		font-size: 1.8rem;
	}
}

/**
 * My Account – Dashboard (nach dem Login)
 */

/* Seitenlayout: Navigation links, Inhalt rechts – nur wenn eingeloggt */
.woocommerce-account.logged-in .woocommerce {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	align-items: start;
	margin-top: 48px;
	margin-bottom: 64px;
}

/* Navigation */
.woocommerce-MyAccount-navigation {
	border-right: 1px solid #eee;
	padding-right: 32px;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
	margin: 0;
	padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #888;
	text-decoration: none;
	padding: 9px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: color 0.15s;
}

.woocommerce-MyAccount-navigation ul li a:hover {
	color: #111;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
	color: #111;
	font-weight: 700;
}

/* Abmelden-Link rot */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #bbb;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	color: #c0392b;
}

/* Inhalt */
.woocommerce-MyAccount-content {
	min-width: 0;
}

.woocommerce-MyAccount-content p {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	line-height: 1.7;
	color: #555;
}

.woocommerce-MyAccount-content p strong {
	color: #111;
}

.woocommerce-MyAccount-content a {
	color: #111;
}

/* Bestellungen-Tabelle */
.woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-MyAccount-content table.shop_table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	color: #333;
}

.woocommerce-MyAccount-content table thead th {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #aaa;
	border-bottom: 2px solid #eee;
	padding: 8px 12px 8px 0;
	text-align: left;
}

.woocommerce-MyAccount-content table tbody td {
	padding: 14px 12px 14px 0;
	border-bottom: 1px solid #f0f0f0;
	vertical-align: middle;
}

.woocommerce-MyAccount-content table tbody tr:last-child td {
	border-bottom: none;
}

/* Bestellstatus-Badge */
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status mark {
	background: #f5f5f0;
	color: #555;
	padding: 3px 10px;
	border-radius: 2px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.woocommerce-MyAccount-content mark.completed {
	background: #e6f4ec;
	color: #2a9d5c;
}

.woocommerce-MyAccount-content mark.processing {
	background: #fff8e6;
	color: #b07d00;
}

.woocommerce-MyAccount-content mark.cancelled,
.woocommerce-MyAccount-content mark.refunded {
	background: #fdf0ee;
	color: #c0392b;
}

/* Formulare (Adresse, Kontodetails) */
.woocommerce-MyAccount-content .woocommerce-address-fields,
.woocommerce-MyAccount-content .woocommerce-edit-account {
	max-width: 600px;
}

.woocommerce-MyAccount-content .form-row label {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #333;
	margin-bottom: 7px;
}

.woocommerce-MyAccount-content .form-row input.input-text,
.woocommerce-MyAccount-content .form-row select {
	width: 100%;
	height: 48px;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 0 14px;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #111;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s;
	outline: none;
}

.woocommerce-MyAccount-content .form-row input.input-text:focus,
.woocommerce-MyAccount-content .form-row select:focus {
	border-color: #111;
}

.woocommerce-MyAccount-content fieldset {
	border: 1px solid #eee;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.woocommerce-MyAccount-content fieldset legend {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #aaa;
	padding: 0 8px;
}

/* Seitenüberschriften im Mitgliederbereich */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
	font-family: "Bodoni Moda", serif;
	font-weight: 500;
	color: #111;
	margin-bottom: 20px;
}

.woocommerce-MyAccount-content h2 {
	font-size: 1.6rem;
}

.woocommerce-MyAccount-content h3 {
	font-size: 1.2rem;
}

/* Adressen-Grid */
.woocommerce-MyAccount-content .woocommerce-Addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.woocommerce-MyAccount-content .woocommerce-Address-title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 14px;
}

.woocommerce-MyAccount-content .woocommerce-Address-title h3 {
	margin: 0;
	font-size: 0.9rem;
}

.woocommerce-MyAccount-content .woocommerce-Address-title a {
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	color: #aaa;
	text-decoration: none;
}

.woocommerce-MyAccount-content .woocommerce-Address-title a:hover {
	color: #111;
}

.woocommerce-MyAccount-content address {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	line-height: 1.8;
	color: #555;
	font-style: normal;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.woocommerce-account.logged-in .woocommerce {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-top: 32px;
	}

	.woocommerce-MyAccount-navigation {
		border-right: none;
		border-bottom: 1px solid #eee;
		padding-right: 0;
		padding-bottom: 24px;
	}

	.woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		gap: 0;
	}

	.woocommerce-MyAccount-navigation ul li a {
		padding: 7px 14px 7px 0;
		border-bottom: none;
		border-right: 1px solid #eee;
		margin-right: 14px;
	}

	.woocommerce-MyAccount-content .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}
}

/**
 * Passwort vergessen / Zurücksetzen
 */
.woocommerce-ResetPassword,
.woocommerce-LostPassword {
	max-width: 440px;
	margin: 60px auto;
}

.woocommerce-ResetPassword,
.woocommerce-LostPassword {
	font-family: "Jost", sans-serif;
}

.woocommerce-ResetPassword p,
.woocommerce-LostPassword p {
	font-size: 0.88rem;
	color: #888;
	margin-bottom: 24px;
	line-height: 1.6;
}

.woocommerce-ResetPassword .form-row label,
.woocommerce-LostPassword .form-row label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #333;
	margin-bottom: 7px;
}

.woocommerce-ResetPassword .form-row input.input-text,
.woocommerce-LostPassword .form-row input.input-text {
	width: 100%;
	height: 48px;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 0 14px;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #111;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s;
	outline: none;
}

.woocommerce-ResetPassword .form-row input.input-text:focus,
.woocommerce-LostPassword .form-row input.input-text:focus {
	border-color: #111;
}

/**
 * WooCommerce-Seitentitel ausblenden
 * (Cart, Checkout, My Account haben eigene Überschriften)
 */
.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header,
.woocommerce-account .entry-header {
	display: none;
}

/**
 * Warenkorb (Cart)
 */

/* 2-Spalten-Layout: Tabelle links, Summen rechts */
.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
	margin-bottom: 64px;
}

.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

/* Cart-Tabelle */
table.cart thead th {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #aaa;
	border-bottom: 2px solid #eee;
	padding: 0 12px 12px 0;
	text-align: left;
}

table.cart td {
	padding: 20px 12px 20px 0;
	border-bottom: 1px solid #f0f0f0;
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	color: #333;
	vertical-align: middle;
}

/* Entfernen-Button */
table.cart td.product-remove a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #ccc;
	font-size: 1.3rem;
	line-height: 1;
	text-decoration: none;
	transition: color 0.15s;
}

table.cart td.product-remove a:hover {
	color: #c0392b;
	background: none;
}

/* Thumbnail */
table.cart td.product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	display: block;
	background: #f5f5f5;
}

/* Produktname */
table.cart td.product-name a {
	font-weight: 600;
	color: #111;
	text-decoration: none;
	font-family: "Jost", sans-serif;
}

table.cart td.product-name a:hover {
	color: #555;
}

table.cart td.product-name .variation {
	font-size: 0.78rem;
	color: #999;
	margin-top: 4px;
	font-weight: 400;
}

/* Preis */
table.cart td.product-price,
table.cart td.product-subtotal {
	font-weight: 600;
	color: #111;
}

/* Mengen-Input */
table.cart td.product-quantity input.qty {
	width: 56px;
	height: 42px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 0;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #111;
	outline: none;
}

table.cart td.product-quantity input.qty:focus {
	border-color: #111;
}

/* Aktionszeile (Coupon + Aktualisieren) */
table.cart td.actions {
	border-bottom: none;
	padding-top: 24px;
}

.coupon {
	display: flex;
	gap: 8px;
	align-items: center;
	float: left;
}

.coupon #coupon_code {
	height: 44px;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 0 14px;
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	color: #111;
	width: 180px;
	outline: none;
	transition: border-color 0.2s;
}

.coupon #coupon_code:focus {
	border-color: #111;
}

.coupon #coupon_code::placeholder {
	color: #ccc;
}

/* Summen-Box */
.cart_totals {
	background: #ddeef7;
	border: 1px solid #e8e8e8;
	padding: 28px;
}

.cart_totals > h2 {
	font-family: "Bodoni Moda", serif;
	font-size: 1.25rem;
	font-weight: 500;
	margin: 0 0 20px;
	color: #111;
}

.cart_totals table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Jost", sans-serif;
	margin-bottom: 0;
}

.cart_totals table th,
.cart_totals table td {
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 0.88rem;
	color: #555;
	text-align: left;
	vertical-align: middle;
}

.cart_totals table th {
	font-weight: 500;
	width: 45%;
}

.cart_totals table .order-total th,
.cart_totals table .order-total td {
	border-bottom: none;
	font-weight: 700;
	font-size: 1.05rem;
	color: #111;
	padding-top: 16px;
}

/* MwSt-Betrag-Zeile in Warenkorb & Checkout ausblenden (Germanized: order-tax) */
.cart_totals table tr.order-tax,
.woocommerce-checkout-review-order-table tr.order-tax,
.cart_totals table tr.tax-rate,
.woocommerce-checkout-review-order-table tr.tax-rate {
	display: none;
}

/* "Zur Kasse"-Button */
.wc-proceed-to-checkout {
	margin-top: 20px;
}

.wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	text-align: center;
	background: #E05D84;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 20px;
	box-sizing: border-box;
	transition: background 0.2s;
}

.wc-proceed-to-checkout a.checkout-button:hover {
	background: #c94878;
	color: #fff;
}

/* Leerer Warenkorb */
.cart-empty {
	font-family: "Jost", sans-serif;
	font-size: 1rem;
	color: #888;
	text-align: center;
	padding: 60px 0 20px;
}

.woocommerce-cart .return-to-shop {
	text-align: center;
	margin-top: 16px;
}

.woocommerce-cart .return-to-shop .button {
	background: #F9CA4F;
	color: #000 !important;
}

.woocommerce-cart .return-to-shop .button:hover {
	background: #f0a800;
}

@media screen and (max-width: 900px) {
	.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr;
	}

	.cart_totals {
		margin-top: 8px;
	}
}

/**
 * Kasse (Checkout)
 */

/* Zweispaltig: Kundendaten links, Bestellübersicht rechts */
form.woocommerce-checkout {
	display: grid;
	grid-template-columns: 1fr 420px;
	grid-template-rows: auto 1fr;
	gap: 0 48px;
	align-items: start;
}

form.woocommerce-checkout #customer_details {
	grid-column: 1;
	grid-row: 1 / 3;
}

form.woocommerce-checkout h3#order_review_heading {
	grid-column: 2;
	grid-row: 1;
	font-family: "Bodoni Moda", serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #111;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

form.woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 2;
}

/* Abschnittsüberschriften */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
	font-family: "Jost", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 20px;
	padding-bottom: 0;
	border-bottom: none;
	letter-spacing: 0.01em;
}

/* Billing/Shipping stapeln (nicht nebeneinander im engen Grid) */
#customer_details .col-1,
#customer_details .col-2 {
	width: 100%;
	float: none;
	margin: 0;
}

/* Formularfelder */
.woocommerce-checkout .form-row {
	margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: #555;
	margin-bottom: 6px;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid #d4d0cb;
	border-radius: 8px;
	padding: 0 16px;
	font-family: "Jost", sans-serif;
	font-size: 0.92rem;
	color: #111;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.25s, box-shadow 0.25s;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.woocommerce-checkout .form-row textarea {
	min-height: 100px;
	padding: 12px 14px;
	resize: vertical;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
	border-color: #c8a96a;
	box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.12);
}

/* Bestellübersicht-Tabelle */
#order_review table.shop_table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Jost", sans-serif;
	background: #faf8f5;
	border: 1px solid #e8e2db;
	border-radius: 8px;
	margin-bottom: 0;
	overflow: hidden;
}

#order_review table.shop_table thead th {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #aaa;
	padding: 12px 16px;
	border-bottom: 1px solid #eee;
	text-align: left;
}

#order_review table.shop_table tbody td {
	padding: 12px 16px;
	border-bottom: 1px solid #eee;
	font-size: 0.88rem;
	color: #333;
	vertical-align: middle;
}

#order_review table.shop_table tfoot td,
#order_review table.shop_table tfoot th {
	padding: 10px 16px;
	font-size: 0.88rem;
	color: #555;
	border-bottom: 1px solid #eee;
}

#order_review table.shop_table tfoot .order-total td,
#order_review table.shop_table tfoot .order-total th {
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
	border-bottom: none;
	padding: 14px 16px;
}

/* Zahlungsarten */
#payment {
	margin-top: 20px;
	background: #faf8f5;
	border: 1px solid #e8e2db;
	border-radius: 8px;
	padding: 24px;
}

#payment ul.payment_methods {
	list-style: none;
	margin: 0 0 16px;
	padding: 0 0 16px;
	border-bottom: 1px solid #eee;
}

#payment ul.payment_methods li {
	padding: 10px 0;
	border-top: 1px solid #f0f0f0;
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	color: #333;
}

#payment ul.payment_methods li:first-child {
	border-top: none;
	padding-top: 0;
}

#payment ul.payment_methods li label {
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

#payment ul.payment_methods li label img {
	max-height: 24px;
	width: auto;
}

#payment .payment_box {
	background: #f0ede8;
	padding: 12px 16px;
	margin: 10px 0 4px 28px;
	font-family: "Jost", sans-serif;
	font-size: 0.84rem;
	color: #666;
	border-left: 3px solid #c8a96a;
	border-radius: 0 6px 6px 0;
}

#payment .woocommerce-terms-and-conditions-wrapper {
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	color: #888;
	margin-bottom: 14px;
}

#payment .woocommerce-terms-and-conditions-wrapper a {
	color: #555;
}

/* Rechtlicher Hinweis vor dem Bestell-Button */
.cups-checkout-legal {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	color: #999;
	line-height: 1.6;
	margin-bottom: 14px;
	text-align: center;
}

.cups-checkout-legal a {
	color: #666;
	text-decoration: underline;
}

.cups-checkout-legal a:hover {
	color: #111;
}

/* "Jetzt kaufen"-Button */
#payment #place_order {
	display: block;
	width: 100%;
	height: 56px;
	background: #E05D84;
	color: #fff;
	border: none;
	border-radius: 0;
	font-family: "Jost", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
}

#payment #place_order:hover {
	background: #c94878;
}

@media screen and (max-width: 900px) {
	form.woocommerce-checkout {
		grid-template-columns: 1fr;
	}

	form.woocommerce-checkout #customer_details,
	form.woocommerce-checkout h3#order_review_heading,
	form.woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}
}

/**
 * Bestellbestätigung (Order Received / Thank You)
 */
.woocommerce-order {
	font-family: "Jost", sans-serif;
	margin-bottom: 64px;
}

/* Erfolgs-Meldung */
.woocommerce-thankyou-order-received {
	font-family: "Bodoni Moda", serif;
	font-size: 1.6rem;
	font-weight: 500;
	color: #111;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.woocommerce-thankyou-order-received::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	background: #2a9d5c;
	color: #fff;
	border-radius: 50%;
	font-family: "Jost", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

/* 4-Box Bestellübersicht */
.woocommerce-order-overview {
	display: flex;
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	border: 1px solid #e8e2db;
	background: #faf8f5;
	border-radius: 8px;
	overflow: hidden;
}

.woocommerce-order-overview li {
	flex: 1;
	padding: 20px 24px;
	border-right: 1px solid #e8e8e8;
	font-size: 0.78rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.woocommerce-order-overview li:last-child {
	border-right: none;
}

.woocommerce-order-overview li strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: #111;
	margin-top: 5px;
	text-transform: none;
	letter-spacing: 0;
}

/* Bestellte Artikel */
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
	font-family: "Bodoni Moda", serif;
	font-size: 1.2rem;
	font-weight: 500;
	color: #111;
	margin: 40px 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.woocommerce-order-details table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
}

.woocommerce-order-details table thead th {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #aaa;
	padding: 10px 0;
	border-bottom: 2px solid #eee;
	text-align: left;
}

.woocommerce-order-details table tbody td {
	padding: 14px 0;
	border-bottom: 1px solid #f0f0f0;
	color: #333;
}

.woocommerce-order-details table tfoot td,
.woocommerce-order-details table tfoot th {
	padding: 10px 0;
	font-size: 0.88rem;
	color: #555;
	border-bottom: 1px solid #eee;
}

.woocommerce-order-details table tfoot .order-total td,
.woocommerce-order-details table tfoot .order-total th {
	font-weight: 700;
	font-size: 1rem;
	color: #111;
	border-bottom: none;
}

/* Rechnungs-/Lieferadresse */
.woocommerce-customer-details address {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	line-height: 1.8;
	color: #555;
	font-style: normal;
	background: #faf8f5;
	border: 1px solid #e8e2db;
	border-radius: 6px;
	padding: 20px 24px;
}

@media screen and (max-width: 768px) {
	.woocommerce-order-overview {
		flex-wrap: wrap;
	}

	.woocommerce-order-overview li {
		flex: 1 1 50%;
		border-bottom: 1px solid #e8e8e8;
	}
}

/**
 * Produktvarianten – Farbauswahl Swatches
 */

/* Variations-Tabelle aufräumen */
.single-product .variations {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.single-product .variations td,
.single-product .variations th {
	padding: 0 0 14px;
	vertical-align: top;
	border: none;
}

.single-product .variations .label {
	padding-right: 0;
	padding-bottom: 8px;
	width: 100%;
	display: block;
}

.single-product .variations .label label {
	display: inline-flex;
	gap: 0;
	font-family: "Jost", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
}

/* Buchstaben-Farben im Label "FARBE" */
.cups-swatch-label-letter:nth-child(1) { color: #E05D84; }
.cups-swatch-label-letter:nth-child(2) { color: #F0A800; }
.cups-swatch-label-letter:nth-child(3) { color: #4A90C4; }
.cups-swatch-label-letter:nth-child(4) { color: #E07800; }
.cups-swatch-label-letter:nth-child(5) { color: #2a9d5c; }

/* Swatch-Styles → siehe "Variation Text-Swatches" Sektion weiter unten */

.cups-swatch-btn.is-disabled:hover {
	border-color: #ddd;
	color: #444;
}

/**
 * Weiße Schrift auf allen rosa Buttons – Überschreibt WooCommerce .alt-Regel
 */
.hero-btn,
.hero-btn:hover,
.site-header-cart .cart-contents,
.site-header-cart .cart-contents:hover,
.single-product form.cart .single_add_to_cart_button,
.single-product form.cart .single_add_to_cart_button:hover,
.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout a.checkout-button:hover,
#payment #place_order,
#payment #place_order:hover,
.cups-brand-btn,
.cups-brand-btn:hover,
.woobt-actions .single_add_to_cart_button,
.woobt-actions .single_add_to_cart_button:hover,
.cups-empty-orders__btn,
.cups-empty-orders__btn:hover,
.cups-btn-register,
.cups-btn-register:hover {
	color: #fff !important;
}

/**
 * My Account – leerer Bestellungen-Tab
 */
.cups-empty-orders {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 20px;
}

.cups-empty-orders__icon {
	width: 64px;
	height: 64px;
	color: #ccc;
	margin-bottom: 24px;
}

.cups-empty-orders__icon svg {
	width: 100%;
	height: 100%;
}

.cups-empty-orders__title {
	font-family: "Bodoni Moda", serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: #111;
	margin: 0 0 12px;
}

.cups-empty-orders__text {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	color: #888;
	line-height: 1.7;
	margin: 0 0 32px;
}

.cups-empty-orders__btn {
	display: inline-block;
	background: #E05D84;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 13px 28px;
	transition: background 0.2s ease;
}

.cups-empty-orders__btn:hover {
	background: #c94878;
	color: #fff;
}

/* ─────────────────────────────────────────────
   Paginierung – Shop / Archiv
   ───────────────────────────────────────────── */
.woocommerce-pagination {
	margin: 48px 0 16px;
	text-align: center;
}

.woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-pagination ul.page-numbers li {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Alle Seitenzahl-Elemente */
.woocommerce-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 6px;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #555;
	text-decoration: none;
	border: 1px solid #e0e0e0;
	background: #fff;
	transition: background 0.18s, color 0.18s, border-color 0.18s;
	line-height: 1;
}

/* Hover */
.woocommerce-pagination a.page-numbers:hover {
	background: #f5f5f5;
	border-color: #bbb;
	color: #111;
}

/* Aktive Seite */
.woocommerce-pagination .page-numbers.current {
	background: #111;
	border-color: #111;
	color: #fff;
	font-weight: 700;
	cursor: default;
}

/* Punkte „…" */
.woocommerce-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	color: #aaa;
	min-width: 24px;
	cursor: default;
}

/* Vor/Zurück-Pfeile */
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
	font-size: 1rem;
	color: #888;
	border-color: #e0e0e0;
}

.woocommerce-pagination .page-numbers.prev:hover,
.woocommerce-pagination .page-numbers.next:hover {
	color: #111;
	background: #f5f5f5;
	border-color: #bbb;
}

/**
 * Variation Text-Swatches (nicht-Farbe Attribute)
 */
.cups-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 6px;
}

.cups-swatch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 42px;
	padding: 0 18px;
	border: 1.5px solid #d0ccc5;
	border-radius: 6px;
	background: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cups-swatch-btn:hover {
	border-color: #1A3548;
	box-shadow: 0 0 0 1px rgba(26,53,72,0.15);
}

.cups-swatch-btn.is-selected {
	background: #1A3548;
	color: #fff;
	border-color: #1A3548;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(26,53,72,0.2);
}

.cups-swatch-btn.is-disabled {
	opacity: 0.3;
	cursor: not-allowed;
	text-decoration: line-through;
}

/* Zurücksetzen-Link dezenter */
.variations .reset_variations {
	font-size: 0.72rem;
	color: #999;
	text-decoration: none;
	margin-top: 2px;
	display: inline-block;
}

.variations .reset_variations:hover {
	color: #E05D84;
}

/**
 * Empty state: Leerer Warenkorb
 */
.cups-empty-cart {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
}

.cups-empty-cart__icon {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #ddd;
}

.cups-empty-cart__title {
	font-family: "Bodoni Moda", serif;
	font-size: 1.6rem;
	font-weight: 500;
	color: #111;
	margin: 0 0 12px;
}

.cups-empty-cart__text {
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #888;
	margin: 0 0 28px;
}

.cups-empty-cart__btn {
	display: inline-block;
	background: #E05D84;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 32px;
	transition: background 0.2s;
}

.cups-empty-cart__btn:hover {
	background: #c94878;
	color: #fff;
}

/* ─────────────────────────────────────────────
   WooCommerce Block Cart & Checkout Styles
   ───────────────────────────────────────────── */

/* Block Cart: Empty state - hides ugly default smiley */
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
	content: none !important;
}

.wc-block-cart__empty-cart__title {
	font-family: "Bodoni Moda", serif !important;
	font-size: 1.6rem !important;
	font-weight: 500 !important;
	color: #111;
}

/* Replace smiley with SVG cart icon */
.with-empty-cart-icon {
	background: none !important;
	padding-top: 0 !important;
}

/* Block Cart: Product list */
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
	border-bottom: 1px solid #f0f0f0;
}

/* Block Cart: Checkout button */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	background: #E05D84 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	font-family: "Jost", sans-serif !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	padding: 14px 28px !important;
	transition: background 0.2s !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
	background: #c94878 !important;
}

/* Block Cart: Coupon field */
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
	background: #111 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
}

/* Block Checkout: Form labels */
.wc-block-components-text-input label,
.wc-block-components-select label {
	font-family: "Jost", sans-serif;
}

/* Block Cart/Checkout: Produktbilder */
.wc-block-cart-item__image img,
.wc-block-checkout-order-summary__product-image img {
	border-radius: 4px;
	background: #f8f6f3;
}

/* Block: "New in store" / Produkt-Empfehlungen im leeren Warenkorb */
.wc-block-cart .wp-block-woocommerce-product-new .wc-block-grid__product,
.wc-block-cart .wp-block-woocommerce-product-new .wc-block-grid__product-title {
	font-family: "Jost", sans-serif;
}

.wc-block-cart .wp-block-woocommerce-product-new .wc-block-grid__product .wp-block-button__link,
.wc-block-grid__product .wp-block-button__link,
.wc-block-cart .wp-block-button__link {
	background: #111 !important;
	color: #fff !important;
	border-radius: 6px !important;
	font-family: "Jost", sans-serif !important;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background 0.2s;
}

.wc-block-cart .wp-block-woocommerce-product-new .wc-block-grid__product .wp-block-button__link:hover,
.wc-block-grid__product .wp-block-button__link:hover,
.wc-block-cart .wp-block-button__link:hover {
	background: #E05D84 !important;
}

/* Block: Notification/Message styling */
.wc-block-components-notice-banner {
	border-radius: 6px !important;
	font-family: "Jost", sans-serif;
}

/* Block: Product grid buttons (Warenkorb empty state etc.) */
.wc-block-grid .wp-block-button .wp-block-button__link,
.wp-block-woocommerce-product-new .wp-block-button .wp-block-button__link,
.wp-block-woocommerce-product-collection .wp-block-button .wp-block-button__link {
	background-color: #111 !important;
	color: #fff !important;
	border-radius: 6px !important;
	font-family: "Jost", sans-serif !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	padding: 10px 20px !important;
	border: none !important;
}

.wc-block-grid .wp-block-button .wp-block-button__link:hover,
.wp-block-woocommerce-product-new .wp-block-button .wp-block-button__link:hover,
.wp-block-woocommerce-product-collection .wp-block-button .wp-block-button__link:hover {
	background-color: #E05D84 !important;
}

/* Block: Product titles in grid */
.wc-block-grid__product-title,
.wp-block-woocommerce-product-new .wc-block-grid__product-title {
	font-family: "Jost", sans-serif !important;
	font-size: 0.88rem !important;
	font-weight: 500 !important;
	color: #222 !important;
}

/* Block: Product prices */
.wc-block-grid__product-price,
.wp-block-woocommerce-product-new .wc-block-grid__product-price {
	font-family: "Jost", sans-serif !important;
	font-weight: 600 !important;
	color: #111 !important;
}

/* Generelle Block-Headings im Cart/Checkout */
.wp-block-woocommerce-cart h2,
.wp-block-woocommerce-checkout h2 {
	font-family: "Bodoni Moda", serif;
	font-weight: 500;
}

/**
 * Wunschtasse – Visual Mug Designer
 */
.cups-wunsch {
	max-width: 960px;
	margin: 0 auto 80px;
	padding: 0 20px;
}

/* Hero */
.cups-wunsch__hero {
	text-align: center;
	padding: 60px 0 48px;
}

.cups-wunsch__eyebrow {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #E05D84;
	margin-bottom: 12px;
}

.cups-wunsch__title {
	font-family: "Bodoni Moda", serif;
	font-size: 2.8rem;
	font-weight: 400;
	color: #1A3548;
	margin: 0 0 16px;
	line-height: 1.1;
}

.cups-wunsch__sub {
	font-family: "Jost", sans-serif;
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto;
}

.cups-wunsch__sub--note {
	margin-top: 12px;
	font-size: 0.88rem;
	color: #1A3548;
	background: #f0f6fa;
	padding: 10px 16px;
	border-radius: 6px;
	border-left: 3px solid #1A3548;
}

/* Steps */
.cups-wunsch__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 56px;
}

.cups-wunsch__step {
	text-align: center;
	padding: 28px 16px;
	background: #fafaf8;
	border-radius: 10px;
}

.cups-wunsch__step-nr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #1A3548;
	color: #fff;
	font-family: "Bodoni Moda", serif;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 14px;
}

.cups-wunsch__step h3 {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	color: #222;
	margin: 0 0 6px;
}

.cups-wunsch__step p {
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	color: #888;
	line-height: 1.5;
	margin: 0;
}

/* Form */
.cups-wunsch__form-wrapper {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 40px;
}

.cups-wunsch__form-title {
	font-family: "Bodoni Moda", serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: #1A3548;
	margin: 0 0 8px;
}

.cups-wunsch__form-note {
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: #999;
	line-height: 1.6;
	margin: 0 0 32px;
}

.cups-wunsch__field {
	margin-bottom: 24px;
}

.cups-wunsch__field label {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #333;
	margin-bottom: 8px;
}

.cups-wunsch__field input[type="text"],
.cups-wunsch__field select,
.cups-wunsch__field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #333;
	background: #fff;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.cups-wunsch__field input:focus,
.cups-wunsch__field select:focus,
.cups-wunsch__field textarea:focus {
	border-color: #1A3548;
	outline: none;
}

.cups-wunsch__field textarea {
	resize: vertical;
	min-height: 120px;
}

.cups-wunsch__field input[type="file"] {
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	color: #666;
}

.cups-wunsch__hint {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	color: #bbb;
	margin-top: 6px;
}

/* Farbauswahl */
.cups-wunsch__colors {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.cups-wunsch__color-option {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: #555;
}

.cups-wunsch__color-option input[type="radio"] {
	display: none;
}

.cups-wunsch__color-circle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-block;
	transition: box-shadow 0.2s, transform 0.2s;
}

.cups-wunsch__color-option input:checked + .cups-wunsch__color-circle {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1A3548;
	transform: scale(1.05);
}

/* Checkout area */
.cups-wunsch__checkout {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid #eee;
}

.cups-wunsch__price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 20px;
}

.cups-wunsch__price-amount {
	font-family: "Bodoni Moda", serif;
	font-size: 1.8rem;
	font-weight: 500;
	color: #1A3548;
}

.cups-wunsch__price-note {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	color: #bbb;
	line-height: 1.5;
}

.cups-wunsch__trust {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 20px;
}

.cups-wunsch__trust span {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	color: #666;
	padding-left: 20px;
	position: relative;
}

.cups-wunsch__trust span::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #2a9d5c;
	font-weight: 700;
	font-size: 0.7rem;
}

.cups-wunsch__policy {
	background: #fafaf8;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 14px 18px;
	margin-bottom: 20px;
}

.cups-wunsch__policy p {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.cups-wunsch__policy strong {
	color: #444;
}

.cups-wunsch__checkboxes {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 16px 0 24px;
}

.cups-wunsch__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.cups-wunsch__checkbox input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: #1A3548;
}

.cups-wunsch__checkbox span {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	color: #888;
	line-height: 1.6;
}

.cups-wunsch__submit {
	display: block;
	width: 100%;
	height: 56px;
	background: #E05D84;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: "Jost", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.cups-wunsch__submit:hover {
	background: #c94878;
	box-shadow: 0 6px 20px rgba(224, 93, 132, 0.3);
	transform: translateY(-1px);
}

/* WooCommerce form.cart override for Wunschtasse */
.cups-wunsch .cart.cups-wunsch__form {
	display: block;
	margin: 0;
}

/**
 * Tassen-Designer (Fabric.js)
 */
.cd-designer {
	margin-bottom: 48px;
}

/* "Was darf der Kunde?" Hinweisblock */
.cd-allowed {
	background: #fff8f1;
	border: 1px solid #f0dcc3;
	border-left: 4px solid #E05D84;
	border-radius: 10px;
	padding: 20px 24px;
	margin-bottom: 20px;
}
.cd-allowed__title {
	font-family: "Bodoni Moda", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: #1A3548;
	margin: 0 0 14px 0;
}
.cd-allowed__list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.cd-allowed__list li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.9rem;
	line-height: 1.4;
}
.cd-allowed__list strong {
	color: #1A3548;
	font-weight: 600;
}
.cd-allowed__list span {
	color: #666;
	font-size: 0.85rem;
}
.cd-allowed__note {
	margin: 0;
	padding-top: 12px;
	border-top: 1px dashed #f0dcc3;
	font-size: 0.85rem;
	color: #666;
	font-style: italic;
}
.cd-allowed__limits {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed #f0dcc3;
}
.cd-allowed__limits-title {
	margin: 0 0 8px 0;
	font-weight: 600;
	color: #a94442;
	font-size: 0.9rem;
}
.cd-allowed__limits-list {
	margin: 0 0 10px 0;
	padding-left: 20px;
	color: #666;
	font-size: 0.82rem;
	line-height: 1.5;
}
.cd-allowed__limits-list li {
	margin-bottom: 3px;
}
.cd-allowed__limits-note {
	margin: 0;
	font-size: 0.8rem;
	color: #888;
	font-style: italic;
}
@media (max-width: 700px) {
	.cd-allowed__list {
		grid-template-columns: 1fr;
	}
}

/* Vorlage-Grid: scrollbarer Container */
.cups-wunsch__vorlage-scroll {
	position: relative;
	max-height: 560px;
	overflow-y: auto;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 16px;
	background: #fafaf8;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: #E05D84 #f0f0f0;
}
.cups-wunsch__vorlage-scroll::-webkit-scrollbar {
	width: 8px;
}
.cups-wunsch__vorlage-scroll::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 4px;
}
.cups-wunsch__vorlage-scroll::-webkit-scrollbar-thumb {
	background: #E05D84;
	border-radius: 4px;
}
.cups-wunsch__vorlage-scroll-fade {
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	margin: -40px -16px -16px -16px;
	background: linear-gradient(to top, #fafaf8 20%, rgba(250,250,248,0));
	pointer-events: none;
}
.cups-wunsch__vorlage-scroll-hint {
	text-align: center;
	font-size: 0.78rem;
	color: #999;
	margin: 6px 0 0 0;
	font-style: italic;
}

/* Strukturierte Aenderungs-Auswahl */
.cups-wunsch__change-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 12px;
}
.cups-wunsch__change-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.15s ease;
}
.cups-wunsch__change-option:hover {
	border-color: #E05D84;
	background: #fff8fa;
}
.cups-wunsch__change-option input[type="checkbox"] {
	margin: 3px 0 0 0;
	flex-shrink: 0;
	accent-color: #E05D84;
}
.cups-wunsch__change-option:has(input:checked) {
	border-color: #E05D84;
	background: #fff8fa;
	box-shadow: 0 0 0 1px #E05D84;
}
.cups-wunsch__change-label {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.cups-wunsch__change-label strong {
	font-size: 0.9rem;
	color: #1A3548;
	font-weight: 600;
}
.cups-wunsch__change-label small {
	font-size: 0.78rem;
	color: #888;
}
.cups-wunsch__change-detail {
	grid-column: 1 / -1;
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #E05D84;
	border-radius: 6px;
	font-family: 'Jost', sans-serif;
	font-size: 0.9rem;
	margin-top: -4px;
	background: #fff;
}
.cups-wunsch__change-detail:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(224, 93, 132, 0.2);
}
.cups-wunsch__change-note {
	margin: 14px 0 0 0;
	padding: 10px 14px;
	background: #fff8f1;
	border-left: 3px solid #E05D84;
	border-radius: 4px;
	font-size: 0.85rem;
	color: #555;
}
.cups-wunsch__change-note strong {
	color: #1A3548;
}
@media (max-width: 700px) {
	.cups-wunsch__change-options {
		grid-template-columns: 1fr;
	}
}

/* Toolbar */
.cd-toolbar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #fafaf8;
	border: 1px solid #eee;
	border-radius: 10px 10px 0 0;
	flex-wrap: wrap;
}

.cd-toolbar__group {
	display: flex;
	align-items: center;
	gap: 4px;
}

.cd-toolbar__sep {
	width: 1px;
	height: 28px;
	background: #ddd;
	margin: 0 6px;
}

.cd-toolbar__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	color: #444;
	cursor: pointer;
	transition: all 0.15s;
}

.cd-toolbar__btn:hover {
	border-color: #1A3548;
	color: #1A3548;
}

.cd-toolbar__btn--sm {
	padding: 6px 8px;
}

.cd-toolbar__btn--sm span { display: none; }

.cd-toolbar__btn--danger:hover {
	border-color: #c0392b;
	color: #c0392b;
}

.cd-toolbar__btn:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

/* Workspace: canvas + properties */
.cd-workspace {
	display: flex;
	gap: 0;
	border: 1px solid #eee;
	border-top: none;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	background: #f7f7f5;
}

.cd-canvas-area {
	flex: 1;
	min-width: 0;
	padding: 20px;
}

.cd-canvas-wrap {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.cd-canvas-wrap .canvas-container {
	display: block !important;
}

.cd-canvas-wrap canvas {
	min-height: 600px;
}

/* Clipart palette */
.cd-cliparts {
	margin-top: 16px;
	padding: 14px 16px;
	background: #fafaf8;
	border: 1px solid #eee;
	border-radius: 8px;
}

.cd-cliparts__label {
	font-family: "Jost", sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #999;
	margin: 0 0 10px;
}

.cd-cliparts__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.cd-clip-btn {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.15s;
	padding: 6px;
}

.cd-clip-btn:hover {
	border-color: #1A3548;
	background: #f0f4f8;
	transform: scale(1.08);
}

.cd-clip-btn svg {
	width: 22px;
	height: 22px;
}

.cd-clip-btn--shape svg {
	width: 18px;
	height: 18px;
}

.cd-canvas-hint {
	font-family: "Jost", sans-serif;
	font-size: 0.7rem;
	color: #bbb;
	margin: 10px 0 0;
	text-align: center;
}

.cups-wunsch__field-note {
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	color: #999;
	margin: -4px 0 10px;
	line-height: 1.5;
}

/* Properties panel */
.cd-properties {
	width: 220px;
	flex-shrink: 0;
	padding: 20px 16px;
	background: #fff;
	border-left: 1px solid #eee;
	transition: opacity 0.2s;
}

.cd-properties--hidden {
	opacity: 0.4;
	pointer-events: none;
}

.cd-properties__title {
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #999;
	margin: 0 0 16px;
}

.cd-prop-row {
	margin-bottom: 14px;
}

.cd-prop-row label {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	color: #555;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cd-prop-select {
	width: 100%;
	padding: 6px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	background: #fff;
}

.cd-prop-range {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cd-prop-range input[type="range"] {
	flex: 1;
	accent-color: #1A3548;
}

.cd-prop-range span {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	color: #888;
	min-width: 36px;
}

.cd-prop-inline {
	display: flex;
	align-items: center;
	gap: 6px;
}

.cd-prop-inline input[type="color"] {
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 2px;
	cursor: pointer;
}

.cd-style-btn {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.15s;
}

.cd-style-btn:hover {
	border-color: #1A3548;
}

.cd-style-btn.active {
	background: #1A3548;
	color: #fff;
	border-color: #1A3548;
}

/* Mug Preview */
.cd-preview {
	margin-top: 32px;
	text-align: center;
}

.cd-preview__title {
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #999;
	margin: 0 0 16px;
}

.cd-preview__mug {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.cd-preview__body {
	width: 320px;
	height: 200px;
	background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid #e0e0e0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cd-preview__body img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.cd-preview__handle {
	width: 24px;
	height: 72px;
	border: 2px solid #e0e0e0;
	border-left: none;
	border-radius: 0 16px 16px 0;
	background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
	box-shadow: 2px 2px 8px rgba(0,0,0,0.06);
}

.cd-preview__mug::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 6px;
	background: radial-gradient(ellipse, rgba(0,0,0,0.08) 0%, transparent 70%);
	border-radius: 50%;
}

/* Hide ALL standard WC elements on Wunschtasse (ID 480) */
body.is-wunschtasse .woocommerce-breadcrumb,
body.is-wunschtasse .woocommerce-product-gallery,
body.is-wunschtasse .summary > .price,
body.is-wunschtasse .summary > .product_title,
body.is-wunschtasse .summary > .woocommerce-product-details__short-description,
body.is-wunschtasse .summary > .woocommerce-product-rating,
body.is-wunschtasse .product_meta,
body.is-wunschtasse .woocommerce-tabs,
body.is-wunschtasse .related.products,
body.is-wunschtasse .up-sells,
body.is-wunschtasse .yith-wcwl-add-to-wishlist,
body.is-wunschtasse .woocommerce-share,
body.is-wunschtasse .cups-delivery-countdown,
body.is-wunschtasse .cups-bestseller-badge,
body.is-wunschtasse .cups-volume-hint,
body.is-wunschtasse .cups-brand-story,
body.is-wunschtasse .summary > p:not(.cups-wunsch *),
body.is-wunschtasse nav.woocommerce-breadcrumb,
body.is-wunschtasse .woocommerce-notices-wrapper + nav,
body.is-wunschtasse [class*="wishlist"],
body.is-wunschtasse [class*="yith"],
body.is-wunschtasse .summary > .cart + * {
	display: none !important;
}

/* Wunschtasse: full-width zentriertes Layout */
body.is-wunschtasse div.product {
	display: block;
	max-width: 100%;
}

body.is-wunschtasse .summary {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Responsive */
@media screen and (max-width: 600px) {
	.cups-wunsch__steps {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cups-wunsch__form-wrapper {
		padding: 24px;
	}

	.cups-wunsch__title {
		font-size: 2rem;
	}

	.cups-wunsch__colors {
		gap: 12px;
	}

	.cups-wunsch__price {
		flex-direction: column;
		gap: 4px;
	}
}

/* Upload-Bereich */
.cups-wunsch__upload-area {
	position: relative;
	border: 2px dashed #ddd;
	border-radius: 8px;
	padding: 24px;
	text-align: center;
	background: #fafaf8;
	transition: border-color 0.2s, background 0.2s;
	cursor: pointer;
}

.cups-wunsch__upload-area:hover,
.cups-wunsch__upload-area.drag-over {
	border-color: #E05D84;
	background: #fef5f7;
}

.cups-wunsch__upload-area input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.cups-wunsch__upload-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #888;
	font-size: 0.9rem;
	margin: 0;
}

.cups-wunsch__upload-text svg {
	color: #bbb;
}

.cups-wunsch__upload-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.cups-wunsch__upload-preview:empty {
	display: none;
}

.cups-wunsch__upload-thumb {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #eee;
}

.cups-wunsch__upload-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cups-wunsch__upload-thumb button {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
	background: rgba(0,0,0,0.5);
	color: #fff;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.cups-wunsch__upload-thumb .upload-filename {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	color: #fff;
	font-size: 9px;
	padding: 2px 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Mobile: Designer verstecken, Fallback zeigen */
.cd-mobile-fallback {
	display: none;
}

@media screen and (max-width: 768px) {
	.cd-mobile-fallback {
		display: block;
	}

	.cd-designer {
		display: none;
	}

	.cd-workspace {
		flex-direction: column;
	}

	.cd-properties {
		width: 100%;
		border-left: none;
		border-top: 1px solid #eee;
		padding: 16px;
	}

	#cd-text-controls {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
	}

	#cd-text-controls .cd-prop-row {
		flex: 1;
		min-width: 120px;
		margin-bottom: 0;
	}

	.cd-preview__body {
		width: 260px;
		height: 160px;
	}
}

@media screen and (max-width: 480px) {
	.cups-wunsch {
		padding: 0 16px;
	}

	.cups-wunsch__hero {
		padding: 40px 0 32px;
	}

	.cups-wunsch__step {
		padding: 20px 12px;
	}

	.cd-toolbar__btn span {
		display: none;
	}

	.cd-canvas-area {
		padding: 12px;
	}

	.cd-preview__body {
		width: 200px;
		height: 120px;
	}
}

/**
 * Wunschtasse – Modus-Tabs & Vorlage-Auswahl
 */
.cups-wunsch__mode-tabs {
	display: flex;
	gap: 0;
	margin-bottom: 40px;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.cups-wunsch__mode-tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 20px;
	background: #fff;
	border: none;
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	color: #888;
	cursor: pointer;
	transition: all 0.2s;
}

.cups-wunsch__mode-tab + .cups-wunsch__mode-tab {
	border-left: 1px solid #ddd;
}

.cups-wunsch__mode-tab:hover {
	color: #1A3548;
	background: #f8f8f6;
}

.cups-wunsch__mode-tab.is-active {
	background: #1A3548;
	color: #fff;
}

.cups-wunsch__mode-tab svg {
	flex-shrink: 0;
}

.cups-wunsch__mode-tab.is-active svg {
	stroke: #fff;
}

/* Vorlage-Filter */
.cups-wunsch__vorlage-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.cups-wunsch__filter-btn {
	padding: 8px 16px;
	border: 1px solid #ddd;
	border-radius: 20px;
	background: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.2s;
}

.cups-wunsch__filter-btn:hover {
	border-color: #1A3548;
	color: #1A3548;
}

.cups-wunsch__filter-btn.is-active {
	background: #1A3548;
	color: #fff;
	border-color: #1A3548;
}

/* Vorlage-Grid */
.cups-wunsch__vorlage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 32px;
}

.cups-wunsch__vorlage-card {
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	background: #fafaf8;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.cups-wunsch__vorlage-card:hover {
	border-color: #ddd;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}

.cups-wunsch__vorlage-card.is-selected {
	border-color: #E05D84;
	box-shadow: 0 0 0 3px rgba(224, 93, 132, 0.15);
}

.cups-wunsch__vorlage-img {
	aspect-ratio: 1;
	overflow: hidden;
	background: #f0f0ee;
}

.cups-wunsch__vorlage-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.cups-wunsch__vorlage-card:hover .cups-wunsch__vorlage-img img {
	transform: scale(1.05);
}

.cups-wunsch__vorlage-name {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 500;
	color: #555;
	text-align: center;
	padding: 10px 8px;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cups-wunsch__vorlage-card.is-hidden {
	display: none;
}

/* Gewaehlte Vorlage */
.cups-wunsch__vorlage-selected {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 32px;
	margin-top: 8px;
}

.cups-wunsch__vorlage-chosen {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid #eee;
}

.cups-wunsch__vorlage-chosen img {
	width: 240px;
	height: 240px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #eee;
	background: #fafafa;
}

@media (max-width: 640px) {
	.cups-wunsch__vorlage-chosen img { width: 180px; height: 180px; }
}

.cups-wunsch__vorlage-chosen-info h3 {
	font-family: "Jost", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #222;
	margin: 0 0 10px;
}

.cups-wunsch__vorlage-change {
	padding: 6px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	color: #888;
	cursor: pointer;
	transition: all 0.2s;
}

.cups-wunsch__vorlage-change:hover {
	border-color: #1A3548;
	color: #1A3548;
}

@media (max-width: 768px) {
	.cups-wunsch__vorlage-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.cups-wunsch__vorlage-chosen {
		flex-direction: column;
		text-align: center;
	}

	.cups-wunsch__mode-tabs {
		max-width: 100%;
	}

	.cups-wunsch__mode-tab {
		font-size: 0.8rem;
		padding: 14px 12px;
	}
}


/* Login-Hinweis an der Kasse */
.woocommerce-form-login-toggle .woocommerce-info {
	background: #f8f6f3;
	border: 1px solid #e8e2db;
	border-left: 4px solid #c8a96a;
	padding: 16px 20px;
	margin-bottom: 28px;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	color: #444;
}

.woocommerce-form-login-toggle .woocommerce-info a {
	color: #E05D84;
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-form-login-toggle .woocommerce-info a:hover {
	text-decoration: underline;
}

/* Login-Formular an der Kasse */
.woocommerce-form-login {
	background: #f8f6f3;
	border: 1px solid #e8e2db;
	padding: 24px;
	margin-bottom: 28px;
}

/* Konto erstellen Bereich */
.woocommerce-account-fields {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.create-account {
	background: #f8f6f3;
	border: 1px solid #e8e2db;
	border-radius: 6px;
	padding: 18px 20px;
	margin-top: 12px;
}

.create-account p {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 10px;
}


/* Bankdaten auf Bestellbestaetigung */
.woocommerce-bacs-bank-details {
	margin: 24px 0 32px;
}

.woocommerce-bacs-bank-details .wc-bacs-bank-details-heading {
	font-family: "Bodoni Moda", serif;
	font-size: 1.1rem;
	font-weight: 500;
	color: #111;
	margin-bottom: 16px;
}

.woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name {
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 8px;
}

.woocommerce-bacs-bank-details ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #f8f6f3;
	border: 1px solid #e8e2db;
	border-radius: 6px;
	padding: 20px 24px;
}

.woocommerce-bacs-bank-details ul li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #ece6df;
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	color: #555;
}

.woocommerce-bacs-bank-details ul li:last-child {
	border-bottom: none;
}

.woocommerce-bacs-bank-details ul li strong {
	color: #111;
	font-weight: 600;
}

/* BACS Hinweistext */
.woocommerce-order .woocommerce-thankyou-order-details + section,
.woocommerce-order .wc-bacs-bank-details {
	background: #f8f6f3;
	border: 1px solid #e8e2db;
	border-radius: 6px;
	padding: 24px;
	margin: 20px 0 32px;
}

/* Danke-Nachricht mit Bestellnummer */
.woocommerce-order p.woocommerce-thankyou-order-received ~ .woocommerce-order-overview + .woocommerce-bacs-bank-details {
	margin-top: 0;
}


/* Bestellbestaetigung Verbesserungen */
.woocommerce-thankyou-order-received {
	padding: 20px 28px;
	background: linear-gradient(135deg, #f0faf4 0%, #e8f5ee 100%);
	border: 1px solid #c8e6d5;
	border-radius: 8px;
	margin-bottom: 32px;
}

.woocommerce-order-overview {
	border-radius: 8px;
	overflow: hidden;
}

/* Bestelldetails Tabelle */
.woocommerce-order-details {
	margin-top: 8px;
}

/* Adressen nebeneinander */
.woocommerce-customer-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.woocommerce-customer-details > .woocommerce-columns {
	display: contents;
}

.woocommerce-customer-details .woocommerce-column {
	margin: 0;
}

.woocommerce-customer-details address {
	border-radius: 6px;
}

.woocommerce-customer-details h2 {
	grid-column: 1 / -1;
}

@media screen and (max-width: 768px) {
	.woocommerce-customer-details {
		grid-template-columns: 1fr;
	}
}

/* Zahlungsoptionen Bereich cleaner */
#payment {
	border-radius: 8px;
}

#payment ul.payment_methods li {
	padding: 14px 0;
}

#payment ul.payment_methods li label {
	font-size: 0.92rem;
}

/* Bestell-Button prominenter */
#payment #place_order {
	height: 58px;
	font-size: 1rem;
	border-radius: 6px;
	margin-top: 8px;
	box-shadow: 0 4px 14px rgba(224, 93, 132, 0.25);
	transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

#payment #place_order:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(224, 93, 132, 0.35);
}

#payment #place_order:active {
	transform: translateY(0);
}


/* ===== Express Checkout Bereich (Purazell-Stil) ===== */
.cups-express-checkout {
	max-width: 980px;
	margin: 0 auto 28px;
}

.cups-express-checkout__label {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #999;
	margin-bottom: 12px;
}

.cups-express-checkout__buttons {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.cups-express-checkout__slot {
	flex: 1;
	min-height: 48px;
}

.cups-express-checkout__divider {
	position: relative;
	text-align: center;
	margin: 8px 0;
}

.cups-express-checkout__divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	border-top: 1px solid #e0dbd5;
}

.cups-express-checkout__divider span {
	position: relative;
	background: #fff;
	padding: 0 16px;
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: #999;
}

/* Login-Hinweis */
.cups-checkout-login-hint {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: #faf8f5;
	border: 1px solid #e8e2db;
	border-radius: 8px;
	margin-bottom: 24px;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	color: #555;
}

.cups-checkout-login-hint svg {
	color: #c8a96a;
	flex-shrink: 0;
}

.cups-checkout-login-hint a {
	color: #E05D84;
	font-weight: 600;
	text-decoration: none;
}

.cups-checkout-login-hint a:hover {
	text-decoration: underline;
}

/* WooCommerce default login toggle ausblenden (wir haben unseren eigenen) */
.woocommerce-form-login-toggle {
	display: none;
}
