@media (max-width: 768px) {
	   #woo-kiosk-button {
		   display:none;
	}
}

#woo-kiosk-button {
	position: fixed;
	bottom: 250px;
	right: -0;
	z-index: 999;
	background: #000;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transform: rotate(-90deg);
}

#woo-kiosk-overlay-root {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #2f2f2f;
	display: none;
	z-index: 1000;
	overflow-y: auto;
}

.woo-kiosk-overlay {
	padding: 20px;
	color: #fff;
	position: relative;
}

.woo-kiosk-close {
	position: absolute;
	top: 10px;
	right: 20px;
	background: transparent;
	color: #fff;
	font-size: 30px;
	border: none;
	cursor: pointer;
	z-index: 9999;
}

.woo-kiosk-categories {
	margin: 20px 100px;
}

.kiosk-category {
	background: #000;
	color: #fff;
	margin: 0 10px 10px 0;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
}

.woo-kiosk-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 30px; /* Abstand oben */
}

body.admin-bar .woo-kiosk-products {
	margin-top: 150px;
}

.woo-kiosk-product {
	background: #fff;
	color: #000;
	padding: 10px;
	text-align: center;
	border-radius: 10px;
	position: relative;
}

.woo-kiosk-product img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.woo-kiosk-product .thunk-quik {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

#woo-kiosk-load-more-wrapper {
	text-align: center;
	margin-top: 30px;
}

#woo-kiosk-load-more {
	padding: 10px 20px;
	background-color: #ffffff;
	color: #000;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

#woo-kiosk-product-detail-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 11000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	overflow-y: auto;
}

.woo-kiosk-product-popup {
	background: #fff;
	color: #000;
	padding: 30px;
	max-width: 800px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	border-radius: 10px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.woo-kiosk-product-popup img {
	max-width: 100%;
}

.woo-kiosk-product-popup .woo-kiosk-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #000;
	color: #fff;
	font-size: 28px;
	border: none;
	cursor: pointer;
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 38px;
}

.woo-kiosk-product-popup .woo-kiosk-close:hover {
	background: #333;
}

.woo-kiosk-product-link {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
}

.woo-kiosk-product-link:hover {
	background: #333;
}
.woo-kiosk-close-bottom {
	background: #000;
	color: #fff;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
}

.woo-kiosk-close-bottom:hover {
	background: #333;
}

.kiosk-nav-arrows {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 20px 0;
}

.kiosk-nav-arrows button {
	background: #000;
	color: #fff;
	border: none;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 18px;
}

.kiosk-nav-arrows button:hover {
	background: #333;
}

.woo-kiosk-product-link {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
}

.woo-kiosk-product-link:hover {
	background: #333;
}


/* 1. H3 – kleiner, direkt unter dem Bild */
.woo-kiosk-product h3 {
	font-size: 14px;
	margin: 10px 0 5px 0;
	font-weight: normal;
	line-height:1.3rem;
}

/* 2. Preis – grün, größer, Fußbereich */
.woo-kiosk-product p {
	color: #008000;
	font-size: 18px;
	font-weight: bold;
	margin: 5px 0 0 0;
}

/* Optional: nach unten positionieren mit Flex (wenn nötig) */
.woo-kiosk-product {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
} 


/* 3. Quick View Button – schwarz mit weißem Text */
.thunk-quik .quik-view a {
	display: inline-block;
	background: #00000050;
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	margin-top: 10px;
	transition: background 0.2s ease-in-out;
}

.thunk-quik .quik-view a:hover {
	background: #000;
	color:#fff;
}

@media (max-width: 1000px) {
  #alm-quick-view-content div.images,
  #alm-quick-view-content div.summary {
	width: 100% !important;
	height:auto !important;
	float: none !important;
  }
}

#woo-kiosk-category-menu-toggle {
	background: #444;
	color: #fff;
	padding: 8px 14px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	margin-left: 20px;
}

#woo-kiosk-category-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 11000;
	display: none;
	padding: 40px;
	padding-top: 100px;
	overflow-y: auto;
}

.woo-kiosk-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
}

.woo-kiosk-category-tile {
	background: #222;
	color: #fff;
	text-align: center;
	padding: 10px;
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	transition: transform 0.2s;
}

.woo-kiosk-category-tile img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
	border-radius: 6px 6px 0 0;
}

.woo-kiosk-category-title {
	padding: 10px;
	font-size: 14px;
	font-weight: bold;
	background: #000;
}
.woo-kiosk-category-tile:hover {
	transform: scale(1.03);
}

#woo-kiosk-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding: 0 10px;
}

#woo-kiosk-toggle-view {
	background: #000;
	color: #fff;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 16px;
}

#woo-kiosk-slider-controls button {
	margin: 0;
}

/* Grid-Ansicht */
.woo-kiosk-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	transition: all 0.3s ease;
	overflow: hidden;
}

/* Slider-Modus */
.woo-kiosk-products.slider-mode {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 0;
}

.woo-kiosk-products.slider-mode .woo-kiosk-product {
	flex: 0 0 30%;
	min-width: 30%;
	margin: 0 10px;
}


#woo-kiosk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: #111;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	z-index: 11001;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

#woo-kiosk-logo img {
	max-height: 40px;
	width:auto;
	margin: auto 0;
	display: flex;
	align-items: center;
}

.header-left,
.header-center,
.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

#woo-kiosk-category-menu-toggle,
#woo-kiosk-toggle-view,
#woo-kiosk-exit {
	background: #000;
	color: #fff;
	border: none;
	padding: 8px 14px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
}

.woo-kiosk-overlay {
	padding-top: 50px; /* Platz für den festen Header */
}


#woo-kiosk-slider-controls {
	position: absolute; /* falls nicht gesetzt */
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	pointer-events: none; /* verhindert Störungen, falls nötig */
}

.woo-kiosk-slider-nav {
	pointer-events: auto; /* wieder aktiv für Buttons */
	position: absolute;
	top: 0;
	width: 60px;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	border: none;
	cursor: pointer;
	z-index: 11000;
	font-size: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.woo-kiosk-slider-nav:hover {
	background: rgba(0, 100, 0, 0.8);
}

#woo-kiosk-slider-prev {
	left: 0;
	border-radius: 0 8px 8px 0;
}

#woo-kiosk-slider-next {
	right: 0;
	border-radius: 8px 0 0 8px;
}

.woo-kiosk-products-wrapper {
	position: relative;
}

@media (max-width: 768px) {
	.woo-kiosk-slider-nav {
		font-size: 32px;
		width: 30px;
	}
}

body.admin-bar #woo-kiosk-header {
	top: 32px;
}

body.admin-bar #woo-kiosk-overlay-root,
body.admin-bar #woo-kiosk-category-menu-overlay,
body.admin-bar #woo-kiosk-product-detail-overlay {
	top: 32px;
}

body.admin-bar #woo-kiosk-exit,
body.admin-bar #woo-kiosk-toggle-view {
	top: 32px;
}

body.admin-bar .woo-kiosk-overlay {
	padding-top: 32px;
}


.woo-kiosk-product-content {
	display: flex;
	flex-direction: row;
	gap: 30px;
	flex-wrap: wrap;
}

.woo-kiosk-product-image {
	flex: 1 1 300px;
}

.woo-kiosk-product-info {
	flex: 2 1 400px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.woo-kiosk-product-price {
	font-size: 24px;
	color: #2ecc71;
}

.woo-kiosk-product-stock {
	font-weight: bold;
}

.woo-kiosk-product-stock.out-of-stock {
	color: red;
}

.woo-kiosk-product-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.woo-kiosk-nav-left,
.woo-kiosk-nav-right {
	width: 40px;
	text-align: center;
}

.woo-kiosk-nav-left button,
.woo-kiosk-nav-right button {
	background: transparent;
	color: #fff;
	font-size: 32px;
	border: none;
	cursor: pointer;
}

.woo-kiosk-product-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.woo-kiosk-product-image img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	cursor: pointer;
}

.woo-kiosk-product-price {
	color: #008000;
	font-weight: bold;
	font-size: 22px;
	margin-top: 10px;
}

.woo-kiosk-product-description {
	margin-top: 20px;
	padding: 10px;
}

.woo-kiosk-nav-left button,
.woo-kiosk-nav-right button {
	background: rgba(255, 255, 255, 0.6); /* leicht transparenter heller Hintergrund */
	color: #000; /* schwarz */
	font-size: 32px;
	border: none;
	cursor: pointer;
	border-radius: 6px;
	padding: 10px;
	transition: background 0.2s ease;
}

.woo-kiosk-nav-left button:hover,
.woo-kiosk-nav-right button:hover {
	background: rgba(255, 255, 255, 0.85);
}

#woo-kiosk-product-detail-overlay {
	opacity: 1;
	transition: opacity 0.3s ease;
}