/* fofrpneu.cz cart — Dominik Klapuch */

:root {
	--fp-blue: #2C6BFF;
	--fp-blue-hover: #1F58E0;
	--fp-blue-soft: #EEF3FF;
	--fp-blue-link: #1F75FF;
	--fp-green: #16A34A;
	--fp-text: #111317;
	--fp-text-soft: #1A1D24;
	--fp-muted: #949CA8;
	--fp-muted-2: #9CA3AF;
	--fp-border: #E5E7EB;
	--fp-border-2: #EEF0F3;
	--fp-bg: #F4F5F7;
	--fp-card: #FFFFFF;
	--fp-placeholder: #E9EBEF;
	--fp-placeholder-text: #9CA3AF;

	--fp-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--fp-font-display: 'Space Grotesk', system-ui, sans-serif;
}

body.fp-cart-body {
	background: var(--fp-bg) !important;
	color: var(--fp-text);
	font-family: var(--fp-font-body) !important;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "tnum" 1;
}

.fp-cart-wrapper,
.fp-cart-wrapper * {
	box-sizing: border-box;
	font-family: var(--fp-font-body);
}
.fp-cart-wrapper { color: var(--fp-text); }

.fp-cart-wrapper a { color: inherit; text-decoration: none; }
.fp-cart-wrapper button {
	font-family: inherit;
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 0;
	color: inherit;
}

.fp-cart-wrapper .fp-sr {
	position: absolute !important;
	width: 1px !important; height: 1px !important;
	padding: 0 !important; margin: -1px !important;
	overflow: hidden !important; clip: rect(0,0,0,0) !important;
	white-space: nowrap !important; border: 0 !important;
}

/* HEADER */
.fp-topbar {
	background: #fff;
	border-bottom: 1px solid var(--fp-border);
}
.fp-topbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 22px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fp-logo {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: var(--fp-text);
}
.fp-logo .fp-tld { color: var(--fp-blue); }
.fp-secure {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--fp-muted);
	font-size: 14px;
	font-weight: 400;
}
.fp-secure svg { color: var(--fp-green); }

/* PAGE */
.fp-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 32px 64px;
}

/* Nadpis "Košík" */
.fp-page-title {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	color: var(--fp-text);
	letter-spacing: -0.02em;
	margin: 0 0 6px;
}

/* Počet položek v košíku */
.fp-page-subtitle {
	font-family: var(--fp-font-body);
	font-weight: 400;
	color: var(--fp-muted);
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 28px;
}

/* GRID */
.fp-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 24px;
	align-items: start;
}

/* CART CARD */
.fp-cart-card {
	background: var(--fp-card);
	border-radius: 14px;
	border: 1px solid var(--fp-border);
	overflow: hidden;
}
.fp-cart-item {
	display: grid;
	grid-template-columns: 110px 1fr auto auto auto;
	align-items: center;
	gap: 24px;
	padding: 22px 28px;
	border-bottom: 1px solid var(--fp-border-2);
}
.fp-cart-item:last-child { border-bottom: 0; }

.fp-thumb {
	position: relative;
	width: 110px;
	height: 110px;
	border-radius: 10px;
	background: var(--fp-placeholder);
	overflow: hidden;
	user-select: none;
	flex-shrink: 0;
}
.fp-cart-wrapper .fp-thumb .fp-thumb-link,
.fp-cart-wrapper .fp-thumb > a {
	position: absolute;
	inset: 0;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	line-height: 0;
	padding: 0 !important;
	margin: 0 !important;
}
.fp-cart-wrapper .fp-thumb img,
.fp-cart-wrapper .fp-thumb .fp-thumb-img,
.fp-cart-wrapper .fp-thumb a img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	object-position: center !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.fp-thumb-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: var(--fp-placeholder-text);
}

.fp-item-info { min-width: 0; }
/* Název produktu v košíku */
.fp-item-title {
	font-family: var(--fp-font-display);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: var(--fp-text);
	margin: 0 0 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fp-item-title a { color: inherit; }
.fp-item-title a:hover { color: var(--fp-blue); }
.fp-item-spec {
	color: var(--fp-blue);
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 6px;
	letter-spacing: 0.01em;
}
.fp-item-spec .fp-sep { margin: 0 6px; opacity: 0.55; }

/* Jednotková cena pod názvem */
.fp-item-unit {
	font-family: var(--fp-font-body);
	font-weight: 400;
	color: var(--fp-muted);
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

/* QUANTITY STEPPER */
.fp-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--fp-border);
	border-radius: 10px;
	background: #fff;
	height: 44px;
	overflow: hidden;
}
.fp-qty button {
	border: 0;
	background: transparent;
	width: 42px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fp-text);
	cursor: pointer;
	transition: background .15s;
}
.fp-qty button:hover { background: #F3F4F6; }
.fp-qty button:disabled { color: #CBD0D8; cursor: not-allowed; background: transparent; }
.fp-qty .fp-val {
	width: 56px;
	text-align: center;
	font-weight: 600;
	font-size: 15px;
	user-select: none;
	color: var(--fp-text);
}

/* Cena položky (řádkový součet) */
.fp-item-total {
	font-family: var(--fp-font-body);
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: var(--fp-text);
	min-width: 100px;
	text-align: right;
	letter-spacing: -0.005em;
}
.fp-item-total .amount,
.fp-item-total .woocommerce-Price-amount { color: var(--fp-text); font-weight: 700; }

.fp-remove {
	border: 0;
	background: transparent;
	color: var(--fp-muted-2);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	transition: background .15s, color .15s;
}
.fp-remove:hover { background: #FEF2F2; color: #DC2626; }

/* CONTINUE LINK */
.fp-continue-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	color: var(--fp-text);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	padding: 8px 4px;
	border-radius: 6px;
}
.fp-continue-link:hover { color: var(--fp-blue); }

/* INFO BANNER */
.fp-info-banner {
	margin-top: 24px;
	background: var(--fp-blue-soft);
	border-radius: 12px;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.fp-info-banner .fp-icon {
	color: var(--fp-blue);
	flex-shrink: 0;
}
/* "Rychlé doručení do…" */
.fp-info-banner .fp-b-title {
	font-family: var(--fp-font-display);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--fp-text);
	margin: 0 0 2px;
}
/* placeholder pod doručením */
.fp-info-banner .fp-b-sub {
	font-family: var(--fp-font-body);
	font-weight: 400;
	color: var(--fp-muted);
	font-size: 12px;
	line-height: 16px;
	margin: 0;
}

/* CONTACT */
.fp-contact {
	margin-top: 16px;
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 12px;
	padding: 22px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
/* "Potřebujete poradit s objednávkou…" */
.fp-contact .fp-c-title {
	font-family: var(--fp-font-display);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--fp-text);
	margin: 0 0 4px;
}
.fp-contact .fp-c-sub {
	font-family: var(--fp-font-body);
	font-weight: 400;
	color: var(--fp-muted);
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}
.fp-contact-links {
	display: flex;
	align-items: center;
	gap: 28px;
}
/* Telefon + email odkazy */
.fp-contact-links a {
	font-family: var(--fp-font-body);
	font-weight: 400;
	color: var(--fp-blue-link);
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.fp-contact-links a:hover { text-decoration: underline; }

/* SUMMARY */
.fp-summary {
	background: var(--fp-card);
	border-radius: 14px;
	border: 1px solid var(--fp-border);
	padding: 26px 26px 24px;
	position: sticky;
	top: 24px;
}

/* "Souhrn objednávky" */
.fp-summary h2 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: var(--fp-text);
	letter-spacing: -0.005em;
	margin: 0 0 18px;
}

/* Mezisoučet — řádek */
.fp-sum-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 6px 0;
}
.fp-sum-row .fp-label,
.fp-sum-row .fp-value {
	font-family: var(--fp-font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: var(--fp-muted);
}

/* Doprava — menší řádek */
.fp-sum-row--shipping .fp-label,
.fp-sum-row--shipping .fp-calc {
	font-family: var(--fp-font-body);
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: var(--fp-muted);
}

/* Slevový kupón */
.fp-sum-row .fp-coupon { color: var(--fp-green); }

.fp-summary-divider {
	height: 1px;
	background: var(--fp-border-2);
	margin: 16px 0 4px;
}

/* Celkem řádek */
.fp-total-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 12px 0 18px;
}
.fp-total-row .fp-label,
.fp-total-row .fp-value,
.fp-total-row .fp-value .amount,
.fp-total-row .fp-value .woocommerce-Price-amount {
	font-family: var(--fp-font-body);
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: var(--fp-text);
	letter-spacing: -0.005em;
}

/* BUTTONS */
.fp-btn {
	width: 100%;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background .15s, transform .05s;
	font-family: var(--fp-font-body);
	text-decoration: none;
}
.fp-btn:active { transform: translateY(1px); }

/* "Pokračovat k pokladně" — primární CTA */
.fp-cart-wrapper a.fp-btn-primary,
.fp-cart-wrapper button.fp-btn-primary,
.fp-btn-primary {
	background: #1E75FF !important;
	color: #fff !important;
	height: 52px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.fp-cart-wrapper a.fp-btn-primary:link,
.fp-cart-wrapper a.fp-btn-primary:visited,
.fp-cart-wrapper a.fp-btn-primary:hover,
.fp-cart-wrapper a.fp-btn-primary:focus,
.fp-cart-wrapper a.fp-btn-primary:active {
	color: #fff !important;
	text-decoration: none !important;
}
.fp-cart-wrapper a.fp-btn-primary:hover,
.fp-cart-wrapper button.fp-btn-primary:hover {
	background: #1A66E6 !important;
}
.fp-btn-primary svg,
.fp-btn-primary svg * {
	color: #fff !important;
	stroke: #fff !important;
}

/* "Pokračovat v nákupu" — sekundární */
.fp-cart-wrapper a.fp-btn-ghost,
.fp-cart-wrapper button.fp-btn-ghost,
.fp-btn-ghost {
	background: #F4F4F6 !important;
	color: #111317 !important;
	height: 46px;
	margin-top: 10px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
}
.fp-cart-wrapper a.fp-btn-ghost:link,
.fp-cart-wrapper a.fp-btn-ghost:visited,
.fp-cart-wrapper a.fp-btn-ghost:hover,
.fp-cart-wrapper a.fp-btn-ghost:focus,
.fp-cart-wrapper a.fp-btn-ghost:active {
	color: #111317 !important;
	text-decoration: none !important;
}
.fp-cart-wrapper a.fp-btn-ghost:hover,
.fp-cart-wrapper button.fp-btn-ghost:hover {
	background: #E7E8EB !important;
}

/* TRUST */
.fp-trust {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fp-trust-row {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--fp-muted);
	font-size: 14px;
	line-height: 20px;
}
.fp-trust-row svg { color: var(--fp-green); flex-shrink: 0; }

/* EMPTY STATE */
.fp-empty {
	padding: 60px 28px;
	text-align: center;
	color: var(--fp-muted);
}
.fp-empty h3 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: var(--fp-text);
	margin: 0 0 6px;
}
.fp-empty p {
	font-family: var(--fp-font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: var(--fp-muted);
	margin: 0 0 20px;
}
.fp-empty .fp-btn { display: inline-flex; width: auto; padding: 0 28px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
	.fp-grid { grid-template-columns: 1fr; }
	.fp-summary { position: static; }
}
@media (max-width: 720px) {
	.fp-page { padding: 24px 16px 48px; }
	.fp-topbar-inner { padding: 18px 16px; }
	.fp-page-title { font-size: 30px; line-height: 36px; }
	.fp-cart-item {
		grid-template-columns: 80px 1fr auto;
		grid-template-areas:
			"thumb info remove"
			"thumb qty total";
		gap: 12px 16px;
		padding: 18px;
	}
	.fp-thumb { width: 80px; height: 80px; grid-area: thumb; }
	.fp-item-info { grid-area: info; }
	.fp-qty { grid-area: qty; }
	.fp-item-total { grid-area: total; min-width: auto; }
	.fp-remove { grid-area: remove; }
	.fp-contact { flex-direction: column; align-items: flex-start; }
}

.fp-cart-wrapper .cart-collaterals,
.fp-cart-wrapper .return-to-shop { display: none !important; }

/* ===================================================================
   CHECKOUT
   =================================================================== */

body.fp-checkout-body {
	background: var(--fp-bg) !important;
	color: var(--fp-text);
	font-family: var(--fp-font-body) !important;
	-webkit-font-smoothing: antialiased;
}

.fp-checkout-wrapper, .fp-checkout-wrapper * {
	box-sizing: border-box;
	font-family: var(--fp-font-body);
}
.fp-checkout-wrapper { color: var(--fp-text); }
.fp-checkout-wrapper a { color: inherit; text-decoration: none; }
.fp-checkout-wrapper button {
	font-family: inherit;
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 0;
	color: inherit;
}

/* STEPS */
.fp-steps-wrap {
	background: #fff;
	border-bottom: 1px solid var(--fp-border);
}
.fp-checkout-wrapper .fp-steps {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 14px !important;
	flex-wrap: nowrap !important;
	max-width: 1280px !important;
	margin: 0 auto !important;
	padding: 18px 24px 20px !important;
	list-style: none !important;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
.fp-checkout-wrapper .fp-steps > li {
	display: inline-flex !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	flex-shrink: 0 !important;
}
.fp-checkout-wrapper .fp-step {
	gap: 10px !important;
}
.fp-checkout-wrapper .fp-step-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--fp-font-body);
	font-size: 12px;
	font-weight: 700;
	background: #2C6BFF;
	color: #fff !important;
	transition: box-shadow .2s;
	flex-shrink: 0;
	line-height: 1;
}
.fp-checkout-wrapper .fp-step--current .fp-step-dot { box-shadow: 0 0 0 4px rgba(44, 107, 255, .18); }
.fp-checkout-wrapper .fp-step--upcoming .fp-step-dot {
	background: #E5E7EB;
	color: var(--fp-muted) !important;
}
.fp-checkout-wrapper .fp-step-label {
	font-family: var(--fp-font-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-text);
	line-height: 1;
	white-space: nowrap;
}
.fp-checkout-wrapper .fp-step--upcoming .fp-step-label { color: var(--fp-muted); }
.fp-checkout-wrapper .fp-step-sep {
	display: inline-block !important;
	width: 48px !important;
	height: 1px !important;
	background: var(--fp-border);
	flex-shrink: 0;
	padding: 0 !important;
	margin: 0 !important;
	border: 0;
	align-self: center;
}

@media (max-width: 640px) {
	.fp-checkout-wrapper .fp-steps {
		justify-content: flex-start !important;
		padding: 14px 16px 16px !important;
		gap: 10px !important;
	}
	.fp-checkout-wrapper .fp-step-sep { width: 24px !important; }
	.fp-checkout-wrapper .fp-step-label { font-size: 13px; }
}

/* PAGE */
.fp-checkout-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 32px 64px;
}
.fp-checkout-grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 32px;
	align-items: start;
}
.fp-checkout-col-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

/* CARDS */
.fp-checkout-card {
	background: var(--fp-card);
	border: 1px solid var(--fp-border);
	border-radius: 14px;
	padding: 24px 26px;
}
.fp-checkout-card h2 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 19px;
	line-height: 28px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
	margin: 0 0 20px;
}

/* FORM */
.fp-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.fp-form-grid .fp-field--col-2 { grid-column: span 2; }
.fp-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.fp-field label {
	font-family: var(--fp-font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--fp-text);
}
.fp-cart-wrapper .fp-field input,
.fp-checkout-wrapper .fp-field input {
	height: 42px;
	padding: 0 14px !important;
	border-radius: 8px;
	border: 1px solid var(--fp-border) !important;
	background: #fff !important;
	font-size: 14px;
	font-family: inherit;
	color: var(--fp-text) !important;
	transition: border-color .15s, box-shadow .15s;
	outline: none;
	width: 100%;
	line-height: 1.4;
	margin: 0 !important;
	box-shadow: none !important;
}
.fp-checkout-wrapper .fp-field input::placeholder { color: var(--fp-muted-2); opacity: 1; }
.fp-checkout-wrapper .fp-field input:focus {
	border-color: #2C6BFF !important;
	box-shadow: 0 0 0 3px rgba(44, 107, 255, .15) !important;
}

/* RADIO option (shipping) */
.fp-opt-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fp-opt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border: 1px solid var(--fp-border);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color .15s, background .15s;
	margin: 0;
}
.fp-opt:hover { border-color: rgba(44, 107, 255, .4); }
.fp-opt.fp-opt--selected {
	border-color: #2C6BFF;
	background: #F4F7FF;
}
.fp-opt-left {
	display: flex;
	align-items: center;
	gap: 14px;
}
.fp-radio-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1.5px solid #C8CCD3;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: border-color .15s;
	background: #fff;
	position: relative;
}
.fp-opt--selected .fp-radio-dot,
.fp-pay--selected .fp-radio-dot { border-color: #2C6BFF; }
.fp-radio-dot::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2C6BFF;
	transform: scale(0);
	transition: transform .15s;
}
.fp-opt--selected .fp-radio-dot::after,
.fp-pay--selected .fp-radio-dot::after { transform: scale(1); }

.fp-opt-icon {
	color: #2C6BFF;
	display: flex;
	align-items: center;
}
.fp-opt-name {
	font-family: var(--fp-font-body);
	font-weight: 600;
	font-size: 15px;
	color: var(--fp-text);
}
.fp-opt-sub {
	font-family: var(--fp-font-body);
	font-size: 12px;
	color: var(--fp-muted);
	margin-top: 2px;
}
.fp-opt-price {
	font-family: var(--fp-font-body);
	font-weight: 700;
	font-size: 15px;
	color: var(--fp-text);
}

/* PAYMENT GRID */
.fp-pay-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.fp-pay {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	border: 1px solid var(--fp-border);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color .15s, background .15s;
	margin: 0;
}
.fp-pay:hover { border-color: rgba(44, 107, 255, .4); }
.fp-pay.fp-pay--selected {
	border-color: #2C6BFF;
	background: #F4F7FF;
}
.fp-pay-name {
	font-family: var(--fp-font-body);
	font-weight: 600;
	font-size: 14px;
	color: var(--fp-text);
}

/* hide native radio (a11y available via label click) */
.fp-sr-radio {
	position: absolute !important;
	opacity: 0 !important;
	pointer-events: none !important;
	width: 1px !important;
	height: 1px !important;
}

/* Payment box (gateway fields under selection) */
.fp-payment-boxes { margin-top: 16px; }
.fp-payment-box:not([style*="display:none"]) {
	background: #F4F7FF;
	border: 1px solid #E5E7EB;
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 14px;
	color: var(--fp-text);
}
.fp-payment-box p { margin: 0; }

/* CHECKBOXES */
.fp-check-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fp-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	margin: 0;
}
.fp-check input {
	position: absolute !important;
	opacity: 0 !important;
	pointer-events: none !important;
	width: 1px !important;
	height: 1px !important;
}
.fp-check .fp-check-box {
	width: 18px;
	height: 18px;
	border: 1.5px solid #C8CCD3;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
	background: #fff;
	transition: background .15s, border-color .15s;
}
.fp-check input:checked + .fp-check-box {
	background: #2C6BFF;
	border-color: #2C6BFF;
}
.fp-check .fp-check-box svg { color: #fff; opacity: 0; transition: opacity .1s; }
.fp-check input:checked + .fp-check-box svg { opacity: 1; }
.fp-check-text {
	font-family: var(--fp-font-body);
	font-size: 14px;
	color: var(--fp-text);
	line-height: 1.5;
}
.fp-check-text a { color: #2C6BFF; text-decoration: none; }
.fp-check-text a:hover { text-decoration: underline; }

/* Contact card v checkoutu (světle šedý variant) */
.fp-checkout-contact {
	background: #FAFBFC;
	border: 1px solid var(--fp-border);
	border-radius: 12px;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 0;
}
.fp-checkout-contact h3 {
	font-family: var(--fp-font-display);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--fp-text);
	margin: 0 0 4px;
}
.fp-checkout-contact p {
	font-family: var(--fp-font-body);
	font-size: 12px;
	color: var(--fp-muted);
	margin: 0;
}
.fp-checkout-contact .fp-contact-links a {
	color: #1F75FF;
	font-weight: 500;
	font-size: 14px;
}

/* SUMMARY */
.fp-checkout-summary {
	background: var(--fp-card);
	border: 1px solid var(--fp-border);
	border-radius: 14px;
	padding: 24px 26px;
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.fp-checkout-summary h2 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
	margin: 0;
}
.fp-sum-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.fp-sum-item {
	display: flex;
	gap: 12px;
	align-items: center;
}
.fp-thumb-sm {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: var(--fp-placeholder);
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--fp-placeholder-text);
}
.fp-checkout-wrapper .fp-thumb-sm img,
.fp-checkout-wrapper .fp-thumb-sm .fp-thumb-sm-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.fp-sum-info {
	flex: 1;
	min-width: 0;
}
.fp-sum-name {
	font-family: var(--fp-font-display);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--fp-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fp-sum-meta {
	font-family: var(--fp-font-body);
	font-size: 12px;
	line-height: 16px;
	color: var(--fp-muted);
	margin-top: 2px;
}
.fp-sum-price {
	font-family: var(--fp-font-body);
	font-weight: 700;
	font-size: 14px;
	color: var(--fp-text);
	white-space: nowrap;
}
.fp-checkout-summary .fp-sum-rows {
	border-top: 1px solid var(--fp-border-2);
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}
.fp-checkout-summary .fp-sum-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0;
	font-family: var(--fp-font-body);
	font-size: 14px;
	color: var(--fp-muted);
}
.fp-checkout-summary .fp-sum-row .fp-coupon { color: var(--fp-green); }
.fp-checkout-summary .fp-sum-row--total {
	border-top: 1px solid var(--fp-border-2);
	padding-top: 14px;
	margin-top: 6px;
	color: var(--fp-text);
	font-weight: 700;
	font-size: 17px;
}
.fp-checkout-summary .fp-sum-row--total .fp-v,
.fp-checkout-summary .fp-sum-row--total .fp-v .amount,
.fp-checkout-summary .fp-sum-row--total .fp-v .woocommerce-Price-amount {
	font-size: 19px;
	font-weight: 800;
	color: var(--fp-text);
	letter-spacing: -0.005em;
}

/* CHECKOUT PRIMARY BUTTON */
.fp-cart-wrapper .fp-btn-checkout,
.fp-checkout-wrapper .fp-btn-checkout,
.fp-btn-checkout {
	height: 54px !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 24px !important;
	background: #1E75FF !important;
	color: #fff !important;
	border-radius: 10px !important;
	width: 100% !important;
}
.fp-btn-checkout:hover { background: #1A66E6 !important; color: #fff !important; }

@media (max-width: 1024px) {
	.fp-checkout-grid { grid-template-columns: 1fr; }
	.fp-checkout-summary { position: static; }
}
@media (max-width: 640px) {
	.fp-checkout-page { padding: 20px 16px 48px; }
	.fp-steps { padding: 0 16px 16px; }
	.fp-form-grid { grid-template-columns: 1fr; }
	.fp-form-grid .fp-field--col-2 { grid-column: auto; }
	.fp-pay-grid { grid-template-columns: 1fr; }
	.fp-checkout-contact { flex-direction: column; align-items: flex-start; }
	.fp-checkout-card { padding: 20px 18px; }
}

/* Hide WC default notices wrapper on checkout (use our own logic if needed) */
body.fp-checkout-body .woocommerce-error,
body.fp-checkout-body .woocommerce-message,
body.fp-checkout-body .woocommerce-info {
	max-width: 1280px;
	margin: 16px auto;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 14px;
	border: 1px solid var(--fp-border);
}
body.fp-checkout-body .woocommerce-error { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
body.fp-checkout-body .woocommerce-message { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
body.fp-checkout-body .woocommerce-info { background: #EFF6FF; border-color: #BFDBFE; color: #1E40AF; }

/* ===================================================================
   SINGLE PRODUCT (PDP)
   =================================================================== */

/* Jen pozadí + pojistka proti horizontálnímu přetečení (světlé pruhy vedle
   tmavého headeru/footeru). Barvu/font NEnastavovat na body — dědilo by se
   do Elementor headeru/footeru. */
body.fp-product-body {
	background: var(--fp-bg) !important;
	margin: 0;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

/* Obsah jede v theme obalu <main id="content" class="site-main"> jako každá
   jiná stránka — jen ho roztáhneme na full width (Hello Elementor mu jinak
   dává max-width 1140 px). Header/footer jsou MIMO .site-main, nic jiného
   se nestyluje. */
body.fp-product-body main.site-main {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	display: block;
}
body.fp-product-body .fp-product-fullwidth {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
body.fp-product-body .fp-product-fullwidth .fp-product-wrapper { width: 100%; max-width: 100%; }
.fp-product-wrapper,
.fp-product-wrapper * {
	box-sizing: border-box;
	font-family: var(--fp-font-body);
}
.fp-product-wrapper {
	color: var(--fp-text);
	background: var(--fp-bg);
}
.fp-product-wrapper .fp-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}
.fp-product-wrapper a { color: inherit; text-decoration: none; }
.fp-product-wrapper button {
	font-family: inherit;
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 0;
	color: inherit;
}

/* BREADCRUMBS */
.fp-crumbs {
	padding: 18px 0;
	font-family: var(--fp-font-body);
	font-size: 13px;
	color: var(--fp-muted);
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}
.fp-crumbs a { color: var(--fp-muted); }
.fp-crumbs a:hover { color: var(--fp-text); }
.fp-crumbs .fp-crumbs-sep { opacity: 0.5; }
.fp-crumbs .breadcrumb_last,
.fp-crumbs .current { color: var(--fp-text); font-weight: 500; }
/* Override WC breadcrumb wrapper styles */
.fp-product-wrapper .woocommerce-breadcrumb {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 13px;
	color: var(--fp-muted);
}
.fp-product-wrapper .woocommerce-breadcrumb a { color: var(--fp-muted) !important; }
.fp-product-wrapper .woocommerce-breadcrumb a:hover { color: var(--fp-text) !important; }

/* PDP TOP */
.fp-pdp {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	padding-bottom: 56px;
}

.fp-main-image {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--fp-placeholder);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fp-placeholder-text);
	font-size: 14px;
}
.fp-main-image-placeholder { font-size: 13px; }
.fp-product-wrapper .fp-main-image img,
.fp-product-wrapper .fp-main-image .fp-main-image-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.fp-thumbs {
	margin-top: 14px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.fp-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fp-placeholder-text);
	font-size: 11px;
	cursor: pointer;
	overflow: hidden;
	transition: border-color .15s;
	padding: 6px;
}
.fp-thumb:hover { border-color: var(--fp-muted-2); }
.fp-thumb.fp-thumb--active { border: 2px solid #2C6BFF; padding: 5px; }
.fp-product-wrapper .fp-thumb img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* INFO column */
.fp-badge {
	display: inline-block;
	background: #2C6BFF;
	color: #fff;
	font-family: var(--fp-font-body);
	font-size: 12px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.fp-brand {
	font-family: var(--fp-font-body);
	color: var(--fp-muted);
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 6px;
}
.fp-pdp-title {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	letter-spacing: -0.025em;
	color: var(--fp-text);
	margin: 0 0 14px;
}
.fp-spec {
	font-family: var(--fp-font-body);
	color: #2C6BFF;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.01em;
	margin: 0 0 16px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.fp-price {
	font-family: var(--fp-font-body);
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--fp-text);
	margin: 0 0 14px;
}
.fp-price .amount,
.fp-price .woocommerce-Price-amount {
	font-size: 32px !important;
	font-weight: 800 !important;
	color: var(--fp-text) !important;
}
.fp-price del { color: var(--fp-muted); margin-right: 10px; }
.fp-price del .amount { font-size: 22px !important; font-weight: 500 !important; color: var(--fp-muted) !important; }

.fp-stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--fp-green);
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 24px;
}
.fp-stock::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fp-green);
}
.fp-stock--out { color: #DC2626; }
.fp-stock--out::before { background: #DC2626; }

/* BUY ROW */
.fp-buy-form { margin: 0; }
.fp-buy-row {
	display: flex;
	gap: 14px;
	align-items: stretch;
	margin-bottom: 18px;
}
.fp-pdp-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--fp-border);
	border-radius: 10px;
	background: #fff;
	height: 52px;
	overflow: hidden;
}
.fp-pdp-qty button {
	border: 0;
	background: transparent;
	width: 44px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fp-text);
	cursor: pointer;
	transition: background .15s;
}
.fp-pdp-qty button:hover { background: #F3F4F6; }
.fp-pdp-qty button:disabled { color: #CBD0D8; cursor: not-allowed; background: transparent; }
.fp-pdp-qty-val {
	width: 48px;
	text-align: center;
	font-weight: 600;
	font-size: 15px;
	user-select: none;
	color: var(--fp-text);
}

.fp-product-wrapper .fp-btn {
	border: 0;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background .15s, transform .05s;
	font-family: inherit;
	height: 52px;
	padding: 0 24px;
	text-decoration: none;
}
.fp-product-wrapper .fp-btn:active { transform: translateY(1px); }
.fp-product-wrapper .fp-btn-primary,
.fp-product-wrapper a.fp-btn-primary,
.fp-product-wrapper button.fp-btn-primary {
	background: #2C6BFF !important;
	color: #fff !important;
}
.fp-product-wrapper .fp-btn-primary:hover { background: #1F58E0 !important; color: #fff !important; }
.fp-product-wrapper .fp-btn-primary svg,
.fp-product-wrapper .fp-btn-primary svg * { color: #fff !important; stroke: #fff !important; }
.fp-product-wrapper .fp-btn-block { flex: 1; }

/* TRUST CARD (PDP info column) */
.fp-trust-card {
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 12px;
	padding: 18px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fp-trust-card-row {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--fp-muted);
	font-family: var(--fp-font-body);
	font-size: 14px;
	line-height: 20px;
}
.fp-trust-card-row svg { color: #2C6BFF; flex-shrink: 0; }

/* SECTION CARDS (Parametry / Popis) */
.fp-section-card {
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 14px;
	padding: 26px 30px;
	margin-bottom: 24px;
}
.fp-section-card h2 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
	margin: 0 0 20px;
}

.fp-params-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 56px;
}
.fp-param {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--fp-border-2);
	font-family: var(--fp-font-body);
	font-size: 14px;
}
.fp-param .fp-k { color: var(--fp-muted); }
.fp-param .fp-v { font-weight: 700; color: var(--fp-text); }

.fp-desc p {
	margin: 0;
	color: var(--fp-muted);
	line-height: 1.7;
	font-size: 14px;
}
.fp-desc p + p { margin-top: 6px; }

/* SECTION TITLE (outside cards) */
.fp-section-title {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
	margin: 48px 0 22px;
}

/* PRODUCT CARDS GRID (Doporučujeme) */
.fp-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.fp-product {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--fp-border);
	display: flex;
	flex-direction: column;
}
.fp-product-img-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.fp-product-img-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--fp-placeholder);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fp-placeholder-text);
	font-size: 13px;
	overflow: hidden;
}
.fp-pbadge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #2C6BFF;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
	z-index: 1;
}
/* Scope na kartu: bez něj selektor chytal i <body class="fp-product-body">
   na detailu produktu (stejný název jako body class) a paddoval celou stránku. */
.fp-product .fp-product-body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.fp-product-brand {
	font-family: var(--fp-font-body);
	color: var(--fp-muted);
	font-size: 12px;
	margin: 0 0 4px;
}
.fp-product-title {
	font-family: var(--fp-font-display);
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: -0.005em;
	color: var(--fp-text);
	margin: 0 0 6px;
}
.fp-product-title a { color: inherit; }
.fp-product-title a:hover { color: #2C6BFF; }
.fp-product-spec {
	font-family: var(--fp-font-body);
	color: #2C6BFF;
	font-weight: 700;
	font-size: 13px;
	margin: 0 0 14px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.fp-product-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}
.fp-product-price-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.fp-product-price {
	font-family: var(--fp-font-body);
	font-weight: 800;
	font-size: 18px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
}
.fp-product-price .amount,
.fp-product-price .woocommerce-Price-amount {
	font-size: 18px !important;
	font-weight: 800 !important;
	color: var(--fp-text) !important;
}
.fp-product-stock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--fp-green);
	font-family: var(--fp-font-body);
	font-size: 12px;
	font-weight: 500;
}
.fp-product-stock::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fp-green);
}
.fp-product-wrapper a.fp-product-cta,
.fp-product-cta {
	background: #2C6BFF !important;
	color: #fff !important;
	border: 0;
	border-radius: 9px;
	padding: 10px 16px;
	font-family: var(--fp-font-body);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
	text-decoration: none;
	white-space: nowrap;
}
.fp-product-cta:hover { background: #1F58E0 !important; color: #fff !important; }
.fp-product-cta svg,
.fp-product-cta svg * { color: #fff !important; stroke: #fff !important; }

/* INFO ROW (Doprava / Platba) */
.fp-info-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 32px;
}
.fp-info-card {
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 14px;
	padding: 22px 26px;
}
.fp-info-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.fp-info-head svg { color: #2C6BFF; }
.fp-info-head h3 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: var(--fp-text);
	margin: 0;
}
.fp-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.fp-chip {
	background: #F3F4F6;
	color: var(--fp-text);
	font-family: var(--fp-font-body);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 8px;
}

/* FAQ */
.fp-faq-wrap {
	margin: 64px auto 0;
	max-width: 720px;
	text-align: center;
	padding-bottom: 80px;
}
.fp-faq-wrap h2 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	letter-spacing: -0.015em;
	color: var(--fp-text);
	margin: 0 0 28px;
}
.fp-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fp-faq details {
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 12px;
	padding: 0;
	text-align: left;
	transition: box-shadow .15s;
}
.fp-faq details[open] { box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.fp-faq summary {
	cursor: pointer;
	list-style: none;
	padding: 18px 22px;
	font-family: var(--fp-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--fp-text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.fp-faq summary::-webkit-details-marker { display: none; }
.fp-faq summary .fp-chev {
	color: var(--fp-muted);
	transition: transform .2s;
	flex-shrink: 0;
}
.fp-faq details[open] summary .fp-chev { transform: rotate(180deg); }
.fp-faq .fp-answer {
	padding: 0 22px 18px;
	font-family: var(--fp-font-body);
	font-size: 14px;
	color: var(--fp-muted);
	line-height: 1.6;
}

/* PRODUCT FOOTER (dark contact) */
.fp-product-footer {
	background: #0A0B0F;
	color: #fff;
	padding: 64px 32px;
	text-align: center;
}
.fp-product-footer h2 {
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	letter-spacing: -0.015em;
	color: #fff;
	margin: 0 0 10px;
}
.fp-product-footer-sub {
	font-family: var(--fp-font-body);
	color: #9CA3AF;
	font-size: 14px;
	margin: 0 0 22px;
}
.fp-product-footer-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
.fp-product-footer-links a {
	color: #2C6BFF !important;
	text-decoration: none;
	font-family: var(--fp-font-body);
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.fp-product-footer-links a:hover { text-decoration: underline; color: #2C6BFF !important; }

/* TOAST notifikace po přidání do košíku */
.fp-toast {
	position: fixed;
	top: 24px;
	right: 24px;
	background: #0F172A;
	color: #fff;
	padding: 14px 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--fp-font-body);
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
	transform: translateX(120%);
	opacity: 0;
	transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
	z-index: 999999;
	max-width: 360px;
	pointer-events: none;
}
.fp-toast.fp-toast--visible {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}
.fp-toast-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(22, 163, 74, .22);
	color: #4ADE80;
	flex-shrink: 0;
}
.fp-toast--error .fp-toast-icon {
	background: rgba(239, 68, 68, .22);
	color: #F87171;
}
.fp-toast-msg { white-space: nowrap; }

/* pulse animace na tlačítku po přidání */
@keyframes fp-pulse-success {
	0%   { transform: scale(1); }
	30%  { transform: scale(1.06); }
	60%  { transform: scale(0.98); }
	100% { transform: scale(1); }
}
.fp-pulse { animation: fp-pulse-success .55s ease; }

/* Skrýt WC's automaticky generovaný "Zobrazit košík →" odkaz po AJAX add
   (body-level: pokryje PDP, obchod i košík, ať ho WC vloží kamkoli) */
body.fp-product-body a.added_to_cart,
body.fp-shop-body a.added_to_cart,
body.fp-cart-body a.added_to_cart,
.fp-product-wrapper a.added_to_cart,
.fp-shop-wrapper a.added_to_cart,
.fp-product-wrapper .added_to_cart.wc-forward,
.fp-product-cta + a.added_to_cart {
	display: none !important;
}
/* WC dává class .added na tlačítko po úspěchu — neměnit jeho text */
.fp-product-cta.added { background: #2C6BFF !important; }

/* RESPONSIVE */
@media (max-width: 960px) {
	.fp-pdp { grid-template-columns: 1fr; gap: 32px; }
	.fp-products { grid-template-columns: repeat(2, 1fr); }
	.fp-info-row { grid-template-columns: 1fr; }
	.fp-params-grid { grid-template-columns: 1fr; column-gap: 0; }
	.fp-pdp-title { font-size: 28px; line-height: 34px; }
}
@media (max-width: 560px) {
	.fp-toast { top: 16px; right: 16px; left: 16px; max-width: none; }
	.fp-toast-msg { white-space: normal; }
}
@media (max-width: 560px) {
	.fp-product-wrapper .fp-container { padding: 0 16px; }
	.fp-products { grid-template-columns: 1fr; }
	.fp-product-bottom { flex-direction: column; align-items: stretch; }
	.fp-product-cta { justify-content: center; }
	.fp-product-footer-links { flex-direction: column; gap: 14px; }
	.fp-section-card { padding: 22px 20px; }
}

/* Skrýt "Košík aktualizován / Cart updated" notice (fallback k PHP filtru) */
body.fp-cart-body .woocommerce-message,
body.fp-cart-body .woocommerce-notices-wrapper:empty {
	display: none !important;
}

/* =====================================================
   OBCHOD (shop archiv) — fofrpneu.cz
   ===================================================== */

/* Jen pozadí + pojistka proti horizontálnímu přetečení. Barvu/font
   NEnastavovat na body — dědilo by se do Elementor headeru/footeru. */
body.fp-shop-body {
	background: var(--fp-bg) !important;
	margin: 0;
	overflow-x: clip;
}

/* Obsah jede v theme obalu <main id="content" class="site-main"> jako každá
   jiná stránka — jen ho roztáhneme na full width (Hello Elementor mu jinak
   dává max-width 1140 px). Header/footer jsou MIMO .site-main, nic jiného
   se nestyluje. */
body.fp-shop-body main.site-main {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	display: block;
}
body.fp-shop-body .fp-shop-fullwidth {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.fp-shop-wrapper,
.fp-shop-wrapper * { box-sizing: border-box; }
.fp-shop-wrapper {
	color: var(--fp-text);
	font-family: var(--fp-font-body);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "tnum" 1;
}
.fp-shop-wrapper a { text-decoration: none; }
.fp-shop-wrapper button { font-family: inherit; cursor: pointer; }

.fp-shop-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Hero */
.fp-shop-hero {
	background: #0A0B0F;
	color: #fff;
	padding: 52px 32px 46px;
	text-align: center;
}
.fp-shop-hero h1 {
	margin: 0 0 12px;
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: #fff;
}
.fp-shop-hero-sub {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #9CA3AF;
	font-size: 14px;
	margin: 0;
}
.fp-shop-hero-sub svg { color: var(--fp-blue); flex-shrink: 0; }

/* Záložky kategorií */
.fp-shop-tabs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	padding: 26px 0 22px;
}
.fp-shop-wrapper a.fp-shop-tab {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #fff !important;
	border: 1px solid var(--fp-border) !important;
	border-radius: 10px !important;
	padding: 10px 18px !important;
	font-family: var(--fp-font-body) !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 1 !important;
	color: var(--fp-text) !important;
	text-decoration: none !important;
	transition: border-color .15s, background .15s, color .15s;
}
.fp-shop-wrapper a.fp-shop-tab svg { color: var(--fp-muted-2); transition: color .15s; }
.fp-shop-wrapper a.fp-shop-tab:hover { border-color: var(--fp-muted-2) !important; color: var(--fp-text) !important; }
.fp-shop-wrapper a.fp-shop-tab[aria-pressed="true"],
.fp-shop-wrapper a.fp-shop-tab[aria-pressed="true"]:hover {
	background: var(--fp-blue) !important;
	border-color: var(--fp-blue) !important;
	color: #fff !important;
}
.fp-shop-wrapper a.fp-shop-tab[aria-pressed="true"] svg { color: #fff; }

/* Layout */
.fp-shop {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 24px;
	align-items: start;
	padding-bottom: 64px;
}
.fp-shop-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 20px;
}
.fp-shop-panel {
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 14px;
	padding: 20px;
	margin: 0;
}
.fp-shop-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.fp-shop-panel-head h2 {
	margin: 0;
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
}
.fp-shop-wrapper a.fp-shop-reset {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--fp-muted) !important;
	font-size: 12px !important;
	font-weight: 500;
	text-decoration: none !important;
}
.fp-shop-wrapper a.fp-shop-reset:hover { color: var(--fp-blue) !important; }

.fp-shop-field { margin-bottom: 14px; }
.fp-shop-field label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fp-muted);
	margin-bottom: 6px;
}
.fp-shop-wrapper .fp-shop-field select,
.fp-shop-wrapper select.fp-shop-sort {
	width: 100%;
	max-width: 100%;
	appearance: none !important;
	-webkit-appearance: none !important;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") no-repeat right 10px center !important;
	border: 1px solid var(--fp-border) !important;
	border-radius: 8px !important;
	padding: 9px 32px 9px 11px !important;
	font-family: var(--fp-font-body) !important;
	font-size: 13px !important;
	line-height: 1.2 !important;
	height: auto !important;
	color: var(--fp-text) !important;
	box-shadow: none !important;
	cursor: pointer;
}
.fp-shop-wrapper .fp-shop-field select:focus,
.fp-shop-wrapper select.fp-shop-sort:focus {
	outline: none !important;
	border-color: var(--fp-blue) !important;
	box-shadow: 0 0 0 3px var(--fp-blue-soft) !important;
}

.fp-shop-divider { border-top: 1px solid var(--fp-border-2); margin: 20px 0 16px; }
.fp-shop-group-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fp-muted-2);
	margin-bottom: 14px;
}
.fp-shop-range-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fp-muted);
	margin: 18px 0 8px;
}
.fp-shop-panel input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(var(--fp-blue), var(--fp-blue)) no-repeat, var(--fp-border);
	background-size: 100% 100%;
	margin: 0;
	padding: 0;
	border: 0;
}
.fp-shop-panel input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--fp-blue);
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.fp-shop-panel input[type="range"]::-moz-range-thumb {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--fp-blue);
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.fp-shop-range-ends {
	display: flex;
	justify-content: space-between;
	color: var(--fp-muted-2);
	font-size: 11px;
	margin-top: 7px;
}
.fp-shop-check {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--fp-text);
	margin: 16px 0 18px;
	cursor: pointer;
}
.fp-shop-check input {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 1.5px solid var(--fp-muted-2);
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin: 0;
	background: #fff;
}
.fp-shop-check input:checked { background: var(--fp-blue); border-color: var(--fp-blue); }
.fp-shop-check input:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Tlačítka obchodu (vlastní — .fp-btn má fixní výšky z košíku).
   Vyšší specificita + !important, aby je nepřebíjely theme styly buttonů. */
.fp-shop-wrapper .fp-shop-btn,
.fp-shop-wrapper a.fp-shop-btn,
.fp-shop-wrapper button.fp-shop-btn {
	border: 0 !important;
	border-radius: 10px !important;
	font-family: var(--fp-font-body) !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 1 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition: background .15s, border-color .15s, transform .05s;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
	outline: none;
}
.fp-shop-wrapper .fp-shop-btn:active { transform: translateY(1px); }
.fp-shop-wrapper .fp-shop-btn-primary,
.fp-shop-wrapper a.fp-shop-btn-primary,
.fp-shop-wrapper button.fp-shop-btn-primary {
	background: var(--fp-blue) !important;
	color: #fff !important;
}
.fp-shop-wrapper .fp-shop-btn-primary:hover,
.fp-shop-wrapper a.fp-shop-btn-primary:hover,
.fp-shop-wrapper button.fp-shop-btn-primary:hover {
	background: var(--fp-blue-hover) !important;
	color: #fff !important;
}
.fp-shop-wrapper .fp-shop-btn-block { width: 100% !important; height: 42px !important; padding: 0 !important; }
.fp-shop-wrapper .fp-shop-btn-ghost,
.fp-shop-wrapper a.fp-shop-btn-ghost {
	background: #fff !important;
	border: 1px solid var(--fp-border) !important;
	color: var(--fp-text) !important;
	height: 42px !important;
	padding: 0 22px !important;
}
.fp-shop-wrapper .fp-shop-btn-ghost:hover,
.fp-shop-wrapper a.fp-shop-btn-ghost:hover {
	border-color: var(--fp-muted-2) !important;
	background: #fff !important;
	color: var(--fp-text) !important;
}

/* Results bar */
.fp-shop-results-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0 0;
}
.fp-shop-count { font-size: 13px; color: var(--fp-muted); margin: 0; }
.fp-shop-count strong { color: var(--fp-text); font-weight: 700; }
.fp-shop-wrapper select.fp-shop-sort { width: auto; min-width: 165px; flex: 0 0 auto; font-weight: 500; }

.fp-shop-quick {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding: 16px 0 20px;
}
.fp-shop-wrapper button.fp-shop-qchip {
	background: #fff !important;
	border: 1px solid var(--fp-border) !important;
	border-radius: 999px !important;
	padding: 7px 15px !important;
	font-family: var(--fp-font-body) !important;
	font-weight: 500 !important;
	font-size: 12px !important;
	line-height: 1 !important;
	height: auto !important;
	min-height: 0 !important;
	color: var(--fp-text) !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
	transition: border-color .15s, background .15s, color .15s;
}
.fp-shop-wrapper button.fp-shop-qchip:hover {
	border-color: var(--fp-muted-2) !important;
	background: #fff !important;
	color: var(--fp-text) !important;
}
.fp-shop-wrapper button.fp-shop-qchip[aria-pressed="true"],
.fp-shop-wrapper button.fp-shop-qchip[aria-pressed="true"]:hover {
	background: var(--fp-blue-soft) !important;
	border-color: var(--fp-blue) !important;
	color: var(--fp-blue) !important;
}

/* Mřížka — přebíjí 4sloupcové .fp-products z PDP */
.fp-products.fp-shop-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fp-shop-grid.fp-shop-grid--loading { opacity: .5; pointer-events: none; }
.fp-shop-grid .fp-product { transition: box-shadow .15s, border-color .15s; }
.fp-shop-grid .fp-product:hover {
	border-color: #D8DCE3;
	box-shadow: 0 4px 16px rgba(11,15,25,.06);
}
.fp-shop-grid .fp-product-img-wrap { aspect-ratio: 4 / 3; }
.fp-product-stock--out { color: var(--fp-muted); }
.fp-product-stock--out::before { background: var(--fp-muted-2); }
.fp-product-cta--detail { background: #fff !important; border: 1px solid var(--fp-border); color: var(--fp-text) !important; }
.fp-product-cta--detail:hover { border-color: var(--fp-muted-2); background: #fff !important; }

/* Prázdný stav */
.fp-shop-empty {
	grid-column: 1 / -1;
	background: #fff;
	border: 1px solid var(--fp-border);
	border-radius: 14px;
	padding: 48px 24px;
	text-align: center;
}
.fp-shop-empty p { margin: 0 0 18px; color: var(--fp-muted); font-size: 14px; }

.fp-shop-more { display: flex; justify-content: center; padding: 36px 0 0; }

/* SEO blok */
.fp-shop-seo { background: #EDEEF1; border-top: 1px solid var(--fp-border); }
.fp-shop-seo-inner { max-width: 760px; margin: 0 auto; padding: 60px 32px 68px; }
.fp-shop-seo h2 {
	margin: 0 0 18px;
	font-family: var(--fp-font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.01em;
	color: var(--fp-text);
}
.fp-shop-seo p {
	margin: 0 0 16px;
	color: var(--fp-muted);
	font-size: 13.5px;
	line-height: 1.75;
}
.fp-shop-seo p:last-child { margin-bottom: 0; }
.fp-shop-seo strong { color: var(--fp-text); font-weight: 700; }

/* Mobilní přepínač filtrů — na desktopu skrytý, na mobilu sbalí panel.
   Bez JS zůstává panel viditelný (.fp-shop-side--js přidává skript). */
.fp-shop-wrapper button.fp-shop-filter-toggle { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
	.fp-shop { grid-template-columns: 1fr; }
	.fp-shop-side { position: static; gap: 0; }
	.fp-products.fp-shop-grid { grid-template-columns: repeat(2, 1fr); }

	.fp-shop-wrapper .fp-shop-side--js button.fp-shop-filter-toggle {
		display: flex !important;
		align-items: center;
		gap: 9px;
		width: 100% !important;
		background: #fff !important;
		border: 1px solid var(--fp-border) !important;
		border-radius: 14px !important;
		padding: 14px 16px !important;
		font-family: var(--fp-font-display) !important;
		font-weight: 700 !important;
		font-size: 15px !important;
		line-height: 1 !important;
		letter-spacing: -0.01em !important;
		color: var(--fp-text) !important;
		text-transform: none !important;
		box-shadow: none !important;
		cursor: pointer;
	}
	.fp-shop-filter-toggle .fp-shop-filter-chevron { margin-left: auto; color: var(--fp-muted-2); transition: transform .15s; }
	.fp-shop-filter-toggle[aria-expanded="true"] .fp-shop-filter-chevron { transform: rotate(180deg); }
	.fp-shop-side--js .fp-shop-panel { display: none; }
	.fp-shop-side--js.fp-shop-side--open .fp-shop-panel { display: block; margin-top: 12px; }
}
@media (max-width: 640px) {
	.fp-shop-container { padding: 0 16px; }
	.fp-shop-hero h1 { font-size: 26px; }
	.fp-products.fp-shop-grid { grid-template-columns: 1fr; }
	.fp-shop-results-bar { flex-direction: column; align-items: flex-start; }
	.fp-shop-wrapper select.fp-shop-sort { width: 100%; }
}

/* WC "Zobrazit košík" odkaz po AJAX přidání — v mřížce obchodu skrýt */
.fp-shop-grid a.added_to_cart { display: none !important; }

/* =====================================================
   ELEMENTOR HEADER/FOOTER (EHF šablony) — full-bleed
   =====================================================
   Na stránkách bez Elementor obsahu (naše šablony) chybí body třída
   elementor-page-* a šířku headeru/footeru může svírat theme (Hello:
   body:not([class*=elementor-page-]) blok) nebo jiná vrstva. Roztáhnout
   proto obalové prvky headeru a footeru na plnou šířku. Vnitřní obsah
   (.e-con-inner, .elementor-container) se NEROZTAHUJE — drží content
   width 1140 px, full-bleed jsou jen pruhy pozadí. */
body.fp-product-body #masthead,
body.fp-shop-body #masthead,
body.fp-cart-body #masthead,
body.fp-checkout-body #masthead,
body.fp-product-body #colophon,
body.fp-shop-body #colophon,
body.fp-cart-body #colophon,
body.fp-checkout-body #colophon,
body.fp-product-body .site-header,
body.fp-shop-body .site-header,
body.fp-cart-body .site-header,
body.fp-checkout-body .site-header,
body.fp-product-body .site-footer,
body.fp-shop-body .site-footer,
body.fp-cart-body .site-footer,
body.fp-checkout-body .site-footer {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
body.fp-product-body #masthead .elementor,
body.fp-shop-body #masthead .elementor,
body.fp-cart-body #masthead .elementor,
body.fp-checkout-body #masthead .elementor,
body.fp-product-body #colophon .elementor,
body.fp-shop-body #colophon .elementor,
body.fp-cart-body #colophon .elementor,
body.fp-checkout-body #colophon .elementor {
	width: 100% !important;
	max-width: 100% !important;
}
body.fp-product-body #masthead .e-con.e-parent,
body.fp-shop-body #masthead .e-con.e-parent,
body.fp-cart-body #masthead .e-con.e-parent,
body.fp-checkout-body #masthead .e-con.e-parent,
body.fp-product-body #colophon .e-con.e-parent,
body.fp-shop-body #colophon .e-con.e-parent,
body.fp-cart-body #colophon .e-con.e-parent,
body.fp-checkout-body #colophon .e-con.e-parent,
body.fp-product-body #masthead > .elementor > .elementor-section,
body.fp-shop-body #masthead > .elementor > .elementor-section,
body.fp-cart-body #masthead > .elementor > .elementor-section,
body.fp-checkout-body #masthead > .elementor > .elementor-section,
body.fp-product-body #colophon > .elementor > .elementor-section,
body.fp-shop-body #colophon > .elementor > .elementor-section,
body.fp-cart-body #colophon > .elementor > .elementor-section,
body.fp-checkout-body #colophon > .elementor > .elementor-section {
	--width: 100%;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* =====================================================
   SHORTCODE [fofrpneu_produkty] — výpis produktů
   =====================================================
   Karty sdílí globální .fp-products/.fp-product styly; tady jen
   scoped doplňky (box-sizing mimo naše wrappery, hover jako v obchodu,
   tlačítko a sloupcové varianty). Vysoká specificita + !important
   kvůli přebíjení theme/Elementor stylů na homepage. */
.fp-home-products,
.fp-home-products * { box-sizing: border-box; }
.fp-home-products { font-family: var(--fp-font-body); }
/* Odkazy v kartách bez podtržení — mimo naše šablony je podtrhává
   globální styl odkazů Elementor kitu / theme. */
.fp-product a,
.fp-product a:hover,
.fp-product a:focus { text-decoration: none !important; }
.fp-home-products .fp-products { gap: 20px; }
.fp-home-products--cols-3 .fp-products { grid-template-columns: repeat(3, 1fr); }
.fp-home-products .fp-product { transition: box-shadow .15s, border-color .15s; }
.fp-home-products .fp-product:hover {
	border-color: #D8DCE3;
	box-shadow: 0 4px 16px rgba(11,15,25,.06);
}
.fp-home-products .fp-product-img-wrap { aspect-ratio: 4 / 3; }
.fp-home-products a.added_to_cart { display: none !important; }
.fp-home-products-more { display: flex; justify-content: center; margin-top: 28px; }
.fp-home-products a.fp-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 46px !important;
	padding: 0 26px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: var(--fp-blue) !important;
	color: #fff !important;
	font-family: var(--fp-font-body) !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 1 !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
	transition: background .15s, transform .05s;
}
.fp-home-products a.fp-home-btn:hover { background: var(--fp-blue-hover) !important; color: #fff !important; }
.fp-home-products a.fp-home-btn:active { transform: translateY(1px); }
@media (max-width: 1024px) {
	.fp-home-products--cols-3 .fp-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
	.fp-home-products .fp-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.fp-home-products .fp-products,
	.fp-home-products--cols-3 .fp-products { grid-template-columns: 1fr; }
}

/* =====================================================
   ELEMENTOR WIDGET „Filtr pneumatik" — vyhledávací karta
   =====================================================
   Přenos designu Filtr.html. Vysoká specificita + !important na
   selectech/buttonu kvůli theme a Elementor stylům. */
.fp-filtr,
.fp-filtr * { box-sizing: border-box; }
.fp-filtr { font-family: var(--fp-font-body); }
.fp-filtr-head { max-width: 720px; margin: 0 auto 28px; text-align: center; }
.fp-filtr-head .fp-filtr-title {
	margin: 0 0 10px;
	font-family: var(--fp-font-display);
	font-size: 34px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--fp-text);
}
.fp-filtr-head .fp-filtr-sub { margin: 0; font-size: 15px; line-height: 1.5; color: var(--fp-muted); }
.fp-filtr-card {
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid transparent;
	border-radius: 16px;
	padding: 28px 32px 30px;
}
.fp-filtr-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-bottom: 22px;
}
.fp-filtr-field { display: flex; flex-direction: column; gap: 7px; }
.fp-filtr-field label {
	font-family: var(--fp-font-body) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}
.fp-filtr .fp-filtr-field select {
	width: 100% !important;
	height: 44px !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	background-size: 16px 16px !important;
	border-radius: 10px !important;
	padding: 0 36px 0 14px !important;
	margin: 0 !important;
	font-family: var(--fp-font-body) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: border-color .15s, box-shadow .15s;
}
.fp-filtr .fp-filtr-field select:focus {
	outline: none !important;
	border-color: var(--fp-blue) !important;
	box-shadow: 0 0 0 3px rgba(44, 107, 255, .35) !important;
}
.fp-filtr button.fp-filtr-submit {
	width: 100% !important;
	height: 52px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: var(--fp-blue) !important;
	color: #fff !important;
	font-family: var(--fp-font-body) !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	box-shadow: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: background .15s, transform .05s;
}
.fp-filtr button.fp-filtr-submit:hover { background: var(--fp-blue-hover) !important; color: #fff !important; }
.fp-filtr button.fp-filtr-submit:active { transform: translateY(1px); }

/* Tmavá varianta (default — jako design) */
.fp-filtr--tmavy .fp-filtr-card { background: #14161C; border-color: rgba(255, 255, 255, .10); }
.fp-filtr--tmavy .fp-filtr-field label { color: #9CA3AF !important; }
.fp-filtr--tmavy .fp-filtr-field select {
	background-color: #1B1E26 !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") !important;
	border: 1px solid rgba(255, 255, 255, .18) !important;
	color: #fff !important;
}
.fp-filtr--tmavy .fp-filtr-field select:hover { border-color: rgba(255, 255, 255, .3) !important; }
.fp-filtr--tmavy .fp-filtr-field select option { background: #1B1E26; color: #fff; }

/* Světlá varianta */
.fp-filtr--svetly .fp-filtr-card { background: #fff; border-color: var(--fp-border); }
.fp-filtr--svetly .fp-filtr-field label { color: var(--fp-muted) !important; }
.fp-filtr--svetly .fp-filtr-field select {
	background-color: #fff !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") !important;
	border: 1px solid var(--fp-border) !important;
	color: var(--fp-text) !important;
}
.fp-filtr--svetly .fp-filtr-field select:hover { border-color: var(--fp-muted-2) !important; }
.fp-filtr--svetly .fp-filtr-field select option { background: #fff; color: var(--fp-text); }

@media (max-width: 900px) {
	.fp-filtr-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
	.fp-filtr-card { padding: 22px 18px 24px; border-radius: 14px; }
	.fp-filtr-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.fp-filtr-head { margin-bottom: 22px; }
	.fp-filtr-head .fp-filtr-title { font-size: 26px; }
}

/* =====================================================
   CENA BEZ DPH — „(X Kč bez DPH)" za cenou s DPH
   ===================================================== */
.fp-price-net {
	display: block;
	font-family: var(--fp-font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--fp-muted);
	margin-top: 3px;
	white-space: nowrap;
}
/* Uvnitř suffixu neplatí zvětšené .amount z okolních cenových bloků. */
.fp-price-net .amount,
.fp-price-net .woocommerce-Price-amount {
	font-size: inherit !important;
	font-weight: inherit !important;
	color: inherit !important;
}
/* Detail produktu: na stejném řádku za velkou cenou. */
.fp-price .fp-price-net {
	display: inline;
	font-size: 15px;
	margin-left: 10px;
}
/* Košík: pod řádkovou cenou položky a pod Celkem, zarovnané doprava. */
.fp-item-total .fp-price-net { font-size: 12px; text-align: right; }
.fp-total-row .fp-value .fp-price-net { font-size: 12px; text-align: right; }
