/**
 * Style dla szablonu koszyka WooCommerce
 * Odpowiedniki klas Tailwind użytych w szablonie
 */

/* Font Montserrat - musi być na początku przed wszystkimi regułami */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Kolory brandowe */
:root {
	--brand-brown: #a88466;
	--brand-brown-light: #eee3d9;
	--brand-gray-100: #f7f7f7;
	--brand-gray-200: #ebebeb;
	--brand-gray-300: #e0e0e0;
	--brand-gray-400: #999897;
	--brand-gray-500: #403e3c;
	--brand-gray-600: #1d1c1a;
	--brand-green: #21975a;
	--brand-green-light: rgba(70, 186, 126, 0.2);
	--brand-black: #1d1c1a;
}

.yokaba-cart-container {
	max-width: 1216px;
	margin: 0 auto;
}

/* Header */
.yokaba-cart-header {
	margin-bottom: 26px;
}

.yokaba-continue-shopping {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--brand-gray-600);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 26px;
	text-decoration: none;
}

.yokaba-continue-shopping:hover {
	text-decoration: underline;
}

.yokaba-cart-title {
	color: #000;
	font-size: 30px;
	font-weight: 600;
	line-height: 38px;
	margin: 0;
}
.yokaba-cart-main {
	padding-top: 40px;
}

@media (min-width: 768px) {
	.yokaba-cart-main {
		display: grid;
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 40px;
	}
}

@media (min-width: 1024px) {
	.yokaba-cart-main {
		grid-template-columns: minmax(0, 2fr) 1fr;
		gap: 32px;
	}
}

.yokaba-cart-content {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Sekcja pustego koszyka */
.yokaba-empty-cart-section {
	background: white;
	border: 1px solid var(--brand-gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	padding: 32px 85px;
	overflow: hidden;
}

.yokaba-empty-cart-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.yokaba-empty-cart-title {
	color: #1d1c1a !important;
	font-size: 24px !important;
	font-weight: 600;
	line-height: 32px !important;
	margin: 0;
}

.yokaba-empty-cart-link {
	color: var(--brand-brown);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: underline;
}

.yokaba-empty-cart-link:hover {
	text-decoration: none;
}

/* Sekcja produktów rekomendowanych */
.yokaba-recommended-section {
	background: white;
	border: 1px solid var(--brand-gray-200);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 21px;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.yokaba-recommended-title {
	color: #000;
	font-size: 16px !important;
	font-weight: 600;
	line-height: 24px !important;
	margin: 0;
}

.yokaba-recommended-products-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Swiper dla produktów rekomendowanych w pustym koszyku */
.yokaba-recommended-section .yokaba-related-products__swiper {
	overflow: hidden;
	padding-bottom: 8px;
	width: 100%;
}

.yokaba-recommended-section .yokaba-related-products__swiper .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

/* Zachowaj kompatybilność wsteczną dla starej struktury */
.yokaba-recommended-products {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-behavior: smooth !important;
	-webkit-overflow-scrolling: touch !important;
	scrollbar-width: none !important; /* Firefox */
	-ms-overflow-style: none !important; /* IE and Edge */
	width: 100%;
	max-width: 100%;
}

/* Ukryj scrollbar w Chrome, Safari i Opera */
.yokaba-recommended-products::-webkit-scrollbar {
	display: none !important;
}

.yokaba-product-card {
	flex-shrink: 0;
	background: white;
	border: 1px solid var(--brand-gray-200);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%; /* Upewnij się, że karta wypełnia całą wysokość slide */
}

/* Globalne style dla wszystkich sliderów Swiper - jednakowa wysokość kart */
.swiper-wrapper {
	display: flex;
	align-items: stretch; /* Rozciągnij wszystkie slide do najwyższego */
}

.swiper-slide {
	height: auto;
	display: flex;
	align-items: stretch; /* Rozciągnij slide do wysokości wrappera */
}

/* Upewnij się, że karty produktów w sliderach mają jednakową wysokość */
.swiper-slide .yokaba-product-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.swiper-slide .yokaba-product-card-content {
	display: flex;
	flex-direction: column;
}

/* Style dla Swiper w cart-empty */
.yokaba-recommended-section .swiper-slide {
	width: auto;
	height: auto;
	display: flex;
	align-items: stretch;
}

.yokaba-recommended-section .swiper-slide .yokaba-product-card {
	height: 100%;
	width: 100%;
	max-width: 230px;
	display: flex;
	flex-direction: column;
}

/* Upewnij się, że wszystkie karty mają równą wysokość */
.yokaba-recommended-section .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.yokaba-recommended-section .swiper-slide {
	height: auto;
	display: flex;
}

/* Na desktopie ustaw równą wysokość wszystkich kart */
@media (min-width: 1024px) {
	.yokaba-recommended-section .swiper-wrapper {
		align-items: stretch;
	}

	.yokaba-recommended-section .swiper-slide {
		height: auto;
		display: flex;
		align-items: stretch;
	}

	.yokaba-recommended-section .swiper-slide .yokaba-product-card {
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.yokaba-recommended-section .swiper-slide .yokaba-product-card-content {
		flex: 1;
		display: flex;
		flex-direction: column;
	}
}

.yokaba-product-card img {
	width: 100%;
	height: auto;
	display: block;
}

.yokaba-product-info {
	padding-inline: 12px;
}

.yokaba-product-card-content {
	display: flex;
	flex-direction: column;
}

.yokaba-product-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 10px;
}

.yokaba-product-name {
	color: var(--brand-gray-600);
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	margin: 0;
}

.yokaba-product-name a {
	color: inherit;
	text-decoration: none;
}

.yokaba-product-name a:hover {
	text-decoration: underline;
}

.yokaba-product-description {
	color: var(--brand-gray-400);
	font-size: 11px;
	font-weight: 500;
	line-height: 18px;
	margin: 0;
}

.yokaba-product-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
}

.yokaba-product-rating-inner {
	display: flex;
	align-items: center;
	gap: 4px;
}

.yokaba-product-rating-stars {
	display: flex;
	align-items: center;
}

.yokaba-product-rating-value {
	color: var(--brand-gray-600);
	font-size: 11px;
	font-weight: 600;
	line-height: 18px;
}

.yokaba-product-reviews-link {
	color: var(--brand-brown);
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	text-decoration: underline !important;
}

/* Gwiazdki oceny - czarne z obwódką (outline) zamiast wypełnionych */
.yokaba-product-rating-stars .star-rating,
.yokaba-product-rating .star-rating {
	color: #000000 !important;
}

.yokaba-product-footer {
	background: var(--brand-gray-100);
	padding: 12px 12px 10px;
	margin-top: auto;
}

.yokaba-product-footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-product-weight {
	color: var(--brand-gray-400);
	font-size: 12px;
	line-height: 18px;
	margin: 0 0 4px 0;
}

.yokaba-product-price {
	color: var(--brand-brown);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
}

/* Część główna ceny (przed przecinkiem) - globalnie */
.yokaba-price-main {
	font-size: inherit;
}

/* Grosze (część po przecinku) w cenach - mniejszy rozmiar - globalnie */
.yokaba-price-cents {
	font-size: 12px;
}

/* Dla cen w sekcji produktów "Wybrane dla Ciebie" */
.yokaba-product-price .yokaba-price-main {
	font-size: 18px;
}

.yokaba-product-price .yokaba-price-cents {
	font-size: 12px;
}

.yokaba-add-to-cart-btn {
	padding: 8px;
	background: var(--brand-brown);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
}

.yokaba-add-to-cart-btn:hover {
	background: var(--e-global-color-907d747);
	border-color: var(--e-global-color-907d747);
}

.yokaba-add-to-cart-btn svg {
	display: block;
}

.yokaba-products-gradient {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 48px;
	background: linear-gradient(to left, white, transparent);
	pointer-events: none;
}

.yokaba-products-controls {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

/* Style przycisków scroll z pluginu yokaba related products */
.yokaba-scroll-btn,
.yokaba-related-products__nav-btn {
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	border-radius: 6px;
	border: 1px solid var(--brand-gray-200) !important;
	background-color: #ffffff;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.yokaba-scroll-btn::after,
.yokaba-related-products__nav-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--brand-gray-500);
	border-right: 2px solid var(--brand-gray-500);
	transform: translate(-50%, -50%) rotate(45deg);
}

.yokaba-scroll-btn.scroll-left-btn::after,
.yokaba-related-products__nav-btn--prev::after {
	transform: translate(-50%, -50%) rotate(-135deg);
}

.yokaba-scroll-btn.scroll-right-btn::after,
.yokaba-related-products__nav-btn--next::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.yokaba-scroll-btn:hover,
.yokaba-related-products__nav-btn:hover {
	background-color: var(--e-global-color-de6d297) !important;
}

.yokaba-scroll-btn:disabled,
.yokaba-scroll-btn.swiper-button-disabled,
.yokaba-related-products__nav-btn:disabled,
.yokaba-related-products__nav-btn.swiper-button-disabled {
	opacity: 0.4;
}

/* Ukryj SVG w przyciskach scroll - używamy ::after */
.yokaba-scroll-btn svg {
	display: none;
}

/* Sidebar */
.yokaba-cart-sidebar {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.yokaba-sidebar-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Podsumowanie zamówienia */
.yokaba-order-summary {
	background: var(--brand-gray-100);
	border: 1px solid var(--brand-gray-200);
	overflow: hidden;
}

.yokaba-order-summary-header {
	padding: 19px 16px;
	background: var(--brand-gray-100);
	border-bottom: 1px solid var(--brand-gray-200);
	color: #000;
	font-size: 16px !important;
	font-weight: 600;
	line-height: 24px;
	margin: 0;
}

.yokaba-order-summary-content {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: var(--brand-gray-500);
	font-size: 14px;
	line-height: 20px;
}

.yokaba-order-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-order-summary-total {
	padding: 16px;
	background: white;
	border-top: 1px solid var(--brand-gray-200);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-order-summary-total-label {
	color: var(--brand-gray-600);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.yokaba-order-summary-total-price {
	text-align: right;
	color: var(--brand-gray-600);
	font-weight: 600;
}

.yokaba-order-summary-total-price .price-large {
	font-size: 20px;
	line-height: 30px;
}

.yokaba-order-summary-total-price .price-comma {
	font-size: 16px;
	line-height: 24px;
}

.yokaba-order-summary-total-price .price-small {
	font-size: 14px;
	line-height: 20px;
}

/* Kody i kupony */
.yokaba-coupon-section {
	background: white;
	border: 1px solid var(--brand-gray-200);
}

.yokaba-coupon-header {
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-coupon-title {
	color: var(--brand-gray-600);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin: 0;
}

.yokaba-coupon-link {
	color: var(--brand-gray-600);
	font-size: 14px;
	text-decoration: underline;
	line-height: 20px;
}

/* Przycisk checkout */
.yokaba-checkout-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.yokaba-checkout-btn {
	width: 100%;
	height: 56px;
	padding: 16px 28px;
	background: var(--brand-brown-light);
	border-radius: 2px;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	border: 1px solid var(--brand-brown-light);
	color: white;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.yokaba-checkout-btn:disabled {
	background: #7a7a7a;
	border: none !important;
	transition: all 0.3s ease;
}

.yokaba-checkout-btn:disabled:hover {
	background: #8d6d54;
	color: #fff;
}

.yokaba-payment-methods {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 346px;
}

.yokaba-payment-method {
	position: relative;
	width: 37.38px;
	height: 26px;
}

.yokaba-payment-method img {
	position: absolute;
	display: block;
}

.yokaba-payment-method img.background {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.yokaba-payment-method img:not(.background) {
	z-index: 2;
}

/* Darmowa dostawa */
.yokaba-free-shipping {
	padding: 16px;
	background: white;
	border: 1px solid var(--brand-gray-200);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.yokaba-free-shipping-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-free-shipping-text {
	font-size: 12px;
	line-height: 18px;
}

.yokaba-free-shipping-text .font-medium {
	font-weight: 500;
}

.yokaba-free-shipping-text .font-semibold {
	font-weight: 600;
}

.yokaba-free-shipping-text .text-brand-gray-500 {
	color: var(--brand-gray-500);
}

.yokaba-free-shipping-text .text-brand-gray-600 {
	color: var(--brand-gray-600);
}

.yokaba-progress-bar {
	width: 100%;
	background: var(--brand-gray-200);
	height: 4px;
	overflow: hidden;
	border-radius: 2px;
}

.yokaba-progress-bar-fill {
	height: 100%;
	background-color: var(--brand-brown);
	transition: width 0.3s ease, background-color 0.3s ease;
	border-radius: 2px;
}

.yokaba-progress-bar-fill-free {
	background-color: #46ba7e !important;
}

/* Upominki */
.yokaba-gifts-section {
	display: flex;
	flex-direction: column;
	gap: 21px;
}

.yokaba-gifts-title {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin: 0;
}

.yokaba-gifts-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.yokaba-gift-card {
	padding: 16px;
	background: white;
	border: 1px solid var(--brand-gray-200);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.yokaba-gift-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.yokaba-gift-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.yokaba-gift-name {
	color: var(--brand-gray-600);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin: 0;
}

.yokaba-gift-name a {
	color: inherit;
	text-decoration: none;
}

.yokaba-gift-description {
	color: var(--brand-gray-400);
	font-size: 12px;
	line-height: 18px;
	margin: 0;
}

.yokaba-gift-threshold {
	color: var(--brand-gray-500);
	font-size: 12px;
	line-height: 18px;
	margin: 0;
}

.yokaba-gift-divider {
	width: 100%;
	border-top: 1px solid var(--brand-gray-200);
	margin: 0;
}

.yokaba-gift-progress {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.yokaba-gift-progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-gift-progress-text {
	font-size: 12px;
	line-height: 18px;
}

.yokaba-gift-action {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-gift-action-link {
	color: var(--brand-brown);
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	text-decoration: underline;
}

/* Utility classes - odpowiedniki Tailwind */
.flex {
	display: flex;
}
.flex-col {
	flex-direction: column;
}
.items-center {
	align-items: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-end {
	justify-content: flex-end;
}
.gap-1 {
	gap: 4px;
}
.gap-2 {
	gap: 8px;
}
.gap-3 {
	gap: 12px;
}
.gap-4 {
	gap: 16px;
}
.gap-6 {
	gap: 24px;
}
.gap-1\.5 {
	gap: 6px;
}
.gap-3\.5 {
	gap: 14px;
}
.gap-0\.5 {
	gap: 2px;
}
.gap-\[22px\] {
	gap: 22px;
}
.gap-\[21px\] {
	gap: 21px;
}
.gap-\[100px\] {
	gap: 100px;
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-x-auto {
	overflow-x: auto;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.inset-y-0 {
	top: 0;
	bottom: 0;
}
.right-0 {
	right: 0;
}
.left-\[4\.88px\] {
	left: 4.88px;
}
.left-\[5\.34px\] {
	left: 5.34px;
}
.left-\[5\.57px\] {
	left: 5.57px;
}
.left-\[9\.92px\] {
	left: 9.92px;
}
.top-\[4\.86px\] {
	top: 4.86px;
}
.top-\[6\.52px\] {
	top: 6.52px;
}
.top-\[7\.58px\] {
	top: 7.58px;
}
.top-\[8\.35px\] {
	top: 8.35px;
}
.top-\[9\.21px\] {
	top: 9.21px;
}
.w-full {
	width: 100%;
}
.w-\[230px\] {
	width: 230px;
}
.w-\[346px\] {
	width: 346px;
}
.w-\[37\.38px\] {
	width: 37.38px;
}
.w-12 {
	width: 48px;
}
.h-2 {
	height: 8px;
}
.h-14 {
	height: 56px;
}
.h-\[26px\] {
	height: 26px;
}
.h-full {
	height: 100%;
}
.bg-white {
	background-color: white;
}
.bg-brand-gray-100 {
	background-color: var(--brand-gray-100);
}
.bg-brand-gray-200 {
	background-color: var(--brand-gray-200);
}
.bg-brand-brown {
	background-color: var(--brand-brown);
}
.bg-brand-brown-light {
	background-color: var(--brand-brown-light);
}
.bg-gradient-to-l {
	background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.from-white {
	--tw-gradient-from: white;
}
.border {
	border-width: 1px;
}
.border-t {
	border-top-width: 1px;
}
.border-b {
	border-bottom-width: 1px;
}
.border-brand-gray-200 {
	border-color: var(--brand-gray-200);
}
.border-brand-gray-300 {
	border-color: var(--brand-gray-300);
}
.border-brand-brown-light {
	border-color: var(--brand-brown-light);
}
.rounded-sm {
	border-radius: 2px;
}
.rounded-full {
	border-radius: 9999px;
}
.p-2 {
	padding: 8px;
}
.p-3 {
	padding: 12px;
}
.p-4 {
	padding: 16px;
}
.px-3 {
	padding-left: 12px;
	padding-right: 12px;
}
.px-4 {
	padding-left: 16px;
	padding-right: 16px;
}
.px-7 {
	padding-left: 28px;
	padding-right: 28px;
}
.py-4 {
	padding-top: 16px;
	padding-bottom: 16px;
}
.py-8 {
	padding-top: 32px;
	padding-bottom: 32px;
}
.py-\[19px\] {
	padding-top: 19px;
	padding-bottom: 19px;
}
.pt-3 {
	padding-top: 12px;
}
.pb-2\.5 {
	padding-bottom: 10px;
}
.px-\[85px\] {
	padding-left: 85px;
	padding-right: 85px;
}
.-m-3 {
	margin: -12px;
}
.mt-auto {
	margin-top: auto;
}
.mb-2\.5 {
	margin-bottom: 10px;
}
.text-black {
	color: #000;
}
.text-white {
	color: white;
}
.text-brand-gray-400 {
	color: var(--brand-gray-400);
}
.text-brand-gray-500 {
	color: var(--brand-gray-500);
}
.text-brand-gray-600 {
	color: var(--brand-gray-600);
}
.text-brand-brown {
	color: var(--brand-brown);
}
.text-xs {
	font-size: 12px;
}
.text-sm {
	font-size: 14px;
}
.text-base {
	font-size: 16px;
}
.text-xl {
	font-size: 20px;
}
.text-2xl {
	font-size: 24px;
}
.text-3xl {
	font-size: 30px;
}
.text-\[11px\] {
	font-size: 11px;
}
.font-medium {
	font-weight: 500;
}
.font-semibold {
	font-weight: 600;
}
.leading-5 {
	line-height: 20px;
}
.leading-6 {
	line-height: 24px;
}
.leading-\[18px\] {
	line-height: 18px;
}
.leading-\[30px\] {
	line-height: 30px;
}
.leading-\[38px\] {
	line-height: 38px;
}
.underline {
	text-decoration: underline;
}
.pointer-events-none {
	pointer-events: none;
}
.flex-shrink-0 {
	flex-shrink: 0;
}
.text-right {
	text-align: right;
}
.transition-all {
	transition-property: all;
}
.duration-300 {
	transition-duration: 300ms;
}
.shadow-\[0px_1px_2px_0px_rgba\(16\,24\,40\,0\.05\)\] {
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

/* Style dla niepustego koszyka */
.yokaba-cart-wrapper {
	max-width: 1216px;
	margin: 0 auto;
}

.yokaba-cart-wrapper .woocommerce-cart-form {
	background: white;
	padding: 24px;
	border-radius: 4px;
	margin-bottom: 24px;
}

.yokaba-cart-wrapper .cart-collaterals {
	background: white;
	padding: 24px;
	border-radius: 4px;
}

/* ============================================
   STYLE DLA KOSZYKA Z PRODUKTAMI
   ============================================ */

.yokaba-cart-with-items-wrapper {
	background: white;
	color: var(--brand-black);
}

.yokaba-cart-with-items-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 32px;
}

.yokaba-cart-layout {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (min-width: 1024px) {
	.yokaba-cart-layout {
		flex-direction: row;
		justify-content: space-between;
		gap: 32px;
	}
}

/* Sekcja produktów */
.yokaba-cart-items-section {
	flex: 1;
}

.yokaba-cart-header-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 26px;
}

.yokaba-continue-shopping-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--brand-black);
	text-decoration: none !important;
	margin-bottom: 26px;
}

.yokaba-continue-shopping-link:hover {
	color: var(--brand-brown);
}

.yokaba-cart-items-title {
	font-size: 30px;
	font-weight: 600;
	line-height: 38px;
	margin: 0;
}

.yokaba-download-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--brand-black);
}

.yokaba-cart-items-list {
	padding: 10px 36px !important;
	border: 1px solid var(--brand-gray-200);
}

.yokaba-cart-item {
	display: flex;
	padding-block: 32px;
}

.yokaba-cart-item img {
	width: 164px;
	height: 164px;
	object-fit: cover;
	flex-shrink: 0;
}

.yokaba-cart-item-content {
	display: flex;
	width: 100%;
}

.yokaba-cart-item-details {
	display: flex;
	justify-content: space-between;
	height: 100%;
	gap: 32px;
	width: 100%;
	margin-left: 38px;
}

.yokaba-cart-item-info {
	display: flex;
	flex-direction: column;
}

.yokaba-cart-item-name {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 30px !important;
	margin: 0 0 15px 0;
}

.yokaba-cart-item-description {
	font-size: 16px !important;
	color: #999897 !important;
	margin: 0 0 4px 0;
}

.yokaba-cart-items-list button,
.yokaba-coupon-modal button {
	border: 0 !important;
	padding: 0 !important;
}

.yokaba-cart-item-size {
	font-size: 16px;
	color: var(--brand-gray-400);
	margin: 0;
}

.yokaba-cart-item-unit-price {
	font-size: 12px;
	color: var(--e-global-color-secondary);
	line-height: 18px;
	margin-top: auto;
}

.yokaba-cart-item-info .iworks-omnibus {
	margin: 0;
}

.yokaba-cart-item-controls {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	height: 100%;
}

.yokaba-cart-item-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.yokaba-favorite-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--brand-black);
	display: flex;
}

.yokaba-quantity-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.yokaba-quantity-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--brand-brown);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Efekt hover - pokaż ikonę kosza po najechaniu na minus, gdy ilość = 1 */
.yokaba-quantity-minus.quantity-one:hover svg {
	opacity: 0;
}

.yokaba-quantity-minus.quantity-one:hover::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg width='23' height='26' viewBox='0 0 23 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6H22M19 6V21C19 22.1046 18.1046 23 17 23H6C4.89543 23 4 22.1046 4 21V6M7 6V4C7 2.89543 7.89543 2 9 2H14C15.1046 2 16 2.89543 16 4V6M10 11V18M13 11V18' stroke='%23FF2D57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.yokaba-quantity-input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px !important;
	padding: 0 !important;
	text-align: center;
	font-size: 18px !important;
	font-weight: 600;
	line-height: 28px !important;
	border: none !important;
	background: transparent;
	pointer-events: none;
}

.yokaba-cart-item-price {
	text-align: right;
	color: var(--brand-brown);
	width: max-content;
	display: flex;
	align-items: end;
}

.yokaba-cart-item-price .price-main {
	font-size: 30px;
	font-weight: 600;
	line-height: 38px;
}

.yokaba-cart-item-price .price-cents {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
}

.yokaba-cart-item-remove {
	position: absolute;
	top: 32px;
	right: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--brand-black);
	text-decoration: none;
}

/* Produkt upominkowy */
.yokaba-cart-item-gift .yokaba-cart-item-content {
	align-items: flex-start;
}

.yokaba-gift-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	background: #46ba7e14;
	margin-top: auto;
	width: max-content;
}

.yokaba-gift-badge svg {
	width: 16px;
	height: 16px;
}

.yokaba-gift-badge span {
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	color: var(--brand-green);
}

.yokaba-cart-item-divider {
	border-top: 1px solid var(--brand-gray-200);
	margin: 0;
}

/* Sidebar z produktami */
.yokaba-cart-sidebar-with-items {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 40px;
}

/*Promo Bar */
.promo-banner-wrapper {
	border: 1px solid var(--brand-gray-300);
	margin-bottom: 12px;
}

.promo-banner-head {
	padding: 12px 16px;
}

.promo-banner-head h3 {
	font-size: 12px;
	line-height: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}

.promo-banner-body {
	background: var(--brand-gray-100);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	position: relative;
}

.promo-banner-body h5 {
	font-size: 12px;
	line-height: 18px;
	margin: 0 0 4px;
	font-weight: 500;
}

.promo-banner-body p {
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	margin: 0;
}

.promo-tooltip-icon {
	min-width: 15px;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.promo-tooltip-icon:hover {
	transform: scale(1.1);
	opacity: 0.85;
}

.promo-tooltip-wrapper {
	position: absolute;
	bottom: 70%;
	right: 0;
	width: 320px;
	background: var(--brand-gray-600);
	color: #fff;
	padding: 12px;
	font-size: 13px;
	line-height: 1.4;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 99;
}

.promo-tooltip-icon:hover + .promo-tooltip-wrapper {
	opacity: 1;
	visibility: visible;
}

.yokaba-cart-item-promo {
	background: rgb(168 132 102 / 8%);
	padding: 7px 8px;
	font-size: 12px;
	line-height: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--brand-brown);
	max-width: max-content;
}

.promo-banner-body.active-promo,
.yokaba-cart-item-promo.yokaba-promo-applied {
	background: #46ba7e14;
}

.promo-banner-body.active-promo > p,
.yokaba-cart-item-promo.yokaba-promo-applied {
	color: #25b46a;
}

.yokaba-cart-item-promo.yokaba-promo-applied {
	font-weight: 500;
}

@media (min-width: 1024px) {
	.yokaba-cart-sidebar-with-items {
		width: 384px;
		margin-top: 0;
	}
}

.yokaba-order-summary-box {
	border: 1px solid var(--brand-gray-200);
	background: var(--brand-gray-100);
}

.yokaba-order-summary-title {
	font-size: 16px !important;
	line-height: 24px !important;
	font-weight: 600 !important;
	padding: 19px 16px;
	border-bottom: 1px solid var(--brand-gray-200);
	margin: 0;
	color: rgb(65, 63, 61) !important;
}

.yokaba-order-summary-details {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 14px;
	color: #413f3d !important;
}

.yokaba-order-summary-row {
	display: flex;
	justify-content: space-between;
}

/* Sekcja z kodami rabatowymi */
.yokaba-order-summary-discount-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-discount-label {
	color: var(--brand-gray-600);
	font-size: 14px;
	line-height: 20px;
}

.yokaba-remove-coupon-link {
	display: none !important;
}

.yokaba-remove-coupon-link:hover {
	color: var(--brand-gray-600);
}

.yokaba-remove-coupon-link:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.yokaba-remove-coupon-link svg {
	width: 16px;
	height: 16px;
}

.yokaba-discount-amount {
	font-weight: 400;
	font-size: 14px !important;
	line-height: 20px;
}

.yokaba-order-summary-total-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: white;
	border-top: 1px solid var(--brand-gray-200);
}

.yokaba-order-summary-total-box + div {
	padding: 16px;
	background: #fafafa;
}

.yokaba-order-summary-total-label {
	font-size: 14px;
	font-weight: 600;
}

.yokaba-order-summary-total-price {
	font-weight: 600;
	text-align: right;
}

.yokaba-order-summary-total-price .price-xl {
	font-size: 20px;
}

.yokaba-order-summary-total-price .price-base {
	font-size: 16px;
}

.yokaba-order-summary-total-price .price-sm {
	font-size: 14px;
}

.yokaba-coupon-box {
	padding: 16px;
	border: 1px solid var(--brand-gray-200);
	background: white;
}

.yokaba-coupon-box-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-coupon-label {
	font-size: 14px;
	font-weight: 600;
}

.yokaba-coupon-link {
	font-size: 14px;
	text-decoration: underline;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: inherit;
}

.yokaba-applied-coupons-list-sidebar {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
}

.yokaba-applied-coupon-item-sidebar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	background: var(--brand-gray-100);
	border-radius: 4px;
}

.yokaba-applied-coupon-code-sidebar {
	font-size: 14px;
	font-weight: 500;
	color: var(--brand-gray-600);
}

.yokaba-remove-coupon-link-sidebar {
	background: none !important;
	border: none !important;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0 !important;
	color: var(--brand-gray-400);
	transition: color 0.2s ease;
	flex-shrink: 0;
}

.yokaba-remove-coupon-link-sidebar:hover {
	color: var(--brand-gray-600);
}

.yokaba-remove-coupon-link-sidebar:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.yokaba-remove-coupon-link-sidebar svg {
	width: 16px;
	height: 16px;
}

.yokaba-checkout-section-with-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.page-content .yokaba-checkout-button {
	width: 100%;
	padding: 16px 28px !important;
	background: var(--brand-brown);
	color: white !important;
	font-size: 16px !important;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	border: 1px solid var(--brand-brown);
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	transition: all 0.2s ease;
}

.yokaba-checkout-button:hover {
	background: #8d6d54 !important;
}

.yokaba-payment-methods-simple {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 346px;
	margin: 0 auto;
}

.yokaba-payment-methods-simple img {
	height: auto;
	max-width: 100%;
}

.yokaba-sidebar-divider {
	border-top: 1px solid var(--brand-gray-200);
	margin: 0;
}

.yokaba-free-shipping-box {
	padding: 16px;
	background: white;
	border: 1px solid var(--brand-gray-200);
}

.yokaba-free-shipping-header-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.yokaba-free-shipping-text-box {
	font-size: 12px;
	font-weight: 500;
	color: #413f3d !important;
	margin: 0 !important;
}

/* Pasek postępu dla darmowej dostawy w sidebar */
.yokaba-free-shipping-box .yokaba-progress-bar {
	width: 100% !important;
	background: var(--brand-gray-200) !important;
	height: 4px !important;
	overflow: hidden !important;
	border-radius: 2px !important;
	margin-top: 12px !important;
	display: block !important;
}

.yokaba-free-shipping-box .yokaba-progress-bar-fill {
	height: 100% !important;
	background-color: #ff2d57 !important;
	transition: width 0.3s ease !important;
	border-radius: 2px !important;
	display: block !important;
	min-width: 0 !important;
}

.yokaba-gifts-section-with-items {
	display: flex;
	flex-direction: column;
	gap: 21px;
}

.yokaba-gifts-title-with-items {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.yokaba-gifts-list-with-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.yokaba-gift-card-with-items {
	padding: 16px;
	background: white;
	border: 1px solid var(--brand-gray-200);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.yokaba-gift-card-with-items.yokaba-gift-selected {
	border-color: var(--brand-brown);
	box-shadow: 0px 0px 0px 4px rgba(238, 227, 217, 1);
}

.yokaba-gift-header-with-items {
	display: flex;
	align-items: center;
	gap: 12px;
}

.yokaba-gift-header-with-items img {
	width: 64px;
	height: 64px;
	object-fit: cover;
}

.yokaba-gift-info-with-items {
	flex: 1;
}

.yokaba-gift-name-with-items {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin: 0 0 4px 0;
}

.yokaba-gift-description-with-items {
	font-size: 12px;
	color: var(--brand-gray-300);
	margin: 0 0 4px 0;
}

.yokaba-gift-threshold-with-items {
	font-size: 12px;
	color: var(--brand-gray-400);
	margin: 0;
}

.yokaba-gift-divider-with-items {
	border-top: 1px solid var(--brand-gray-200);
	margin: 0;
}

.yokaba-gift-progress-with-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.yokaba-gift-progress-header-with-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-gift-progress-text-with-items {
	font-size: 12px;
}

.yokaba-gift-action-with-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.yokaba-gift-remove-link,
.yokaba-gift-add-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--brand-brown);
	text-decoration: underline;
}

.gift-radio {
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: var(--brand-brown);
	margin: 0;
	flex-shrink: 0;
}

.gift-radio:checked {
	accent-color: var(--brand-brown);
}

/* Styl dla radio buttona - okrągły, pusty */
.gift-radio[type='radio'] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--brand-gray-400);
	border-radius: 50%;
	background-color: transparent;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gift-radio[type='radio']:checked {
	border-color: var(--brand-brown);
	background-color: transparent;
}

.gift-radio[type='radio']:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--brand-brown);
}

.gift-radio[type='radio']:hover {
	border-color: var(--brand-brown);
}

.yokaba-gift-action-link-with-items {
	font-size: 12px;
	font-weight: 600;
	color: var(--brand-brown);
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 1023px) {
	.yokaba-empty-cart-section {
		flex-direction: column;
		gap: 40px;
		padding: 32px 24px;
	}

	.yokaba-payment-methods {
		width: 100%;
		max-width: 346px;
	}

	.yokaba-cart-with-items-container {
		padding: 40px 16px;
	}

	.yokaba-cart-item {
		flex-direction: column;
		gap: 16px;
		padding: 24px;
	}

	.yokaba-cart-item img {
		width: 100%;
		max-width: 160px;
	}

	.yokaba-cart-item-remove {
		position: static;
		align-self: flex-end;
	}

	.yokaba-payment-methods-simple {
		width: 100%;
		max-width: 346px;
	}
}

/* Sidebar kuponu - wysuwa się z boku */
.yokaba-coupon-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yokaba-coupon-modal-overlay.yokaba-coupon-modal-active {
	opacity: 1;
	visibility: visible;
}

.yokaba-coupon-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 500px;
	background-color: white;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	z-index: 10000;
}

.yokaba-coupon-modal-overlay.yokaba-coupon-modal-active .yokaba-coupon-modal {
	transform: translateX(0);
}

.yokaba-coupon-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-coupon-modal-title {
	font-size: 18px !important;
	font-weight: 600;
	line-height: 28px !important;
	color: #000 !important;
	margin: 0;
}

.yokaba-coupon-modal-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-black);
	transition: color 0.2s ease;
}

.yokaba-coupon-modal-close:hover {
	color: var(--brand-brown);
}

.yokaba-coupon-modal-content {
	padding: 24px;
}

.yokaba-coupon-modal-instruction {
	font-size: 16px;
	color: var(--brand-black);
	margin-bottom: 16px;
}

.yokaba-coupon-form-group {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.yokaba-coupon-input-wrapper {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
}

.yokaba-coupon-input {
	height: 44px;
	width: 100%;
	padding: 0 40px 0 16px;
	border: 1px solid var(--brand-gray-200);
	border-radius: 0px !important;
	font-size: 16px;
	color: var(--brand-black);
	outline: none;
	transition: border-color 0.2s ease;
}

.yokaba-coupon-input:focus {
	border-color: var(--brand-brown);
}

.yokaba-coupon-input-error {
	border-color: #dc2626 !important;
}

.yokaba-coupon-input-wrapper-error .yokaba-coupon-input {
	border-color: #dc2626 !important;
}

.yokaba-coupon-input-icon {
	position: absolute;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.yokaba-coupon-input-error-icon {
	display: none;
}

.yokaba-coupon-clear-btn {
	position: absolute;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--brand-gray-400);
	transition: color 0.2s ease;
}

.yokaba-coupon-clear-btn:hover {
	color: var(--brand-gray-600);
}

.yokaba-coupon-remove-btn {
	background-color: var(--brand-gray-200) !important;
	color: var(--brand-gray-600) !important;
	border-color: var(--brand-gray-200) !important;
}

.yokaba-coupon-remove-btn:hover {
	background-color: var(--brand-gray-300) !important;
}

.yokaba-coupon-message {
	margin-top: 8px;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 0;
	width: 100%;
	flex-basis: 100%;
}

.yokaba-coupon-message-error {
	color: #dc2626;
}

.yokaba-coupon-message-success {
	color: #16a34a;
}

.yokaba-coupon-input::placeholder {
	color: var(--brand-gray-400);
}

.yokaba-coupon-form-group .yokaba-coupon-submit-btn {
	padding: 9px 30px !important;
	background-color: var(--brand-brown);
	color: white;
	border: 1px solid var(--brand-brown) !important;
	font-size: 16px !important;
	line-height: 24px !important;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.yokaba-coupon-submit-btn:hover {
	background-color: rgba(168, 132, 102, 0.9);
}

.yokaba-coupon-link {
	background: none;
	border: none !important;
	cursor: pointer;
	font-size: 14px !important;
	text-decoration: underline;
	color: #000 !important;
	padding: 0 !important;
}

.yokaba-coupon-link:hover {
	color: rgba(168, 132, 102, 0.9);
}

#yokaba-close-coupon-modal,
.yokaba-mobile-menu__back {
	background-color: transparent !important;
	border: none !important;
}

@media (max-width: 768px) {
	.yokaba-coupon-modal {
		max-width: 95%;
		width: 100%;
	}

	.gratisy {
		order: 1;
	}

	.yokaba-order-summary-box {
		order: 2;
	}

	.yokaba-coupon-box {
		order: 3;
	}

	.yokaba-checkout-section-with-items {
		order: 4;
	}

	.yokaba-free-shipping-box {
		order: 1;
	}

	.woocommerce-checkout #shipping_address_1_field,
	.woocommerce-checkout #shipping_address_2_field,
	.woocommerce-checkout #shipping_postcode_field,
	.woocommerce-checkout #shipping_city_field,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-house-number-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-apartment-number-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-postcode-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-city-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-company-house-number-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-company-apartment-number-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-company-postcode-wrapper,
	.woocommerce-checkout .yokaba-checkout-fields-wrapper .yokaba-vat-company-city-wrapper {
		width: 100% !important;
	}

	.yokaba-coupon-input {
		width: 100% !important;
	}

	.yokaba-coupon-form-group {
		flex-direction: column;
	}

	.yokaba-coupon-submit-btn {
		width: 100%;
	}
}

/* Modal logowania - podobny do modala kuponu */
.yokaba-login-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yokaba-login-modal-overlay.yokaba-login-modal-active {
	opacity: 1;
	visibility: visible;
}

.yokaba-login-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	background-color: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.yokaba-login-modal-overlay.yokaba-login-modal-active .yokaba-login-modal {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.yokaba-login-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-login-modal-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: var(--brand-black);
	margin: 0;
}

.yokaba-login-modal-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-black);
	transition: color 0.2s ease;
}

.yokaba-login-modal-close:hover {
	color: var(--brand-brown);
}

.yokaba-login-modal-content {
	padding: 24px;
}

.yokaba-login-modal-description {
	font-size: 14px;
	color: var(--brand-gray-400);
	margin-bottom: 24px;
	line-height: 1.5;
}

/* Style dla formularza WooCommerce login */
.yokaba-login-modal-content .woocommerce-form-login {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.yokaba-login-modal-content .woocommerce-form-login p {
	margin: 0;
}

.yokaba-login-modal-content .woocommerce-form-login label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--brand-black);
	margin-bottom: 8px;
}

.yokaba-login-modal-content .woocommerce-form-login input[type='text'],
.yokaba-login-modal-content .woocommerce-form-login input[type='email'],
.yokaba-login-modal-content .woocommerce-form-login input[type='password'] {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--brand-gray-200);
	border-radius: 4px;
	font-size: 16px;
	color: var(--brand-black);
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.yokaba-login-modal-content .woocommerce-form-login input[type='text']:focus,
.yokaba-login-modal-content .woocommerce-form-login input[type='email']:focus,
.yokaba-login-modal-content .woocommerce-form-login input[type='password']:focus {
	border-color: var(--brand-brown);
}

.yokaba-login-modal-content .woocommerce-form-login .form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.yokaba-login-modal-content .woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}

.yokaba-login-modal-content .woocommerce-form-login .lost_password {
	font-size: 14px;
	color: var(--brand-brown);
	text-decoration: underline;
}

.yokaba-login-modal-content .woocommerce-form-login .woocommerce-button {
	width: 100%;
	padding: 12px 24px;
	background-color: var(--brand-brown);
	color: white;
	border: 1px solid var(--brand-brown);
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.yokaba-login-modal-content .woocommerce-form-login .woocommerce-button:hover {
	background-color: rgba(168, 132, 102, 0.9);
}

.yokaba-login-modal-actions {
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
	margin-top: 16px !important;
}

.yokaba-login-modal-actions .yokaba-login-register-btn,
.yokaba-login-modal-actions .yokaba-login-guest-btn {
	display: block !important;
	padding: 16px 24px !important;
	margin: 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	border-radius: 0 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	transition: all 0.3s ease !important;
	outline: none !important;
	box-shadow: none !important;
	line-height: 1.5 !important;
	cursor: pointer !important;
}

.yokaba-login-modal-actions .yokaba-login-register-btn {
	background-color: #fff !important;
	border: 1px solid #e0e0e0 !important;
	color: #1d1c1a !important;
	transition: all 0.4s ease !important;
}

.yokaba-login-modal-actions .yokaba-login-register-btn:hover,
.yokaba-login-modal-actions .yokaba-login-register-btn:focus,
.yokaba-login-modal-actions .yokaba-login-register-btn:active {
	background-color: rgba(168, 132, 102, 0.9) !important;
	background: rgba(168, 132, 102, 0.9) !important;
	border: 1px solid #e0e0e0 !important;
	outline: none !important;
	box-shadow: none !important;
	color: #fff !important;
}

.yokaba-login-guest-btn {
	background-color: transparent !important;
	color: var(--brand-black);
	border: none !important;
	text-decoration: underline;
}

.yokaba-login-guest-btn:hover {
	color: var(--brand-brown);
}

@media (max-width: 768px) {
	.yokaba-login-modal {
		width: 100%;
		max-width: 100%;
		max-height: 100vh;
		border-radius: 0;
	}

	.yokaba-cart-item-name {
		font-size: 16px !important;
		line-height: 24px !important;
	}

	.yokaba-cart-item-details {
		flex-direction: column;
	}

	.yokaba-cart-item img {
		object-fit: cover !important;
		width: 89px !important;
		height: 89px !important;
	}

	.yokaba-cart-items-list {
		padding: 0 !important;
	}

	.yokaba-cart-item {
		padding: 16px !important;
	}
	
	.yokaba-cart-item-details {
		margin-left: 16px;
	}
	
	.yokaba-cart-item-controls {
		flex-direction: row;
	}
	
	.yokaba-cart-item-divider:last-child,.yokaba-cart-sidebar-with-items .yokaba-sidebar-divider {
		display: none;
	}
	
	.yokaba-cart-sidebar-with-items {
		margin-top: 0;
	}

	.yokaba-cart-item-price span {
		font-size: 1rem !important;
		line-height: 1.5 !important;
	}

	.yokaba-cart-item-controls {
		align-items: center;
	}

	.yokaba-cart-item-description {
		font-size: 12px !important;
	}

	.yokaba-cart-item-unit-price {
		font-size: 12px;
		color: #413f3d !important;
	}

	.yokaba-cart-items-title {
		font-size: 20px !important;
		line-height: 30px !important;
	}

	.yokaba-cart-item-size {
		font-size: 12px !important;
	}

	.yokaba-checkout-section-with-items {
		flex-direction: column-reverse;
	}
}

/* Ukryj domyślny komunikat WooCommerce "Dodano do koszyka" */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-message[role='alert'],
.woocommerce-info[role='alert'],
body .woocommerce-message,
body .woocommerce-info,
.woocommerce-store-notice,
.woocommerce-store-notice-dismiss {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
}

/* Ukryj notice z komunikatem o dodaniu do koszyka */
.woocommerce-message:has-text('został dodany'),
.woocommerce-message:has-text('has been added'),
.woocommerce-message a[href*='cart'] {
	display: none !important;
}

/* Ukryj wszystkie success messages */
.woocommerce-message.woocommerce-message--success {
	display: none !important;
}

/* ============================================
   MODAL "DODANO DO KOSZYKA"
   ============================================ */

.yokaba-added-to-cart-modal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	z-index: 999998 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.yokaba-added-to-cart-modal.yokaba-added-to-cart-modal-active {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Ukryj przyciski "Zobacz koszyk" gdy modal jest otwarty - JavaScript będzie dodawał klasę */
body.yokaba-modal-open .added_to_cart,
body.yokaba-modal-open .wc-forward,
body.yokaba-modal-open a.added_to_cart {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
}

.yokaba-added-to-cart-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.yokaba-added-to-cart-modal-content {
	position: fixed !important;
	top: 0 !important;
	right: -500px !important;
	width: 500px !important;
	max-width: 90vw !important;
	height: 100vh !important;
	background-color: white !important;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;
	overflow-y: auto !important;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	z-index: 999999 !important;
	display: flex !important;
	flex-direction: column !important;
}

.yokaba-added-to-cart-modal.yokaba-added-to-cart-modal-active .yokaba-added-to-cart-modal-content {
	right: 0 !important;
}

.yokaba-added-to-cart-modal-close {
	position: absolute;
	top: 30px;
	right: 24px;
	width: 32px;
	height: 32px;
	border: none !important;
	padding: 0 !important;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	color: var(--brand-gray-600);
	transition: color 0.2s ease;
}

.yokaba-added-to-cart-modal-close:hover {
	color: var(--brand-brown);
}

.yokaba-added-to-cart-header {
	padding: 24px;
}

.yokaba-added-to-cart-title {
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 28px !important;
	color: #000000 !important;
	margin: 0;
}

.yokaba-added-to-cart-product {
	padding: 16px;
	display: flex;
	gap: 16px;
	background-color: rgba(250, 250, 250, 1);
	margin-inline: 24px;
}

.yokaba-added-to-cart-product-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
}

.yokaba-added-to-cart-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}

.yokaba-added-to-cart-product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: flex-start;
}

.yokaba-added-to-cart-product-name {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--brand-gray-600);
	margin: 0;
}

.yokaba-added-to-cart-product-description {
	font-size: 12px;
	line-height: 18px;
	color: var(--brand-gray-400);
	margin: 0;
}

.yokaba-added-to-cart-product-volume {
	font-size: 12px;
	line-height: 18px;
	color: var(--brand-gray-400);
	margin: 0;
}

.yokaba-added-to-cart-product-price {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--e-global-color-accent);
	margin-top: 4px;
	margin-bottom: 0;
}

.yokaba-added-to-cart-product-omnibus {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 12px;
	line-height: 18px;
	display: block;
	order: 10;
}

.yokaba-added-to-cart-product-omnibus p {
	margin-top: 0;
}

.yokaba-added-to-cart-product-omnibus * {
	font-size: 12px !important;
	line-height: 18px !important;
}

.yokaba-added-to-cart-actions {
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-added-to-cart-btn {
	width: 100%;
	padding: 14px 24px;
	border-radius: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid;
}

.yokaba-added-to-cart-btn-primary {
	background-color: var(--brand-brown);
	color: white;
	border-color: var(--brand-brown);
}

.yokaba-added-to-cart-btn-primary:hover {
	background-color: #926f50;
	color: white !important;
	border-color: #926f50;
}

.yokaba-added-to-cart-btn-secondary {
	background-color: transparent;
	color: var(--brand-brown);
	border-color: var(--brand-brown);
}

.yokaba-added-to-cart-btn-secondary:hover {
	background-color: var(--brand-gray-100);
}

.yokaba-added-to-cart-recommended {
	padding: 24px 32px;
}

.yokaba-added-to-cart-actions .yokaba-added-to-cart-btn {
	border: 1px solid #e0e0e0;
	color: #fff !important;

	font-weight: 700;
	transition: all 0.3s ease !important;
}

.yokaba-added-to-cart-btn.yokaba-added-to-cart-btn-secondary {
	color: #000 !important;
	background: none !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 2px !important;
}

.yokaba-added-to-cart-btn.yokaba-added-to-cart-btn-secondary:hover {
	background: var(--e-global-color-de6d297) !important;
}

.yokaba-added-to-cart-actions .yokaba-added-to-cart-btn:hover {
	color: #fff;
	background: #8d6d54;
	border-color: #8d6d54;
}

.yokaba-added-to-cart-recommended-title {
	font-size: 14px !important;
	font-weight: 600;
	line-height: 20px !important;
	color: #000000 !important;
	margin: 0 0 4px;
}

.yokaba-added-to-cart-recommended-subtitle {
	font-size: 12px !important;
	line-height: 18px;
	color: #999897 !important;
	margin: 0 0 16px !important;
}

.yokaba-added-to-cart-recommended-slider {
	position: relative;
}

.yokaba-added-to-cart-swiper {
	overflow: hidden;
	padding-bottom: 8px;
}

.yokaba-added-to-cart-swiper .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.yokaba-added-to-cart-swiper .swiper-slide {
	height: auto;
	display: flex;
	align-items: stretch;
	max-width: 230px !important;
	width: 100% !important;
}

.yokaba-added-to-cart-recommended .yokaba-product-card {
	width: 100% !important;
	max-height: max-content;
}

.yokaba-added-to-cart-swiper .swiper-slide .yokaba-product-card-content {
	display: flex;
	flex-direction: column;
	width: 100% !important;
}

/* Style dla obrazków produktów w modalu "Dodano do koszyka" */
.yokaba-added-to-cart-recommended .yokaba-product-card img {
	max-width: 150px;
	width: 100%;
	height: auto;
	display: block;
}

.yokaba-added-to-cart-nav {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 16px;
}

.yokaba-added-to-cart-nav-btn {
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	border-radius: 6px;
	border: 1px solid var(--brand-gray-200) !important;
	background-color: #ffffff;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.yokaba-added-to-cart-nav-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--brand-gray-500);
	border-right: 2px solid var(--brand-gray-500);
	transform: translate(-50%, -50%) rotate(45deg);
}

.yokaba-added-to-cart-nav-btn--prev::after {
	transform: translate(-50%, -50%) rotate(-135deg);
}

.yokaba-added-to-cart-nav-btn--next::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.yokaba-added-to-cart-nav-btn:hover {
	background-color: var(--e-global-color-de6d297) !important;
}

.yokaba-added-to-cart-nav-btn:disabled,
.yokaba-added-to-cart-nav-btn.swiper-button-disabled {
	opacity: 0.4;
}

/* ============================================
   MODAL PUSTEGO KOSZYKA (POPUP)
   ============================================ */

/* Wrapper dla ikony koszyka */
.yokaba-cart-icon-wrapper {
	position: relative;
	display: inline-block;
}

/* CSS Hover - pokaż popup gdy mysz jest nad wrapperem (tylko desktop) */
@media (min-width: 769px) {
	.yokaba-cart-icon-wrapper:hover .yokaba-cart-popup {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

.yokaba-empty-cart-popup {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 10px;
	z-index: 999997;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.yokaba-empty-cart-popup.yokaba-empty-cart-popup-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.yokaba-empty-cart-popup-content {
	background-color: white;
	border: 1px solid var(--brand-gray-200);
	border-radius: 8px;
	padding: 32px;
	width: 320px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}

.yokaba-empty-cart-popup-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: var(--brand-gray-600);
	margin: 0;
}

.yokaba-empty-cart-popup-illustration {
	width: 120px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8px auto;
}

.yokaba-empty-cart-popup-illustration svg {
	width: 100%;
	height: 100%;
}

.yokaba-empty-cart-popup-message {
	font-size: 14px;
	line-height: 20px;
	color: var(--brand-gray-600);
	margin: 0;
}

.yokaba-empty-cart-popup-button {
	width: 100%;
	padding: 14px 24px;
	background-color: var(--brand-brown);
	color: white;
	border-radius: 0;
	font-size: 16px !important;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.yokaba-empty-cart-popup-button:hover {
	background-color: #926f50;
	color: #fff !important;
}

/* ============================================
   POPUP KOSZYKA Z PRODUKTAMI
   ============================================ */

.yokaba-cart-popup {
	/* Dodaj padding-top aby stworzyć niewidoczny obszar łączący z ikoną */
	padding-top: 10px;
	margin-top: -10px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-90%);
	z-index: 999997;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	display: none;
}

.yokaba-cart-popup.yokaba-cart-popup-active {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Na urządzeniach mobilnych ukryj popup i użyj sidebar */
@media (max-width: 768px) {
	.yokaba-cart-popup {
		left: 0;
		position: fixed;
		top: 89px;
		bottom: 0;
		right: 0;
		transform: unset;
		height: 100dvh;
		background: white;
		display: none;
		padding: 0;
		width: 100dvw;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.yokaba-cart-popup.yokaba-cart-popup-active {
		display: flex;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}


.yokaba-cart-popup-content {
	background-color: white;
	border: 1px solid var(--brand-gray-200);
	border-radius: 0 !important;
	width: 426px;
}

.yokaba-cart-popup-content .yokaba-price-main {
	font-size: 16px !important;
}

.yokaba-cart-popup-content .yokaba-price-cents {
	font-size: 12px !important;
}

/* Gdy popup pokazuje pusty koszyk, zmień szerokość i wyśrodkuj zawartość */
.yokaba-cart-popup-content:has(.yokaba-empty-cart-popup-illustration) {
	max-width: 426px !important;
	width:max-content !important;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 16px;
	padding: 16px;
}

.yokaba-cart-popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-cart-popup-title {
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 20px !important;
	text-align: left !important;
	letter-spacing: -0.3px;
	color: var(--brand-gray-600);
	margin: 0;
}

.yokaba-cart-popup-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--brand-brown);
	color: white;
	border-radius: 50%;
	font-size: 10px;
	line-height: 100%;
	width: 21px;
	height: 21px;
	font-weight: 600;
}

.yokaba-cart-popup-products {
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 20px;
}

.yokaba-cart-popup-item {
	display: flex;
	gap: 12px;
	padding: 12px 15px;
	border-bottom: 1px solid var(--brand-gray-100);
}

.yokaba-cart-popup-item:last-child {
	border-bottom: none;
}

.yokaba-cart-popup-item-image {
	flex-shrink: 0;
	width: 92px;
	height: 92px;
	overflow: hidden;
	border-radius: 4px;
}

.yokaba-cart-popup-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yokaba-cart-popup-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.yokaba-cart-popup-item-name {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.3px;
	color: var(--brand-gray-600);
	margin: 0;
}

.yokaba-cart-popup-item-name a {
	color: inherit;
	text-decoration: none;
}

.yokaba-cart-popup-item-name a:hover {
	color: var(--brand-brown);
}

.yokaba-cart-popup-item-meta {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.yokaba-cart-popup-item-price {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: var(--e-global-color-accent);
}

.yokaba-cart-popup-summary {
	margin-top: 20px;
	border-top: 1px solid var(--brand-gray-200);
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-cart-popup-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: -0.3px;
	padding: 12px 16px;
	color: var(--brand-gray-600);
}

.yokaba-cart-popup-summary-row:not(:last-child) {
	padding-bottom: 0;
}

.yokaba-cart-popup-summary-row:not(:first-child) {
	padding-top: 6px;
}

/* Użyj tych samych klas co w normalnym koszyku */
.yokaba-cart-popup-summary .yokaba-order-summary-total-box {
	background: transparent;
	padding: 10px 16px;
	margin-top: 12px;
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
}

.yokaba-cart-popup-action {
	padding: 16px;
	background: #fafafa;
}

.yokaba-cart-popup-summary .yokaba-order-summary-total-label {
	font-size: 14px;
	font-weight: 600;
}

.yokaba-cart-popup-summary .yokaba-order-summary-total-price {
	font-weight: 600;
	text-align: right;
}

.yokaba-cart-popup-summary .yokaba-order-summary-total-price .price-xl {
	font-size: 20px;
}

.yokaba-cart-popup-summary .yokaba-order-summary-total-price .price-sm {
	font-size: 14px;
}

.yokaba-cart-popup-gift-progress {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--brand-gray-200);
}

.yokaba-cart-popup-gift-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: var(--brand-gray-600);
}

.yokaba-cart-popup-gift-icon {
	font-size: 18px;
	margin-left: 8px;
}

.yokaba-cart-popup-progress-bar {
	width: 100%;
	height: 4px;
	background-color: #f0f0f0;
	overflow: hidden;
}

.yokaba-cart-popup-progress-fill {
	height: 100%;
	background-color: #ff2d57;
	transition: width 0.3s ease;
}

.yokaba-cart-popup-button {
	width: 100%;
	padding: 14px 24px;
	background-color: var(--brand-brown);
	color: white;
	border-radius: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease;
	margin-top: 20px;
	display: block;
}

.yokaba-cart-popup-button:hover {
	background-color: var(--e-global-color-907d747);
	color: white !important;
}

.yokaba-cart-popup-empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--brand-gray-600);
	font-size: 14px;
}

/* ============================================
   BADGE Z LICZBĄ PRODUKTÓW W KOSZYKU
   ============================================ */

.yokaba-cart-count-badge {
	position: absolute !important;
	bottom: 2px !important;
	right: -5px !important;
	padding: 5px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background-color: #8b6f47 !important;
	background-color: var(--brand-brown, #8b6f47) !important;
	color: white !important;
	border-radius: 999px !important;
	font-size: 9px !important;
	font-weight: 600 !important;
	text-align: center !important;
	z-index: 10 !important;
	white-space: nowrap !important;
	min-width: 18px !important;
	height: 18px !important;
	line-height: 1 !important;
	box-sizing: border-box !important;
}

/* Badge automatycznie dostosowuje się do szerokości tekstu */
.yokaba-cart-count-badge[data-count] {
	min-width: auto !important;
	padding: 0 7px !important;
}

/* Cursor pointer dla ikony koszyka */
#menu-cart,
#menu-cart .elementor-icon-wrapper,
.elementor-widget-icon[data-id*='menu-cart'],
.elementor-widget-icon[data-id*='menu-cart'] .elementor-icon-wrapper,
.elementor-icon-wrapper[data-id*='menu-cart'] {
	cursor: pointer !important;
}

/* ============================================
   PASEK BOCZNY Z PRODUKTAMI Z KOSZYKA
   ============================================ */

.yokaba-cart-sidebar-modal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	z-index: 999998 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.yokaba-cart-sidebar-modal.yokaba-cart-sidebar-modal-active {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.yokaba-cart-sidebar-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.yokaba-cart-sidebar-modal-content {
	position: fixed !important;
	top: 0 !important;
	right: -500px !important;
	width: 500px !important;
	max-width: 90vw !important;
	height: 100vh !important;
	background-color: white !important;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;
	overflow-y: auto !important;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	z-index: 999999 !important;
	display: flex !important;
	flex-direction: column !important;
}

.yokaba-cart-sidebar-modal.yokaba-cart-sidebar-modal-active .yokaba-cart-sidebar-modal-content {
	right: 0 !important;
}

.yokaba-cart-sidebar-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	padding: 0 !important;
	border: none !important;
	background: transparent;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-gray-600);
	transition: color 0.2s ease;
}

.yokaba-cart-sidebar-modal-close:hover {
	color: var(--brand-gray-900);
}

.yokaba-cart-sidebar-header {
	padding: 24px 24px 16px;
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-cart-sidebar-title {
	font-size: 20px !important;
	font-weight: 600;
	line-height: 28px !important;
	color: var(--brand-gray-900);
	margin: 0 0 4px 0;
}

.yokaba-cart-sidebar-count {
	font-size: 14px;
	line-height: 20px;
	color: var(--brand-gray-500);
}

.yokaba-cart-sidebar-items {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}

.yokaba-cart-sidebar-item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--brand-gray-100);
}

.yokaba-cart-sidebar-item:last-child {
	border-bottom: none;
}

.yokaba-cart-sidebar-item-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 4px;
}

.yokaba-cart-sidebar-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yokaba-cart-sidebar-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.yokaba-cart-sidebar-item-name {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--brand-gray-900);
	margin: 0;
}

.yokaba-cart-sidebar-item-name a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.yokaba-cart-sidebar-item-name a:hover {
	color: var(--brand-brown);
}

.yokaba-cart-sidebar-item-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	color: var(--brand-gray-600);
}

.yokaba-cart-sidebar-item-price {
	font-weight: 600;
	color: var(--brand-gray-900);
}

.yokaba-cart-sidebar-empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--brand-gray-500);
	font-size: 16px;
}

.yokaba-cart-sidebar-footer {
	padding: 24px;
	border-top: 1px solid var(--brand-gray-200);
	background-color: white;
}

.yokaba-cart-sidebar-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--brand-gray-200);
}

.yokaba-cart-sidebar-total-label {
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: var(--brand-gray-900);
}

.yokaba-cart-sidebar-total-price {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: var(--brand-gray-900);
}

.yokaba-cart-sidebar-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.yokaba-cart-sidebar-button {
	width: 100%;
	padding: 14px 24px;
	background-color: var(--brand-brown);
	color: white;
	border-radius: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: background-color 0.2s ease;
	border: none;
	cursor: pointer;
}

.yokaba-cart-sidebar-button:hover {
	background-color: #926f50;
	color: white;
}

.yokaba-cart-sidebar-button-primary {
	background-color: var(--brand-brown);
	color: white;
}

.yokaba-cart-sidebar-button-primary:hover {
	background-color: #926f50;
	color: white;
}

.yokaba-cart-sidebar-button-secondary {
	background-color: transparent;
	color: var(--brand-brown);
	border: 1px solid var(--brand-brown);
}

.yokaba-cart-sidebar-button-secondary:hover {
	background-color: var(--brand-brown);
	color: white;
}

/* Podsumowanie zamówienia w modalu koszyka */
.yokaba-cart-sidebar-summary {
	margin-top: 20px !important;
	padding-top: 20px !important;
	border-top: 1px solid #e5e5e5 !important;
}

.yokaba-cart-sidebar-summary-row {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	margin-bottom: 12px !important;
	font-size: 14px !important;
	color: #333 !important;
}

.yokaba-cart-sidebar-summary-total {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	margin-top: 16px !important;
	padding-top: 16px !important;
	border-top: 1px solid #e5e5e5 !important;
	font-weight: 600 !important;
	font-size: 16px !important;
}

.yokaba-cart-sidebar-summary-total .yokaba-cart-sidebar-total-price {
	font-size: 18px !important;
	font-weight: 700 !important;
}

/* Kontrolki ilości produktów */
.yokaba-cart-sidebar-item-quantity-controls {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
}

/* Style dla przycisków ilości w popup - używają tych samych klas co na stronie koszyka */
.yokaba-cart-popup .yokaba-quantity-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.yokaba-cart-popup .yokaba-quantity-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 20px;
	height: 20px;
	color: var(--brand-brown);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto !important; /* Upewnij się, że przyciski są klikalne */
	position: relative;
}

.yokaba-cart-popup .yokaba-quantity-btn svg {
	width: 23px;
	height: 23px;
	pointer-events: none !important; /* SVG nie przechwytuje kliknięć */
}

/* Efekt hover w popup - pokaż ikonę kosza po najechaniu na minus, gdy ilość = 1 */
.yokaba-cart-popup .yokaba-quantity-minus.quantity-one:hover svg {
	opacity: 0;
}

.yokaba-cart-popup .yokaba-quantity-minus.quantity-one:hover::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg width='23' height='26' viewBox='0 0 23 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6H22M19 6V21C19 22.1046 18.1046 23 17 23H6C4.89543 23 4 22.1046 4 21V6M7 6V4C7 2.89543 7.89543 2 9 2H14C15.1046 2 16 2.89543 16 4V6M10 11V18M13 11V18' stroke='%23FF2D57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.yokaba-cart-popup .yokaba-quantity-input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px !important;
	padding: 0 !important;
	text-align: center;
	font-size: 12px !important;
	font-weight: 600;
	line-height: 18px !important;
	border: none !important;
	background: transparent;
	pointer-events: none;
}

/* Pasek postępu do upominku */
.yokaba-cart-sidebar-gift-progress {
	margin-top: 20px !important;
	padding-top: 20px !important;
	border-top: 1px solid #e5e5e5 !important;
}

.yokaba-cart-sidebar-gift-text {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 12px !important;
	font-size: 14px !important;
	color: #333 !important;
}

.yokaba-cart-sidebar-gift-icon {
	font-size: 18px !important;
	margin-left: 8px !important;
}

.yokaba-cart-sidebar-progress-bar {
	width: 100% !important;
	height: 8px !important;
	background-color: #f0f0f0 !important;
	border-radius: 4px !important;
	overflow: hidden !important;
}

.yokaba-cart-sidebar-progress-fill {
	height: 100% !important;
	background-color: #dc2626 !important;
	transition: width 0.3s ease !important;
}

/* Lista produktów w modalu */
.yokaba-cart-sidebar-products-list {
	max-height: 400px !important;
	overflow-y: auto !important;
	margin-bottom: 20px !important;
}

/* Responsive */
@media (max-width: 768px) {
	.yokaba-added-to-cart-modal-content {
		width: 100vw;
		right: -100vw;
	}

	.yokaba-empty-cart-popup-content {
		width: 280px;
		padding: 24px;
	}

	.yokaba-cart-sidebar-modal-content {
		width: 100vw;
		right: -100vw;
	}

	/* Upewnij się, że sidebar Elementor jest widoczny na mobile */
	.elementor-menu-cart__container.elementor-lightbox-active {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

/* ============================================
   STICKY ADD TO CART BUTTON NA MOBILE
   ============================================ */

/* Sticky przycisk "Dodaj do koszyka" na stronie produktu (mobile - poniżej 768px) */
@media (max-width: 768px) {
	body.single-product .yokaba-sticky-add-to-cart-desktop {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #ffffff;
		border-top: 1px solid var(--brand-gray-300, #e0e0e0);
		box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
		z-index: 999;
		padding: 16px 16px;
		box-sizing: border-box;
		transform: translateY(100%);
		transition: transform 0.3s ease;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	body.single-product .yokaba-sticky-add-to-cart-desktop.is-visible {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}



	.yokaba-sticky-add-to-cart-desktop-info {
		display: flex;
		align-items: center;
		gap: 16px;
		flex: 1;
		min-width: 0;
	}

	.yokaba-sticky-add-to-cart-desktop-image {
		flex-shrink: 0;
		width: 60px;
		height: 60px;
	}

	.yokaba-sticky-add-to-cart-desktop-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 4px;
	}

	.yokaba-sticky-add-to-cart-desktop-details {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.yokaba-sticky-add-to-cart-desktop-name {
		font-size: 16px;
		font-weight: 500;
		line-height: 20px;
		color: #1d1c1a;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		line-clamp: 1;
		-webkit-box-orient: vertical;
		margin: 0;
	}

	.yokaba-sticky-add-to-cart-desktop-price {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
		color: #1d1c1a;
		margin: 0;
	}

	.yokaba-sticky-add-to-cart-desktop-form {
		flex-shrink: 0;
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 12px;
	}

	.yokaba-sticky-add-to-cart-desktop-quantity {
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		gap:12px
	}

	.yokaba-sticky-add-to-cart-desktop-quantity-wrapper{
		display: flex;
	}

	.yokaba-sticky-add-to-cart-desktop-price .amount .yokaba-price-main,
	.yokaba-sticky-add-to-cart-desktop-price .amount .yokaba-price-cents{
		font-weight: 600;
		font-size: 18px !important;
		line-height: 28px;
		letter-spacing: -2%;
		text-align: center;
		color:rgba(168, 132, 102, 1) !important;
	}

	.yokaba-sticky-add-to-cart-desktop-price,
	.yokaba-sticky-add-to-cart-desktop-quantity-wrapper{
		background-color: rgba(250, 250, 250, 1) !important;
		padding: 8px 12px;
		height: 48px;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}


	.yokaba-sticky-add-to-cart-desktop-qty-btn {
		border: none !important;
		background-color: transparent;


		font-weight: 500;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 !important;
		margin: 0 !important;
	}

	.yokaba-sticky-add-to-cart-desktop-qty-btn:hover {
		background-color: #d4d4d4;
	}

	.yokaba-sticky-add-to-cart-desktop-qty-input {
		width: 50px;
		border: none !important;
		background-color: transparent;
		text-align: center;
		font-size: 14px;
		font-weight: 500;
		color: #1d1c1a;
		padding: 0;
		margin: 0;
	}

	.yokaba-sticky-add-to-cart-desktop-qty-input::-webkit-outer-spin-button,
	.yokaba-sticky-add-to-cart-desktop-qty-input::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	.yokaba-sticky-add-to-cart-desktop-button {

		padding: 12px 20px;
		background-color:  rgba(168, 132, 102, 1);
		color: #ffffff;
		border: none;
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
		cursor: pointer;
		white-space: nowrap;
		transition: background-color 0.2s ease, opacity 0.2s ease;
		width:100%;
	}

	.yokaba-sticky-add-to-cart-desktop-button:hover {
		background-color: rgba(168, 132, 102, 0.9);
		opacity: 0.9;
	}

	.yokaba-sticky-add-to-cart-desktop-button:disabled {
		opacity: 0.6;
		cursor: not-allowed;
	}

	/* Dodaj padding na dole body, aby zawartość nie była zasłonięta przez sticky bar */
	body.single-product.has-sticky-add-to-cart {
		padding-bottom: 80px;
	}
	.yokaba-empty-cart-popup-illustration {
		margin: 0 auto;
		flex: 1;
		align-items: start;
	}
	
	.yokaba-cart-popup-content:has(.yokaba-empty-cart-popup-illustration) {
		max-width: unset !important;
		width: 100% !important;
		height: calc(100dvh - 80px);
	}
	
	.yokaba-cart-popup-content {
		width: auto !important;
		height: calc(100dvh - 80px);
		display: flex;
		flex-direction: column;
	}
	.yokaba-cart-popup-products {
		max-height: unset;
		flex: 1;
	}
}
