/*
Theme Name: Postele Lara
Theme URI: https://ropko.online/
Author: ropko.online
Author URI: https://ropko.online/
Description: Finálna bloková téma e-shopu Postele Lara. Dizajn: grafikyodkiky.sk. Čisté CSS premenné; extrahované z PDF Figmy (posledná strana ignorovaná).
Requires at least: 6.5
Tested up to: 6.8.3
Requires PHP: 8.1
Version: 1.7.2
License: GPL-2.0-or-later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: postele-lara
Tags: full-site-editing, woocommerce, block-styles, e-commerce
*/

/* ------------------------------------------------------------
   HOME HERO – Slider (3 slidy) – animácia do boku
   ------------------------------------------------------------ */

.home-hero.home-hero--slider {
	position: relative;
	overflow: hidden;
	/* aby sa ďalšie sekcie nikdy "nelepili" nad hero */
	z-index: 0;
}

.home-hero.home-hero--slider .home-hero__viewport {
	/*
	 * Dôležité: na webe je .home-hero často vysoké vďaka paddingu/min-height.
	 * Keď je background na slidoch (nie na .home-hero), musíme slidy natiahnuť
	 * cez celú plochu hero, inak obrázok skončí "len v strede" a hore/dole ostane prázdno.
	 */
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.home-hero.home-hero--slider .home-hero__track {
	display: flex;
	width: 100%;
	height: 100%;
	will-change: transform;
	transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero.home-hero--slider .home-hero__slide {
	flex: 0 0 100%;
	position: relative;
	background-image: var(--pl-hero-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	/* Nadpis + button majú byť v strede */
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.home-hero.home-hero--slider .home-hero__slide {
		background-image: var(--pl-hero-bg-mobile, var(--pl-hero-bg, none));
		/* Na mobile posuň obrázok o kúsok vyššie */
		background-position: center 20%;
	}
}

@media (max-width: 768px) {
	.home-hero.home-hero--slider .home-hero__slide {
		background-image: var(--pl-hero-bg-mobile, var(--pl-hero-bg, none));
		/* na mobile posuň obrázok mierne vyššie */
		background-position: center 20%;
	}
}


.home-hero.home-hero--slider .home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.home-hero.home-hero--slider .home-hero__inner {
	position: relative;
	z-index: 2;
	/* nechávať pôvodné šírky/odsadenia z existujúceho dizajnu */
}

.home-hero.home-hero--slider .home-hero__actions {
	/* nechávať pôvodné štýly */
}

.home-hero.home-hero--slider .home-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	border: 0;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	width: 44px;
	height: 44px;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.home-hero.home-hero--slider .home-hero__arrow:hover {
	background: rgba(255, 255, 255, 0.75);
}

.home-hero.home-hero--slider .home-hero__arrow:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.35);
	outline-offset: 2px;
}

.home-hero.home-hero--slider .home-hero__arrow--prev {
	left: 18px;
}

.home-hero.home-hero--slider .home-hero__arrow--next {
	right: 18px;
}

.home-hero.home-hero--slider .home-hero__arrow-icon {
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 680px) {
	.home-hero.home-hero--slider .home-hero__arrow {
		width: 40px;
		height: 40px;
	}
	.home-hero.home-hero--slider .home-hero__arrow--prev {
		left: 10px;
	}
	.home-hero.home-hero--slider .home-hero__arrow--next {
		right: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero.home-hero--slider .home-hero__track {
		transition: none;
	}
}


/* Footer – recenzie (avatar fit) */
.home-reviews__avatar{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.04);
}
.home-reviews__avatar-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.home-reviews__avatar-icon{
  font-size:28px;
  line-height:1;
  display:block;
}


/* ------------------------------------------------------------
   TOUCH + LIGHTBOX – Hero slider & single product gallery
   ------------------------------------------------------------ */

.home-hero.home-hero--slider {
	touch-action: pan-y;
}

.home-hero.home-hero--slider .home-hero__viewport,
.home-hero.home-hero--slider .home-hero__track {
	touch-action: pan-y;
}

/* Footer – recenzie: umožniť vlastné swipe gestá (JS) */
.home-reviews__viewport,
.home-reviews__track {
	touch-action: pan-y;
}

.single-product-gallery__main {
	position: relative;
	overflow: hidden;
	touch-action: pan-y;
	cursor: zoom-in;
}

.single-product-gallery__main img {
	display: block;
	width: 100%;
	height: auto;
	user-select: none;
	-webkit-user-drag: none;
}

.single-product-gallery__thumbs {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	touch-action: pan-x;
}

.single-product-gallery__thumbs::-webkit-scrollbar {
	height: 8px;
}

.single-product-gallery__thumbs::-webkit-scrollbar-thumb {
	background: rgba(20, 56, 82, 0.2);
	border-radius: 999px;
}

.single-product-gallery__thumb-image {
	user-select: none;
	-webkit-user-drag: none;
}

.single-product-gallery__main.is-swipe-hint::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(20,56,82,.05), transparent 18%, transparent 82%, rgba(20,56,82,.05));
	opacity: 0;
	transition: opacity .2s ease;
}

.single-product-gallery__main.is-swipe-hint:hover::after {
	opacity: 1;
}

.single-product-gallery-lightbox {
	border: 0;
	padding: 0;
	background: transparent;
	max-width: min(96vw, 1280px);
	width: 100%;
}

.single-product-gallery-lightbox::backdrop {
	background: rgba(8, 12, 18, 0.82);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.single-product-gallery-lightbox__inner {
	position: relative;
	padding: 24px;
	background: transparent;
}

.single-product-gallery-lightbox__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(82vh, 920px);
	touch-action: pan-y;
}

.single-product-gallery-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: 82vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
	user-select: none;
	-webkit-user-drag: none;
}

.single-product-gallery-lightbox__close,
.single-product-gallery-lightbox__nav {
	position: absolute;
	z-index: 3;
	border: 0;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	color: #fff;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.single-product-gallery-lightbox__close:hover,
.single-product-gallery-lightbox__nav:hover {
	background: rgba(255,255,255,.22);
}

.single-product-gallery-lightbox__close {
	top: 12px;
	right: 12px;
}

.single-product-gallery-lightbox__nav--prev {
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.single-product-gallery-lightbox__nav--next {
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 680px) {
	.single-product-gallery-lightbox__inner {
		padding: 16px;
	}

	.single-product-gallery-lightbox__close,
	.single-product-gallery-lightbox__nav {
		width: 42px;
		height: 42px;
	}

	.single-product-gallery-lightbox__nav--prev {
		left: 4px;
	}

	.single-product-gallery-lightbox__nav--next {
		right: 4px;
	}
}


/* ------------------------------------------------------------
   SINGLE PRODUCT GALLERY – bez focus orámovania po kliku/touche
   ------------------------------------------------------------ */

.single-product-gallery__thumb,
.single-product-gallery__arrow,
.single-product-gallery__main {
	-webkit-tap-highlight-color: transparent;
}

.single-product-gallery__thumb,
.single-product-gallery__arrow {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.single-product-gallery__thumb:focus,
.single-product-gallery__thumb:focus-visible,
.single-product-gallery__arrow:focus,
.single-product-gallery__arrow:focus-visible,
.single-product-gallery__main:focus,
.single-product-gallery__main:focus-visible,
.single-product-gallery__thumb img:focus,
.single-product-gallery__thumb img:focus-visible,
.single-product-gallery__main img:focus,
.single-product-gallery__main img:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

.single-product-gallery__thumb::-moz-focus-inner,
.single-product-gallery__arrow::-moz-focus-inner {
	border: 0;
}

.single-product-gallery__thumb.is-active,
.single-product-gallery__thumb[aria-pressed="true"] {
	outline: none !important;
	box-shadow: none !important;
}




/* ------------------------------------------------------------
   SINGLE PRODUCT – Matrace majú galériu v pomere 1:1
   ------------------------------------------------------------ */

body.pl-single-product-matrace .single-product-gallery__main {
	aspect-ratio: 1 / 1 !important;
}

body.pl-single-product-matrace .single-product-gallery__main img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

body.pl-single-product-matrace .single-product-gallery__thumb {
	aspect-ratio: 1 / 1 !important;
	height: auto !important;
	flex: 0 0 84px !important;
	width: 84px !important;
}

body.pl-single-product-matrace .single-product-gallery__thumb-image,
body.pl-single-product-matrace .single-product-gallery__thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

@media (max-width: 640px) {
	body.pl-single-product-matrace .single-product-gallery__thumb {
		flex-basis: 72px !important;
		width: 72px !important;
	}
}


/* ------------------------------------------------------------
   WooCommerce – Empty cart block
   ------------------------------------------------------------ */

.wp-block-woocommerce-empty-cart-block {
	max-width: 1280px !important;
	margin: 0 auto;
	padding: 12px 0 8px;
}

.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block > .wp-block-heading {
	color: #1f4f48;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
}

.wp-block-woocommerce-empty-cart-block > .wp-block-separator.is-style-dots {
	max-width: 120px;
	margin: 18px auto 30px;
	border-color: #d8cfbf;
	opacity: 1;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 18px;
	background: #f8f5ef;
	border: 1px solid #e6dcc8;
	border-radius: 28px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover {
	transform: translateY(-2px);
	border-color: #d7c7a8;
	box-shadow: 0 18px 34px rgba(31, 79, 72, 0.08);
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
	margin-bottom: 16px;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	aspect-ratio: 1 / 1;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
	color: #1f4f48;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
	margin-bottom: 10px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
	margin-top: auto;
	margin-bottom: 18px;
	color: #1f4f48;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 600;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price .amount {
	font-weight: 700;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
	margin-top: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 22px;
	border-radius: 999px;
	border: 1px solid #224a44;
	background: #224a44;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
	background: #1b3f3a;
	border-color: #1b3f3a;
	color: #fff;
	transform: translateY(-1px);
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:focus-visible {
	outline: 2px solid rgba(34, 74, 68, 0.35);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
		padding: 16px;
		border-radius: 22px;
	}

	.wc-block-cart__empty-cart__title,
	.wp-block-woocommerce-empty-cart-block > .wp-block-heading {
		font-size: 28px;
	}

	.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
		font-size: 18px;
	}
}


/* ------------------------------------------------------------
   Footer recenzie – natívny mobile slider (<= 550px)
   ------------------------------------------------------------ */
@media (max-width: 550px) {
	.home-reviews__viewport,
	.home-reviews__viewport.home-reviews__viewport--native {
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
		width: 100vw;
		max-width: 100vw;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}
	.home-reviews__track,
	.home-reviews__viewport.home-reviews__viewport--native .home-reviews__track,
	.home-reviews__track.home-reviews__track--native {
		display: flex;
		box-sizing: border-box;
		width: 100vw;
		max-width: 100vw;
		min-width: 0;
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 16px;
		padding: 55px 5vw 75px;
		transform: none !important;
		transition: none !important;
		touch-action: pan-x pan-y;
		scroll-snap-type: x mandatory;
	}
	.home-reviews__track::-webkit-scrollbar,
	.home-reviews__track.home-reviews__track--native::-webkit-scrollbar {
		display: none;
	}
	.home-reviews__card,
	.home-reviews__viewport.home-reviews__viewport--native .home-reviews__card,
	.home-reviews__track.home-reviews__track--native .home-reviews__card {
		box-sizing: border-box;
		flex: 0 0 90vw;
		min-width: 90vw !important;
		max-width: 90vw !important;
		scroll-snap-align: start;
	}
}

/* ------------------------------------------------------------
   Blog – archív, single, breadcrumb, sidebar
   ------------------------------------------------------------ */
.page-hero.page-hero--blog .shop-hero__inner,
.page-hero.page-hero--blog-single .shop-hero__inner,
.page-hero.page-hero--blog-archive .shop-hero__inner {
	padding-top: 18px;
	padding-bottom: 18px;
}

.page-hero .gutenberg-breadcrumb,
.page-hero .gutenberg-breadcrumb a,
.page-hero .gutenberg-breadcrumb__current,
.page-hero .page-hero__post-meta,
.page-hero .page-hero__post-meta a,
.page-hero .page-hero__post-date,
.page-hero .page-hero__post-cats {
	color: #fff;
}

.page-hero.white .gutenberg-breadcrumb,
.page-hero.white .gutenberg-breadcrumb a,
.page-hero.white .gutenberg-breadcrumb__current,
.page-hero.white .page-hero__post-meta,
.page-hero.white .page-hero__post-meta a {
	color: #fff;
}

.page-hero__post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.4;
	opacity: .95;
}

.page-hero__post-cats a {
	text-decoration: none;
}

.page-hero__post-cats a:hover,
.page-hero .gutenberg-breadcrumb a:hover {
	text-decoration: underline;
}

.blog-layout {
	padding: 48px 0 72px;
}

.blog-layout__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	align-items: start;
}

.blog-layout__main,
.single-post-article {
	min-width: 0;
}

.blog-layout__sidebar {
	min-width: 0;
}

.blog-layout__sidebar .widget {
	background: #fff;
	border: 1px solid rgba(34, 74, 68, 0.08);
	border-radius: 18px;
	padding: 20px;
	margin-bottom: 18px;
	box-shadow: 0 10px 30px rgba(12, 29, 25, 0.05);
}

.blog-layout__sidebar .widget-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.2;
}

.single-post__content.page-content-gutenberg,
.blog-card__body.page-content-gutenberg {
	padding: 28px 32px !important;
}

.single-post-article {
	background: #fff;
	border: 1px solid rgba(34, 74, 68, 0.08);
	border-radius: 24px;
	box-shadow: 0 12px 36px rgba(12, 29, 25, 0.06);
	overflow: hidden;
}

.single-post__footer {
	padding: 0 32px 32px;
}

.single-post__nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
}

.blog-archive__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.blog-card {
	background: #fff;
	border: 1px solid rgba(34, 74, 68, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 36px rgba(12, 29, 25, 0.06);
}

.blog-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #eef1f2;
}

.blog-card__thumb img,
.blog-card__thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #eef1f2;
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	margin-bottom: 12px;
	color: #5f6b69;
}

.blog-card__meta a {
	text-decoration: none;
}

.blog-card__title {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.15;
}

.blog-card__title a {
	text-decoration: none;
	color: inherit;
}

.blog-card__title a:hover {
	text-decoration: underline;
}

.blog-card__excerpt p:last-child {
	margin-bottom: 0;
}

.blog-archive__pagination {
	margin-top: 32px;
}

/* ------------------------------------------------------------
   Produkt – štítok "Na objednávku"
   ------------------------------------------------------------ */
.single-product-summary__order-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	margin-bottom: 16px;
	border-radius: 8px;
	background: #224A44;
	color: #fff;
	font-size: 14px;
	line-height: 1;
}

@media (max-width: 960px) {
	.blog-layout__inner {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 768px) {
	.blog-layout {
		padding: 32px 0 48px;
	}

	.blog-archive__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.single-post__content.page-content-gutenberg,
	.blog-card__body.page-content-gutenberg,
	.single-post__footer {
		padding: 22px 20px !important;
	}

	.single-post__nav {
		flex-direction: column;
	}
}


/* ------------------------------------------------------------
   WooCommerce – Empty cart polish v2 (compact + tasteful)
   ------------------------------------------------------------ */
.wp-block-woocommerce-empty-cart-block {
	max-width: min(980px, calc(100% - 32px)) !important;
	margin: clamp(24px, 3vw, 38px) auto 56px !important;
	padding: 18px 0 0 !important;
	text-align: center !important;
	font-family: var(--font-nav, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif) !important;
	color: var(--color-primary, #224A44) !important;
}

/* Woo Blocks vkladá veľkú smutnú ikonku – skryjeme ju a nahradíme menšou. */
.wp-block-woocommerce-empty-cart-block > svg,
.wp-block-woocommerce-empty-cart-block > div:first-child > svg,
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__icon,
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart-icon,
.wp-block-woocommerce-empty-cart-block .wc-block-components-empty-cart__icon,
.wp-block-woocommerce-empty-cart-block .wc-block-components-empty-cart-icon,
.wp-block-woocommerce-empty-cart-block .wc-block-empty-cart__icon,
.wp-block-woocommerce-empty-cart-block [class*="empty-cart"][class*="icon"],
.wp-block-woocommerce-empty-cart-block [class*="empty_cart"][class*="icon"] {
	display: none !important;
	visibility: hidden !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

.wp-block-woocommerce-empty-cart-block::before {
	content: "";
	display: block;
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	border-radius: 999px;
	background-color: var(--color-primary, #224A44);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h8.9a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px 22px;
	box-shadow: 0 10px 24px rgba(12, 29, 25, 0.10);
}

.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block > .wp-block-heading:first-of-type,
.wp-block-woocommerce-empty-cart-block h2:first-of-type,
.wp-block-woocommerce-empty-cart-block h3:first-of-type {
	max-width: 640px !important;
	margin: 0 auto 10px !important;
	color: var(--color-primary, #224A44) !important;
	font-family: var(--font-nav, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif) !important;
	font-size: clamp(20px, 1.8vw, 24px) !important;
	line-height: 1.25 !important;
	font-weight: 750 !important;
	letter-spacing: -0.01em !important;
}

.wp-block-woocommerce-empty-cart-block > .wp-block-separator.is-style-dots,
.wp-block-woocommerce-empty-cart-block hr.is-style-dots {
	display: none !important;
}

.wp-block-woocommerce-empty-cart-block > .wp-block-heading:not(:first-of-type),
.wp-block-woocommerce-empty-cart-block h2:not(:first-of-type),
.wp-block-woocommerce-empty-cart-block h3:not(:first-of-type) {
	margin: 30px auto 18px !important;
	font-family: var(--font-nav, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif) !important;
	font-size: clamp(19px, 1.7vw, 23px) !important;
	line-height: 1.25 !important;
	font-weight: 750 !important;
	color: var(--color-primary, #224A44) !important;
}

.wp-block-woocommerce-empty-cart-block p {
	max-width: 560px !important;
	margin: 0 auto 18px !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: var(--color-cart-muted, #6B7280) !important;
}

/* Produkty v prázdnom košíku nech nie sú obrovské. */
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
	max-width: 920px !important;
	margin: 0 auto !important;
	gap: 18px !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
	padding: 12px !important;
	border-radius: 20px !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
	margin-bottom: 12px !important;
	border-radius: 16px !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
	font-size: 16px !important;
	line-height: 1.28 !important;
	margin-bottom: 8px !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
	font-size: 15px !important;
	line-height: 1.35 !important;
	margin-bottom: 12px !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wc-block-components-button {
	min-height: 42px !important;
	padding: 10px 16px !important;
	border-radius: 999px !important;
	font-size: 14px !important;
}

@media (max-width: 640px) {
	.wp-block-woocommerce-empty-cart-block {
		max-width: calc(100% - 24px) !important;
		margin-top: 22px !important;
		margin-bottom: 42px !important;
		padding-top: 10px !important;
	}

	.wp-block-woocommerce-empty-cart-block::before {
		width: 40px;
		height: 40px;
		background-size: 20px 20px;
		margin-bottom: 14px;
	}

	.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
		gap: 14px !important;
	}
}

/* =========================================================
   PÄTIČKA – obsah z Customizera, 5 stĺpcov
   ========================================================= */
.site-footer-main .footer-inner.footer-inner--customizer {
	display: grid;
	grid-template-columns: minmax(180px, 1.45fr) repeat(3, minmax(130px, 1fr)) minmax(170px, 1.25fr);
	column-gap: clamp(28px, 4vw, 58px);
	row-gap: 32px;
	align-items: flex-start;
}

.footer-inner--customizer .footer-logo img {
	max-width: 240px;
}

.site-footer-main .footer-heading,
.site-footer-main .footer-inner--customizer .widget-title {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #FFF7EE;
}

.footer-inner--customizer .footer-links li,
.footer-inner--customizer .footer-contact li {
	margin-bottom: 10px;
}

.footer-inner--customizer .footer-links.pravne li {
	margin-bottom: 8px;
}

.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact__label {
	display: block;
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 1.2;
	opacity: 0.75;
}

.footer-col-5 .footer-social {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-col-5 .footer-social-link {
	width: 32px;
	height: 32px;
}

.footer-col-5 .footer-social-link img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.site-footer-main .footer-inner.footer-inner--customizer {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 32px;
	}

	.footer-inner--customizer .footer-col-1 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.site-footer-main .footer-inner.footer-inner--customizer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-inner--customizer .footer-col-1,
	.footer-inner--customizer .footer-col-2,
	.footer-inner--customizer .footer-col-3,
	.footer-inner--customizer .footer-col-4,
	.footer-inner--customizer .footer-col-5 {
		grid-column: auto;
		transform: none !important;
		text-align: left;
	}

	.footer-inner--customizer .footer-col-1 {
		grid-column: 1 / -1;
	}

	.footer-inner--customizer .footer-logo img {
		margin: 0;
	}

	.footer-col-5 .footer-social {
		display: flex !important;
		justify-content: flex-start;
	}

	.footer-col-5 .footer-social a {
		margin: 0;
	}
}

@media (max-width: 480px) {
	.site-footer-main .footer-inner.footer-inner--customizer {
		grid-template-columns: 1fr;
	}

	.footer-inner--customizer .footer-col-1,
	.footer-inner--customizer .footer-col-2,
	.footer-inner--customizer .footer-col-3,
	.footer-inner--customizer .footer-col-4,
	.footer-inner--customizer .footer-col-5 {
		grid-column: 1 / -1;
		text-align: center;
	}

	.footer-inner--customizer .footer-logo img {
		margin: 0 auto;
	}

	.footer-col-5 .footer-social {
		justify-content: center;
	}
}

/* Ropko úpravy 2026-05 – footer, kategórie, WooCommerce */
@media (min-width: 901px) {
  .site-footer-main .footer-main__inner,
  .site-footer-main .footer-main-inner,
  .footer-main__inner,
  .footer-main-inner {
    grid-template-columns: minmax(120px, .72fr) repeat(3, minmax(150px, 1.15fr)) minmax(190px, 1.25fr);
  }

  .footer-logo img,
  .footer-brand img,
  .footer-column--brand img,
  .site-footer img.custom-logo {
    max-width: 170px;
    height: auto;
  }
}

.footer-accordion-toggle {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-align: left;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: default;
}

.footer-accordion-icon {
  display: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  opacity: .7;
  flex: 0 0 10px;
}

.footer-accordion-panel {
  overflow: visible;
}

@media (max-width: 768px) {
  input,
  select,
  textarea,
  .search-field,
  .woocommerce-product-search input[type="search"] {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .footer-accordion-toggle {
    cursor: pointer;
    padding: 12px 0;
  }

  .footer-accordion-heading {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .footer-accordion-icon {
    display: block;
  }

  .footer-accordion-toggle[aria-expanded="true"] .footer-accordion-icon {
    transform: rotate(225deg);
  }

  .footer-accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease;
  }

  .footer-accordion-panel.is-open {
    max-height: 700px;
    opacity: 1;
    padding: 12px 0 4px;
  }
}

.product_meta .sku_wrapper,
.product_meta .posted_in,
.product_meta .tagged_as {
  display: block;
  margin-bottom: 6px;
}

.shop-category-description {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 0 24px;
  box-shadow: none;
}

.shop-category-description__content {
  overflow: visible;
  transition: none;
}

.shop-category-description__content[hidden] {
  display: none !important;
}

.shop-category-description.is-collapsed .shop-category-description__content {
  max-height: none;
}

.shop-category-description__content--short p:last-child,
.shop-category-description__content--full p:last-child {
  margin-bottom: 0;
}

.shop-category-description__toggle {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--color-primary, #6f42c1);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.shop-category-description__toggle[hidden] {
  display: none !important;
}

/* Klasický WooCommerce košík/pokladňa + produktové množstvo */
.woocommerce-cart-form .coupon,
.woocommerce form.checkout_coupon,
.woocommerce-page form.checkout_coupon {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px dashed rgba(193, 146, 47, .55);
  border-radius: 18px;
  background: #fff;
}

.woocommerce-cart-form .coupon .input-text,
.woocommerce form.checkout_coupon .input-text,
.woocommerce-page form.checkout_coupon .input-text,
.woocommerce-cart-form .coupon input[type="text"],
.woocommerce form.checkout_coupon input[type="text"],
.woocommerce-page form.checkout_coupon input[type="text"] {
  flex: 1 1 220px;
  min-height: 48px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(34, 74, 68, .18) !important;
  padding: 10px 16px !important;
  background: #fff !important;
  color: var(--color-primary, #224A44) !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

.woocommerce-cart-form .coupon .button,
.woocommerce-cart-form .coupon button,
.woocommerce form.checkout_coupon .button,
.woocommerce form.checkout_coupon button,
.woocommerce-page form.checkout_coupon .button,
.woocommerce-page form.checkout_coupon button,
.cart-collaterals .coupon .button,
.woocommerce-cart .actions .coupon .button,
.woocommerce-checkout .checkout_coupon .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: 0 !important;
  background: var(--color-accent, #548D76) !important;
  color: #F6F4E9 !important;
  font-family: var(--font-nav, inherit) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: none !important;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.woocommerce-cart-form .coupon .button:hover,
.woocommerce-cart-form .coupon button:hover,
.woocommerce form.checkout_coupon .button:hover,
.woocommerce form.checkout_coupon button:hover,
.woocommerce-page form.checkout_coupon .button:hover,
.woocommerce-page form.checkout_coupon button:hover,
.cart-collaterals .coupon .button:hover,
.woocommerce-cart .actions .coupon .button:hover,
.woocommerce-checkout .checkout_coupon .button:hover {
  background: #41705E !important;
  color: #F6F4E9 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18) !important;
}

.woocommerce-cart-form .coupon .button:disabled,
.woocommerce-cart-form .coupon button:disabled,
.woocommerce form.checkout_coupon .button:disabled,
.woocommerce form.checkout_coupon button:disabled,
.woocommerce-page form.checkout_coupon .button:disabled,
.woocommerce-page form.checkout_coupon button:disabled {
  opacity: .45 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.quantity.pl-qty-hidden,
.quantity:has(input[type="hidden"]) {
  display: none !important;
}

/* Produktové +/- nech vychádza z pôvodného single-product quantity dizajnu. */
.pl-qty-wrap {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  border: 2px solid #d9e2dc !important;
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden;
  width: auto !important;
  max-width: max-content !important;
  min-height: 48px;
}

.pl-qty-wrap .qty {
  width: 72px !important;
  min-width: 72px !important;
  max-width: 72px !important;
  min-height: 48px !important;
  padding: 11px 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
  font-family: var(--font-nav, inherit) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  color: var(--color-primary, #224A44) !important;
  background: transparent !important;
  outline: none !important;
  -moz-appearance: textfield;
}

.pl-qty-wrap .qty::-webkit-outer-spin-button,
.pl-qty-wrap .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pl-qty-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  min-width: 42px !important;
  min-height: 48px !important;
  padding: 0 !important;
  border: 0 !important;
  background: rgba(34, 74, 68, .05) !important;
  color: var(--color-primary, #224A44) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer;
  opacity: 1 !important;
}

.pl-qty-btn:hover {
  background: rgba(34, 74, 68, .1) !important;
}

.pl-qty-btn:disabled {
  opacity: .38 !important;
  cursor: not-allowed !important;
}

.woocommerce-variation-add-to-cart-disabled .quantity,
.woocommerce-variation-add-to-cart-disabled .pl-qty-wrap,
.outofstock form.cart .quantity,
.outofstock form.cart .pl-qty-wrap {
  display: none !important;
}

.pl-stock-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #21172f;
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
  z-index: 20;
  pointer-events: none;
}

.pl-stock-tooltip.is-visible,
.pl-qty-wrap.pl-stock-is-limited:hover .pl-stock-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Pri WooCommerce Blocks nech tooltip nemení pôvodný dizajn quantity selectora. */
.wc-block-components-quantity-selector.pl-stock-is-limited {
  position: relative;
  overflow: visible !important;
}

.wc-block-components-quantity-selector.pl-stock-is-limited::after {
  content: 'Viac kusov nie je skladom.';
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #21172f;
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
  z-index: 50;
  pointer-events: none;
}

.wc-block-components-quantity-selector.pl-stock-is-limited:hover::after,
.wc-block-components-quantity-selector.pl-stock-tooltip-parent::after {
  opacity: 1;
  visibility: visible;
}

.wc-block-components-quantity-selector.pl-stock-is-limited .wc-block-components-quantity-selector__button--plus {
  cursor: not-allowed !important;
}

.single_add_to_cart_button.disabled,
.single_add_to_cart_button.wc-variation-is-unavailable,
.single_add_to_cart_button:disabled,
.button.add_to_cart_button.disabled,
.button.add_to_cart_button:disabled {
  background: #5b967f !important;
  border-color: #5b967f !important;
  color: #fff !important;
  opacity: .48 !important;
  cursor: not-allowed !important;
  filter: none !important;
  box-shadow: none !important;
}

@media (min-width: 901px) {
  .site-footer-main .footer-inner.footer-inner--customizer {
    grid-template-columns: minmax(120px, .72fr) repeat(3, minmax(150px, 1.15fr)) minmax(190px, 1.25fr);
  }

  .footer-inner--customizer .footer-logo img {
    max-width: 170px;
  }
}

@media (max-width: 480px) {
  .footer-inner--customizer .footer-col-2,
  .footer-inner--customizer .footer-col-3,
  .footer-inner--customizer .footer-col-4,
  .footer-inner--customizer .footer-col-5 {
    text-align: left;
  }
}

/* =========================================================
   CLASSIC CHECKOUT/CART – Postele Lara shortcode vzhľad
   ========================================================= */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  width: min(1200px, calc(100% - 32px));
  margin: 40px auto 80px;
  font-family: var(--font-nav, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  color: var(--color-primary, #224A44);
}

.woocommerce-cart form.woocommerce-cart-form,
.woocommerce-checkout form.checkout.woocommerce-checkout {
  margin: 0;
}

.woocommerce-checkout form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, .95fr);
  gap: 32px;
  align-items: flex-start;
}

.woocommerce-checkout form.checkout.woocommerce-checkout > .col2-set,
.woocommerce-checkout form.checkout.woocommerce-checkout > #order_review,
.woocommerce-cart form.woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals {
  background: #fff;
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 18px 60px rgba(12, 29, 25, .08);
}

.woocommerce-checkout form.checkout.woocommerce-checkout > .col2-set {
  width: 100% !important;
  float: none !important;
  grid-column: 1;
}

.woocommerce-checkout form.checkout.woocommerce-checkout > #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 -10px;
  padding: 24px 28px 0;
  background: var(--color-cart-bg, #FFF7EE);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 18px 60px rgba(12, 29, 25, .08);
  font-size: 20px;
}

.woocommerce-checkout form.checkout.woocommerce-checkout > #order_review {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 48px;
  background: var(--color-cart-bg, #FFF7EE);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 18px 60px rgba(12, 29, 25, .08);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-cart .cart_totals h2 {
  color: var(--color-primary, #224A44);
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce-checkout .col2-set .col-2 {
  margin-top: 22px !important;
}

.woocommerce-checkout .form-row,
.woocommerce-cart .form-row {
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px) !important;
}

.woocommerce-checkout .form-row-first {
  margin-right: 16px !important;
}

.woocommerce-checkout .form-row label,
.woocommerce-cart .form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-cart-muted, #6B7280);
  font-size: 13px;
  font-weight: 500;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-cart .form-row input.input-text,
.woocommerce-cart .form-row textarea,
.woocommerce-cart .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
  width: 100% !important;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--color-cart-border, #E5E7EB) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--color-primary, #224A44) !important;
  font-size: 16px !important;
  box-shadow: none !important;
  outline: none !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  padding-left: 0;
  color: var(--color-primary, #224A44);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-cart .form-row input.input-text:focus,
.woocommerce-cart .form-row textarea:focus,
.woocommerce-cart .form-row select:focus,
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--color-primary, #224A44) !important;
  box-shadow: 0 0 0 3px rgba(34, 74, 68, .08) !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-cart table.shop_table {
  width: 100%;
  border: 0 !important;
  border-collapse: collapse;
  margin: 0 0 18px !important;
  color: var(--color-primary, #224A44);
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  border: 0 !important;
  border-bottom: 1px solid rgba(148, 163, 184, .28) !important;
  padding: 14px 0 !important;
  color: var(--color-primary, #224A44);
  vertical-align: top;
}

.woocommerce-checkout table.shop_table thead th,
.woocommerce-cart table.shop_table thead th {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-cart-muted, #6B7280);
}

.woocommerce-checkout table.shop_table .product-total,
.woocommerce-cart table.shop_table .product-subtotal {
  text-align: right;
}

.woocommerce-checkout .woocommerce-checkout-payment,
.woocommerce-checkout #payment {
  background: transparent !important;
  border-radius: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 18px !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 0 10px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 74, 68, .12);
  border-radius: 14px;
  background: #fff;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8f5ef;
  color: var(--color-primary, #224A44);
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin: 16px 0;
  font-size: 14px;
  color: var(--color-primary, #224A44);
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox.checkbox,
.woocommerce-checkout label.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.woocommerce-checkout input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent, #548D76);
  flex: 0 0 auto;
}

.woocommerce-checkout #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart table.cart button.button,
.woocommerce-cart .return-to-shop a.button,
.woocommerce-checkout button.button,
.woocommerce-checkout a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 10px 20px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--color-accent, #548D76) !important;
  color: #F6F4E9 !important;
  font-family: var(--font-nav, inherit) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
}

.woocommerce-checkout #place_order {
  width: 100%;
  margin-top: 10px;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart table.cart button.button:hover,
.woocommerce-cart .return-to-shop a.button:hover,
.woocommerce-checkout button.button:hover,
.woocommerce-checkout a.button:hover {
  background: #41705E !important;
  color: #F6F4E9 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18) !important;
}

@media (max-width: 900px) {
  .woocommerce-checkout form.checkout.woocommerce-checkout {
    display: block;
  }

  .woocommerce-checkout form.checkout.woocommerce-checkout > .col2-set,
  .woocommerce-checkout form.checkout.woocommerce-checkout > #order_review,
  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals .cart_totals {
    padding: 20px 18px;
    margin-bottom: 24px;
  }

  .woocommerce-checkout form.checkout.woocommerce-checkout > #order_review_heading {
    margin: 0;
    padding: 20px 18px 0;
    border-radius: 24px 24px 0 0;
  }

  .woocommerce-checkout form.checkout.woocommerce-checkout > #order_review {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100% !important;
    margin-right: 0 !important;
    float: none !important;
  }

  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    width: min(100% - 24px, 620px);
    margin-top: 28px;
  }
}


/* =========================================================
   V6 – doladenie blokového kupónu a kompaktného +/- množstva
   ========================================================= */

/* Block cart kupón: prebije default čierne .wp-element-button/.wc-block-components-button. */
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form,
body.woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__form,
body.woocommerce-cart .wc-block-components-totals-coupon__form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: stretch !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__input,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form input,
body.woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__form input,
body.woocommerce-cart .wc-block-components-totals-coupon__form input {
  min-height: 48px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(34, 74, 68, .18) !important;
  background: #fff !important;
  color: var(--color-primary, #224A44) !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__button,
body.woocommerce-cart .wp-block-woocommerce-cart button.wc-block-components-totals-coupon__button,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form button[type="submit"],
body.woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__button,
body.woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__form .wc-block-components-button,
body.woocommerce-cart .wc-block-components-totals-coupon__button,
body.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button,
body.woocommerce-cart .wc-block-components-totals-coupon__form button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 10px 20px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--color-accent, #548D76) !important;
  color: #F6F4E9 !important;
  font-family: var(--font-nav, inherit) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__button:hover,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button:hover,
body.woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__button:hover,
body.woocommerce-cart .wc-block-components-totals-coupon__button:hover,
body.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button:hover {
  background: #41705E !important;
  color: #F6F4E9 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18) !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__button:disabled,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__button[disabled],
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button:disabled,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button[disabled],
body.woocommerce-cart .wc-block-components-totals-coupon__button:disabled,
body.woocommerce-cart .wc-block-components-totals-coupon__button[disabled],
body.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button:disabled,
body.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button[disabled] {
  background: var(--color-accent, #548D76) !important;
  color: #F6F4E9 !important;
  opacity: .45 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Single produkt: kompaktné +/- bez obrovského pill inputu. */
body.single-product form.cart .pl-qty-wrap,
body.single-product .single-product-summary__actions form.cart .pl-qty-wrap,
body.single-product .single-product-summary__actions .pl-qty-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 12px 0 0 !important;
  padding: 0 !important;
  border: 2px solid #d9e2dc !important;
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden !important;
  box-shadow: none !important;
  vertical-align: middle !important;
}

body.single-product form.cart .pl-qty-wrap .qty,
body.single-product .single-product-summary__actions .pl-qty-wrap .qty {
  display: inline-flex !important;
  flex: 0 0 58px !important;
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  text-align: center !important;
  color: var(--color-primary, #224A44) !important;
  font-family: var(--font-nav, inherit) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 44px !important;
  outline: none !important;
}

body.single-product form.cart .pl-qty-btn,
body.single-product .single-product-summary__actions .pl-qty-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 36px !important;
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: rgba(34, 74, 68, .78) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body.single-product form.cart .pl-qty-btn:hover,
body.single-product .single-product-summary__actions .pl-qty-btn:hover {
  background: var(--color-header-bg, #FFF7EE) !important;
  color: var(--color-primary, #224A44) !important;
  transform: none !important;
  box-shadow: none !important;
}

body.single-product form.cart .pl-qty-btn:disabled,
body.single-product .single-product-summary__actions .pl-qty-btn:disabled {
  opacity: .38 !important;
  cursor: not-allowed !important;
}

body.single-product .single-product-summary__actions .cart,
body.single-product .single-product-summary__actions form.cart {
  align-items: center !important;
  gap: 0 !important;
}

@media (max-width: 480px) {
  body.single-product form.cart .pl-qty-wrap,
  body.single-product .single-product-summary__actions .pl-qty-wrap {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
  }

  body.single-product form.cart .pl-qty-wrap .qty,
  body.single-product .single-product-summary__actions .pl-qty-wrap .qty {
    flex-basis: 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
  }

  body.single-product form.cart .pl-qty-btn,
  body.single-product .single-product-summary__actions .pl-qty-btn {
    flex-basis: 34px !important;
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
  }
}

/* =========================================================
   HEADER LIVE SEARCH – produkty, kategórie, vlastnosti
   ========================================================= */
.header-search {
  min-width: min(620px, calc(100vw - 32px));
}

.header-search__form {
  position: relative;
}

.header-live-search {
  width: calc(100% - 20px);
  max-height: min(520px, calc(100vh - 140px));
  margin: 0 20px 18px 0;
  padding: 14px;
  overflow: auto;
  border: 1px solid rgba(34, 74, 68, .12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(12, 29, 25, .14);
  box-sizing: border-box;
}

.header-live-search[hidden] {
  display: none !important;
}

.header-live-search__section + .header-live-search__section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(34, 74, 68, .10);
}

.header-live-search__section h3 {
  margin: 0 0 10px;
  color: var(--color-primary, #224A44);
  font-family: var(--font-nav, inherit);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-live-search__products,
.header-live-search__terms {
  display: grid;
  gap: 8px;
}

.header-live-search__product,
.header-live-search__term {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  color: var(--color-primary, #224A44);
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}

.header-live-search__product:hover,
.header-live-search__product:focus,
.header-live-search__term:hover,
.header-live-search__term:focus {
  background: var(--color-header-bg, #FFF7EE);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}

.header-live-search__product-image {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f5ef;
}

.header-live-search__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-live-search__product-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.header-live-search__product-name,
.header-live-search__term-name {
  color: var(--color-primary, #224A44);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.header-live-search__product-meta,
.header-live-search__term-label {
  color: rgba(34, 74, 68, .62);
  font-size: 12px;
  line-height: 1.25;
}

.header-live-search__product-price {
  color: var(--color-accent, #548D76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.header-live-search__product-price .price-ex-vat {
  display: none !important;
}

.header-live-search__term {
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(34, 74, 68, .08);
  background: rgba(255, 247, 238, .55);
}

.header-live-search__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--color-accent, #548D76);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.header-live-search__all:hover,
.header-live-search__all:focus {
  filter: brightness(.96);
  color: #fff;
  text-decoration: none;
  outline: none;
}

.header-live-search__loading,
.header-live-search__empty {
  padding: 12px;
  color: rgba(34, 74, 68, .72);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 480px) {
  .header-search {
    min-width: 100vw;
  }

  .header-live-search {
    width: calc(100vw - 24px);
    margin: 0 12px 14px;
    max-height: calc(100vh - 150px);
  }

  .header-live-search__product-image {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
}

/* =========================================================
   MEGA MENU – kategória + rozmery + 3 náhodné produkty
   ========================================================= */
.header-inner {
  position: relative;
}

.header-nav .menu-item-has-mega {
  position: static;
}

/* Bez ikonky/šípky pri položke, ktorá má mega menu. */
.header-nav .menu-item-has-mega > a::after {
  content: none !important;
  display: none !important;
}

.header-mega-menu {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + 14px);
  z-index: 1200;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  text-transform: none;
  letter-spacing: 0;
}

.header-mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -42px;
  height: 42px;
}

.header-nav .menu-item-has-mega:hover > .header-mega-menu,
.header-nav .menu-item-has-mega:focus-within > .header-mega-menu,
.header-nav .menu-item-has-mega.is-mega-menu-open > .header-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-mega-menu__shell {
  width: 100vw;
  background: #ffffff;
  border-top: 1px solid rgba(34, 74, 68, .10);
  border-bottom: 1px solid rgba(34, 74, 68, .10);
  box-shadow: 0 24px 70px rgba(12, 29, 25, .16);
}

.header-mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 42px;
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 30px 0 34px;
  box-sizing: border-box;
}

.header-mega-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header-mega-menu__section:empty,
.header-mega-menu__nav:empty {
  display: none;
}

.header-mega-menu__heading {
  margin: 0 0 14px;
  color: var(--color-primary, #224A44);
  font-family: var(--font-nav, inherit);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-mega-menu__list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mega-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 0;
  background: rgba(255, 247, 238, .62);
  color: var(--color-primary, #224A44) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none !important;
}

.header-mega-menu__list a::after {
  content: "→";
  opacity: .55;
  transform: translateX(-3px);
  transition: transform .15s ease, opacity .15s ease;
}

.header-mega-menu__list a:hover::after,
.header-mega-menu__list a:focus::after {
  opacity: 1;
  transform: translateX(0);
}

.header-mega-menu__list a:hover,
.header-mega-menu__list a:focus {
  background: var(--color-header-bg, #FFF7EE);
  color: var(--color-gold, #C1922F) !important;
  outline: none;
}


.header-mega-menu__list--attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.header-mega-menu__list--attributes li {
  margin: 0;
}

.header-mega-menu__list--attributes a {
  display: inline-flex;
  justify-content: center;
  width: auto;
  padding: 7px 10px;
  border: 1px solid rgba(34, 74, 68, .13);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  line-height: 1.12;
  white-space: nowrap;
}

.header-mega-menu__list--attributes a::after {
  content: none !important;
  display: none !important;
}

.header-mega-menu__list--attributes a:hover,
.header-mega-menu__list--attributes a:focus {
  background: var(--color-header-bg, #FFF7EE);
}

.header-mega-menu__products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.header-mega-menu__product-card.home-products__card {
  min-width: 0;
  max-width: none;
  width: 100%;
}

.header-mega-menu__product-card .home-products__image-wrapper {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.header-mega-menu__product-card .home-products__image-wrapper img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.header-mega-menu__product-card .home-products__content {
  margin-top: 12px;
  padding: 0;
}

.header-mega-menu__product-card .home-products__name {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.header-mega-menu__product-card .home-products__prices {
  margin: 0 0 10px;
}

.header-mega-menu__product-card .home-products__price,
.header-mega-menu__product-card .home-products__price .amount {
  font-size: 18px !important;
  line-height: 1.2;
}

.header-mega-menu__product-card .price-ex-vat {
  display: none !important;
}

.header-mega-menu__product-card .home-products__button,
.header-mega-menu__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-accent, #548D76);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
}

.header-mega-menu__product-card .home-products__button:hover,
.header-mega-menu__fallback:hover {
  filter: brightness(.96);
  transform: none;
  box-shadow: none;
}

.mobile-nav__menus .header-mega-menu {
  display: none !important;
}

@media (max-width: 960px) {
  .header-mega-menu {
    display: none !important;
  }
}

/* =========================================================
   MOBILE MENU V12 – kategórie hore, ostatné odkazy dole
   ========================================================= */
@media (max-width: 960px) {
  .mobile-nav {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    padding: 22px 22px 0;
    gap: 0;
    box-sizing: border-box;
  }

  .mobile-nav__top {
    flex: 0 0 auto;
    padding-bottom: 16px;
    margin-bottom: 0;
  }

  .mobile-nav__menus {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 2px 28px 0;
    margin: 0;
  }

  .mobile-nav__bottom {
    flex: 0 0 auto;
    margin-top: 0;
    padding: 16px 0 18px;
    border-top: 1px solid rgba(34, 74, 68, .14);
    background: #ffffff;
    box-shadow: 0 -18px 34px rgba(12, 29, 25, .08);
  }

  .mobile-category-menu {
    display: grid;
    gap: 10px;
  }

  .mobile-category-accordion {
    border: 1px solid rgba(34, 74, 68, .12);
    background: var(--color-header-bg, #FFF7EE);
    border-radius: 16px;
    overflow: hidden;
  }

  .mobile-category-accordion__toggle,
  .mobile-category-accordion__subtoggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border: 0;
    background: transparent;
    color: var(--color-primary, #224A44);
    font-family: var(--font-nav, inherit);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
  }

  .mobile-category-accordion__icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .16s ease;
    flex: 0 0 auto;
  }

  .mobile-category-accordion__toggle[aria-expanded="true"] .mobile-category-accordion__icon,
  .mobile-category-accordion__subtoggle[aria-expanded="true"] .mobile-category-accordion__icon {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .mobile-category-accordion__panel,
  .mobile-category-accordion__subpanel {
    padding: 0 15px 15px;
  }

  .mobile-category-accordion__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0 12px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--color-accent, #548D76);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
  }

  .mobile-category-accordion__links,
  .mobile-category-accordion__chips,
  .mobile-nav__secondary-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-category-accordion__links {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
  }

  .mobile-category-accordion__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(34, 74, 68, .10);
    color: var(--color-primary, #224A44) !important;
    font-size: 15px;
    font-weight: 650;
    text-decoration: none !important;
  }

  .mobile-category-accordion__links a::after {
    content: "→";
    opacity: .55;
  }

  .mobile-category-accordion__sizes {
    margin-top: 8px;
    border-top: 1px solid rgba(34, 74, 68, .12);
    padding-top: 6px;
  }

  .mobile-category-accordion__subtoggle {
    min-height: 42px;
    padding: 10px 0;
    font-size: 15px;
  }

  .mobile-category-accordion__subpanel {
    padding: 4px 0 2px;
  }

  .mobile-category-accordion__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-category-accordion__chips a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border: 1px solid rgba(34, 74, 68, .14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-primary, #224A44) !important;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.1;
    text-decoration: none !important;
  }

  .mobile-nav__secondary {
    margin-bottom: 12px;
  }

  .mobile-nav__secondary-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .mobile-nav__secondary-list a {
    display: inline-flex;
    color: var(--color-primary, #224A44) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
  }

  .mobile-nav__quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-nav__quick-actions .mobile-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    margin: 0;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--color-header-bg, #FFF7EE);
    color: var(--color-primary, #224A44) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
  }

  .mobile-nav__quick-actions .header-cart-count {
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
}


/* =========================================================
   MOBILE MENU V13 – spodné odkazy opäť jednoduchý zvislý zoznam
   ========================================================= */
@media (max-width: 960px) {
  .mobile-nav__bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px 0 18px;
  }

  .mobile-nav__secondary {
    margin: 0 0 10px;
  }

  .mobile-nav__secondary-list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav__secondary-item {
    margin: 0;
  }

  .mobile-nav__secondary-list a {
    display: block;
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--color-primary, #224A44) !important;
    font-family: var(--font-nav, inherit);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none !important;
  }

  .mobile-nav__secondary-list a:hover,
  .mobile-nav__secondary-list a:focus {
    color: var(--color-gold, #C1922F) !important;
    padding-left: 4px;
    border-color: rgba(0, 0, 0, 0.12);
  }

  .mobile-nav__quick-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .mobile-nav__quick-actions .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 9px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    color: var(--color-primary, #224A44) !important;
    font-family: var(--font-nav, inherit);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none !important;
  }

  .mobile-nav__quick-actions .mobile-nav__link:hover,
  .mobile-nav__quick-actions .mobile-nav__link:focus {
    color: var(--color-gold, #C1922F) !important;
    padding-left: 4px;
    border-color: rgba(0, 0, 0, 0.12);
  }

  .mobile-nav__quick-actions .header-cart-count {
    position: static;
    min-width: 18px;
    height: 18px;
    margin-left: 6px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--color-accent, #548D76);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .mobile-nav__quick-actions .header-cart-count:empty {
    display: none;
  }
}


/* =========================================================
   MOBILE MENU V14 – kategórie automaticky, čisté textové položky
   ========================================================= */
@media (max-width: 960px) {
  .mobile-category-menu {
    display: block !important;
    margin: 0 !important;
    padding: 0 0 18px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .mobile-category-accordion {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .mobile-category-accordion__toggle,
  .mobile-category-accordion__subtoggle {
    width: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 12px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(34, 74, 68, .14) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-primary, #224A44) !important;
    font-family: var(--font-nav, inherit) !important;
    font-size: 1rem !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    cursor: pointer !important;
  }

  .mobile-category-accordion__subtoggle {
    padding: 10px 0 !important;
    font-size: .95rem !important;
    font-weight: 600 !important;
  }

  .mobile-category-accordion__icon {
    width: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
    border: 0 !important;
    transform: none !important;
    color: inherit !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
  }

  .mobile-category-accordion__icon::before {
    content: "+";
  }

  .mobile-category-accordion__toggle[aria-expanded="true"] .mobile-category-accordion__icon,
  .mobile-category-accordion__subtoggle[aria-expanded="true"] .mobile-category-accordion__icon {
    transform: none !important;
  }

  .mobile-category-accordion__toggle[aria-expanded="true"] .mobile-category-accordion__icon::before,
  .mobile-category-accordion__subtoggle[aria-expanded="true"] .mobile-category-accordion__icon::before {
    content: "−";
  }

  .mobile-category-accordion__panel,
  .mobile-category-accordion__subpanel {
    margin: 0 !important;
    padding: 6px 0 12px 16px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-category-accordion__all {
    display: block !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-primary, #224A44) !important;
    font-size: .92rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
  }

  .mobile-category-accordion__links,
  .mobile-category-accordion__chips {
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-category-accordion__links li,
  .mobile-category-accordion__chips li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-category-accordion__links a,
  .mobile-category-accordion__chips a {
    display: block !important;
    width: 100% !important;
    padding: 8px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-primary, #224A44) !important;
    font-size: .92rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
  }

  .mobile-category-accordion__links a::after {
    content: none !important;
  }

  .mobile-category-accordion__sizes {
    margin: 4px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .mobile-category-accordion__subpanel {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .mobile-category-accordion__toggle:hover,
  .mobile-category-accordion__toggle:focus,
  .mobile-category-accordion__subtoggle:hover,
  .mobile-category-accordion__subtoggle:focus,
  .mobile-category-accordion__all:hover,
  .mobile-category-accordion__all:focus,
  .mobile-category-accordion__links a:hover,
  .mobile-category-accordion__links a:focus,
  .mobile-category-accordion__chips a:hover,
  .mobile-category-accordion__chips a:focus {
    color: var(--color-gold, #C1922F) !important;
    outline: none !important;
  }

  .mobile-nav__menus {
    padding-right: 4px !important;
  }

  .mobile-nav__bottom {
    border-top: 1px solid rgba(34, 74, 68, .16) !important;
    box-shadow: 0 -18px 35px rgba(255, 255, 255, .94) !important;
  }
}


/* ------------------------------------------------------------
   Mobile shop filters – shortcode filters inside native filter rollout
   ------------------------------------------------------------ */
@media (max-width: 768px) {
	.shop-layout__sidebar .pl-wc-relevant-attribute-filters {
		display: none !important;
	}

	.shop-layout__sidebar .wc-block-product-filters__overlay .pl-wc-relevant-attribute-filters,
	.shop-layout__sidebar .wc-block-product-filters__overlay-dialog .pl-wc-relevant-attribute-filters,
	.shop-layout__sidebar .wc-block-product-filters__overlay-content .pl-wc-relevant-attribute-filters,
	.shop-layout__sidebar .wc-block-product-filters .pl-wc-relevant-attribute-filters,
	.shop-layout__sidebar .wp-block-woocommerce-product-filters .pl-wc-relevant-attribute-filters,
	.shop-layout__sidebar .pl-wc-product-filters-injected .pl-wc-relevant-attribute-filters,
	.shop-layout__sidebar .pl-mobile-filter-drawer .pl-wc-relevant-attribute-filters {
		display: block !important;
	}

	.shop-layout__sidebar .pl-wc-product-filters-injected {
		margin: 0 0 22px !important;
		padding: 0 0 18px !important;
		border-bottom: 1px solid rgba(34, 74, 68, 0.14) !important;
	}

	.shop-layout__sidebar .pl-wc-product-filters-injected:empty {
		display: none !important;
	}

	.shop-layout__sidebar .pl-wc-relevant-attribute-filters .widget,
	.shop-layout__sidebar .pl-wc-relevant-attribute-filters .shop-sidebar__widget,
	.shop-layout__sidebar .pl-wc-relevant-attribute-filters .pl-wc-native-attribute-filter {
		margin: 0 0 18px !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}

	.shop-layout__sidebar .pl-wc-relevant-attribute-filters .widget-title,
	.shop-layout__sidebar .pl-wc-relevant-attribute-filters .shop-sidebar__widget-title {
		margin: 0 0 10px !important;
		padding: 0 !important;
		font-size: 15px !important;
		line-height: 1.25 !important;
		font-weight: 700 !important;
		color: var(--color-primary, #224A44) !important;
	}

	.shop-layout__sidebar .pl-wc-relevant-attribute-filters ul {
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	.shop-layout__sidebar .pl-wc-relevant-attribute-filters li {
		margin: 0 !important;
		padding: 6px 0 !important;
		border: 0 !important;
	}

	.shop-layout__sidebar .pl-wc-relevant-attribute-filters a {
		display: inline !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		font-size: 14px !important;
		line-height: 1.35 !important;
		color: var(--color-primary, #224A44) !important;
		text-decoration: none !important;
	}

	.shop-layout__sidebar .pl-wc-relevant-attribute-filters a:hover {
		text-decoration: underline !important;
	}

	.shop-layout__sidebar .pl-mobile-filter-toggle {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		margin: 0 0 14px !important;
		padding: 12px 0 !important;
		border: 0 !important;
		border-top: 1px solid rgba(34, 74, 68, 0.14) !important;
		border-bottom: 1px solid rgba(34, 74, 68, 0.14) !important;
		background: transparent !important;
		color: var(--color-primary, #224A44) !important;
		font: inherit !important;
		font-weight: 700 !important;
		text-align: left !important;
		cursor: pointer !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}

	.shop-layout__sidebar .pl-mobile-filter-toggle__icon {
		font-size: 20px !important;
		line-height: 1 !important;
		font-weight: 400 !important;
	}

	.shop-layout__sidebar .pl-mobile-filter-drawer[hidden] {
		display: none !important;
	}

	.shop-layout__sidebar .pl-mobile-filter-drawer {
		display: block !important;
		padding: 0 0 18px !important;
	}
}


/* ------------------------------------------------------------
   HOME CATEGORIES – stabilná mobilná mriežka krúžkov
   ------------------------------------------------------------ */
@media (max-width: 768px) {
	.home-categories {
		width: min(360px, calc(100% - 32px)) !important;
		max-width: 360px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.home-categories__inner {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 28px 20px !important;
		justify-items: center !important;
		align-items: start !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.home-category-card {
		width: 140px !important;
		min-width: 140px !important;
		max-width: 140px !important;
		height: 184px !important;
		min-height: 184px !important;
		max-height: 184px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		overflow: hidden !important;
	}

	.home-category-card__image {
		width: 120px !important;
		height: 120px !important;
		flex: 0 0 120px !important;
		margin: 0 auto 12px !important;
	}

	.home-category-card__image img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		display: block !important;
	}

	.home-category-card__name {
		width: 140px !important;
		max-width: 140px !important;
		height: 44px !important;
		min-height: 44px !important;
		max-height: 44px !important;
		margin: 0 auto !important;
		line-height: 1.2 !important;
		text-align: center !important;
		overflow: hidden !important;
		display: -webkit-box !important;
		-webkit-line-clamp: 2 !important;
		-webkit-box-orient: vertical !important;
	}
}

@media (max-width: 360px) {
	.home-category-card {
		width: 132px !important;
		min-width: 132px !important;
		max-width: 132px !important;
		height: 176px !important;
		min-height: 176px !important;
		max-height: 176px !important;
	}

	.home-category-card__image {
		width: 110px !important;
		height: 110px !important;
		flex-basis: 110px !important;
	}

	.home-category-card__name {
		width: 132px !important;
		max-width: 132px !important;
	}
}


/* =========================================================
   MOBILE MENU V29 – názov kategórie je link, plus iba rozbaľuje možnosti
   ========================================================= */
@media (max-width: 960px) {
  .mobile-nav__top {
    padding-bottom: 18px !important;
    margin-bottom: 10px !important;
    border-bottom: 1px solid rgba(34, 74, 68, .16) !important;
  }

  .mobile-nav__label {
    font-size: 1.22rem !important;
    line-height: 1.2 !important;
    font-weight: 750 !important;
  }

  .mobile-category-accordion__toggle {
    cursor: default !important;
  }

  .mobile-category-accordion__title-link {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    color: var(--color-primary, #224A44) !important;
    font-family: var(--font-nav, inherit) !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
  }

  .mobile-category-accordion__title-link:hover,
  .mobile-category-accordion__title-link:focus {
    color: var(--color-gold, #C1922F) !important;
    outline: none !important;
  }

  .mobile-category-accordion__toggle-button {
    flex: 0 0 44px !important;
    width: 44px !important;
    min-height: 44px !important;
    margin: -10px 0 -10px auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-primary, #224A44) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    cursor: pointer !important;
  }

  .mobile-category-accordion__toggle-button:hover,
  .mobile-category-accordion__toggle-button:focus {
    color: var(--color-gold, #C1922F) !important;
    outline: none !important;
  }

  .mobile-category-accordion__toggle-button[aria-expanded="true"] .mobile-category-accordion__icon,
  .mobile-category-accordion__subtoggle[aria-expanded="true"] .mobile-category-accordion__icon {
    transform: none !important;
  }

  .mobile-category-accordion__toggle-button[aria-expanded="true"] .mobile-category-accordion__icon::before,
  .mobile-category-accordion__subtoggle[aria-expanded="true"] .mobile-category-accordion__icon::before {
    content: "−" !important;
  }
}


/* ------------------------------------------------------------
   PRODUCT GALLERY – mobilné šípky priamo na hlavnom obrázku
   ------------------------------------------------------------ */
.single-product-gallery__main-nav {
	display: none;
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 247, 238, 0.92);
	color: var(--color-primary, #224A44);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	-webkit-tap-highlight-color: transparent;
}

.single-product-gallery__main-nav--prev {
	left: 12px;
}

.single-product-gallery__main-nav--next {
	right: 12px;
}

.single-product-gallery__main-nav:hover,
.single-product-gallery__main-nav:focus-visible {
	background: #FFF7EE;
	outline: none;
}

@media (max-width: 768px) {
	.single-product-gallery__main-nav {
		display: inline-flex;
	}
}

@media (max-width: 420px) {
	.single-product-gallery__main-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.single-product-gallery__main-nav--prev {
		left: 8px;
	}

	.single-product-gallery__main-nav--next {
		right: 8px;
	}
}


/* =========================================================
   PPOM mobile image preview + conditional defaults
   ========================================================= */
.ppom-palette-item .pre_upload_image.image {
	position: relative;
}

.pl-ppom-image-preview-btn {
	display: none;
	position: absolute;
	right: 7px;
	top: 7px;
	z-index: 4;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 999px;
	background: rgba(34, 74, 68, 0.9);
	color: #fff;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
	-webkit-tap-highlight-color: transparent;
}

.pl-ppom-image-preview-btn::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pl-ppom-image-preview {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.72);
}

.pl-ppom-image-preview.is-open {
	display: flex;
}

.pl-ppom-image-preview__dialog {
	position: relative;
	width: min(92vw, 720px);
	max-height: 86vh;
	background: #fff;
	border-radius: 10px;
	padding: 14px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.pl-ppom-image-preview__close {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: rgba(34, 74, 68, 0.92);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.pl-ppom-image-preview__image {
	display: block;
	width: 100%;
	max-height: calc(86vh - 78px);
	object-fit: contain;
	border-radius: 8px;
	background: #f7f7f7;
}

.pl-ppom-image-preview__title {
	margin: 10px 44px 0 2px;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;
	color: var(--color-primary, #224A44);
}

@media (max-width: 960px) {
	.pl-ppom-image-preview-btn {
		display: inline-flex;
	}
}

/* Home categories slider: arrows only on mobile when there are 2–3 categories. */
.home-categories-slider__arrows--desktop-hidden {
	display: none;
}

@media (max-width: 768px) {
	.home-categories-slider__arrows--desktop-hidden {
		display: flex;
	}
}
