/* MOBILE sticky add to cart bar */
@media (max-width: 768px) {
	.p-to-cart-block {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
		background: #ffffff;
		border-top: 1px solid #e5e5e5;
		box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
	}

	.p-to-cart-block .p-final-price-wrapper {
		display: flex;
		flex-direction: column;
		min-width: 0;
		flex: 1;
	}

	.p-to-cart-block .price-final {
		font-size: 20px;
		line-height: 1.1;
		font-weight: 700;
	}

	.p-to-cart-block .price-additional {
		font-size: 11px;
		line-height: 1.2;
		margin-top: 2px;
		color: #777;
	}

	/* text s vybranou velkostou */
	.mia-selected-size-mobile {
		display: block;
		font-size: 11px;
		line-height: 1.2;
		margin-top: 4px;
		color: #555;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.p-to-cart-block .p-add-to-cart-wrapper {
		flex-shrink: 0;
	}

	.p-to-cart-block .add-to-cart {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	/* skrytie poctu kusov na mobile */
	.p-to-cart-block .quantity {
		display: none !important;
	}

	.p-to-cart-block .add-to-cart-button {
		height: 46px;
		padding: 0 18px;
		border-radius: 12px;
		white-space: nowrap;
	}

	/* aby obsah stranky neskoncil pod fixnym panelom */
	body {
		padding-bottom: 95px;
	}
}
