/**
 * Wyjedzone – historia zamówień
 * Biała karta, ciemny tekst, bez cieni. Chipy #f7f6f2.
 */
.wyj-oh {
	--wyj-oh-font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--wyj-oh-font-display: Fraunces, Poppins, Georgia, "Times New Roman", serif;
	--wyj-oh-text: #111827;
	--wyj-oh-muted: #6b7280;
	--wyj-oh-border: #e8e2d8;
	--wyj-oh-kicker: #6b7280;
	--wyj-oh-green: #16a34a;
	--wyj-oh-green-soft: rgba(22, 163, 74, 0.16);
	--wyj-oh-green-border: rgba(22, 163, 74, 0.24);
	--wyj-oh-header-bg: #ffffff;
	--wyj-oh-card: #ffffff;
	--wyj-oh-chip-bg: #f7f6f2;
	--wyj-oh-radius: 16px;
	--wyj-oh-pink: #ff5fb4;
	--wyj-oh-pink-hover: #ff3ea8;

	font-family: var(--wyj-oh-font-sans);
	color: var(--wyj-oh-text);
	width: 100%;
	max-width: none;
	margin: 1rem 0;
	padding: 0;
	box-sizing: border-box;
}

.wyj-oh-login-msg,
.wyj-oh-empty {
	text-align: center;
	padding: 24px;
	color: var(--wyj-oh-muted);
	font-size: 14px;
}

/* ——— Karta ——— */
.wyj-oh-card {
	background: var(--wyj-oh-card);
	border-radius: var(--wyj-oh-radius);
	box-shadow: none;
	margin-bottom: 16px;
	overflow: hidden;
	border: 1px solid var(--wyj-oh-border);
	position: relative;
}

/* Belka karty: siatka + niewidoczny hit (klik) + link „Śledź” nad hit (pointer-events) */
.wyj-oh-card__bar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto 36px;
	align-items: center;
	column-gap: clamp(12px, 3vw, 28px);
	row-gap: 10px;
	width: 100%;
	padding: 16px 20px;
	background: #ffffff;
	box-sizing: border-box;
	color: #111827;
}

.wyj-oh-card__bar--has-track {
	grid-template-columns: minmax(0, 1fr) auto auto auto 36px;
}

.wyj-oh-bar-hit {
	position: absolute;
	inset: 0;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
	color: transparent;
}

.wyj-oh-bar-hit:hover,
.wyj-oh-bar-hit:focus-visible {
	background: transparent;
}

.wyj-oh-bar-hit:focus,
.wyj-oh-bar-hit:focus-visible,
.wyj-oh-bar-hit:active {
	outline: none;
	box-shadow: none;
}

.wyj-oh-card__lead,
.wyj-oh-card__status,
.wyj-oh-meta,
.wyj-oh-chevron {
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.wyj-oh-header-track {
	position: relative;
	z-index: 3;
	grid-column: 3;
	grid-row: 1;
	pointer-events: auto;
	align-self: center;
	justify-self: center;
	white-space: nowrap;
	font-size: 10px;
	padding: 4px 8px;
	line-height: 1;
	gap: 6px;
	min-height: 22px;
	border-radius: 999px;
}

.wyj-oh-card__bar:has(.wyj-oh-bar-hit[aria-expanded="true"]) .wyj-oh-chevron {
	transform: rotate(180deg);
}

.wyj-oh-card__lead {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.wyj-oh-card__headline {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 0.35em;
	margin: 0 0 6px;
	line-height: 1.25;
}

.wyj-oh-card__title {
	font-family: "Fraunces", sans-serif;
	font-weight: 700;
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	margin: 0;
	letter-spacing: -0.02em;
	color: #111827;
}

.wyj-oh-card__sep {
	color: var(--wyj-oh-muted);
	font-weight: 500;
	font-size: 13px;
	user-select: none;
}

.wyj-oh-card__date {
	font-size: 13px;
	font-weight: 500;
	color: var(--wyj-oh-muted);
	margin: 0;
}

.wyj-oh-card__preview {
	font-size: 13px;
	color: var(--wyj-oh-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wyj-oh-card__status {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-shrink: 0;
	text-align: center;
	min-width: 0;
}

.wyj-oh-pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wyj-oh-pill--success {
	background: var(--wyj-oh-green-soft);
	border: 1px solid var(--wyj-oh-green-border);
	color: #166534;
}

.wyj-oh-pill--progress {
	background: #f3f4f6;
	border: 1px solid var(--wyj-oh-border);
	color: #374151;
}

.wyj-oh-pill--wait {
	background: #f3f4f6;
	border: 1px solid var(--wyj-oh-border);
	color: var(--wyj-oh-muted);
}

.wyj-oh-pill--danger {
	background: #fff1f2;
	border: 1px solid #fecdd3;
	color: #b91c1c;
}

.wyj-oh-pill--muted {
	background: #f3f4f6;
	color: #374151;
}

.wyj-oh-rating {
	font-size: 13px;
	color: #4338ca;
	font-weight: 700;
	white-space: nowrap;
}

.wyj-oh-rating__star {
	color: #4338ca;
	margin-right: 2px;
}

.wyj-oh-meta {
	grid-column: 3;
	grid-row: 1;
	text-align: right;
	justify-self: end;
	min-width: 0;
}

.wyj-oh-card__bar--has-track .wyj-oh-meta {
	grid-column: 4;
}

.wyj-oh-meta__price {
	font-family: var(--wyj-oh-font-display);
	font-weight: 800;
	font-size: clamp(1.15rem, 3vw, 1.35rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #111827;
}

.wyj-oh-meta__price .woocommerce-Price-amount {
	color: inherit;
}

.wyj-oh-meta__points {
	font-size: 12px;
	font-weight: 700;
	font-family: var(--wyj-oh-font-display);
	color: #ff5fb4;
	margin-top: 4px;
}

.wyj-oh-chevron {
	grid-column: 4;
	grid-row: 1;
	justify-self: end;
	align-self: center;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(17, 24, 39, 0.35);
	border-bottom: 2px solid rgba(17, 24, 39, 0.35);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-top: -2px;
}

.wyj-oh-card__bar--has-track .wyj-oh-chevron {
	grid-column: 5;
}

/* ——— Rozwinięcie ——— */
.wyj-oh-card__body {
	padding: 0;
	background: #ffffff;
	border-top: 1px solid var(--wyj-oh-border);
}

.wyj-oh-card__body[hidden] {
	display: none;
}

.wyj-oh-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 28px;
	width: 100%;
	box-sizing: border-box;
	padding: 20px 20px 8px;
}

@media (max-width: 720px) {
	.wyj-oh-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 16px 16px 6px;
	}

	.wyj-oh-card__bar {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px 12px;
		padding: 14px 16px;
		padding-right: 44px;
	}

	.wyj-oh-card__lead {
		flex: 1 1 100%;
		width: 100%;
		min-width: 0;
	}

	.wyj-oh-card__status {
		flex: 0 0 auto;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		gap: 8px 12px;
	}

	.wyj-oh-header-track {
		flex: 0 0 auto;
	}

	.wyj-oh-meta {
		flex: 1 1 auto;
		margin-left: auto;
		text-align: right;
		min-width: 0;
	}

	.wyj-oh-chevron {
		position: absolute;
		top: 18px;
		right: 16px;
		margin-top: 0;
	}
}

.wyj-oh-section-title {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wyj-oh-kicker);
	font-weight: 800;
	margin: 0 0 12px;
	font-family: var(--wyj-oh-font-sans);
}

.wyj-oh-line {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--wyj-oh-border);
	font-size: 14px;
}

.wyj-oh-line__left {
	flex: 1;
	min-width: 0;
}

.wyj-oh-line__name {
	font-weight: 600;
}

.wyj-oh-line__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.35;
	color: #6b7280;
	font-weight: 400;
}

.wyj-oh-line__meta-item {
	display: block;
}

.wyj-oh-line__price {
	font-weight: 700;
	font-family: var(--wyj-oh-font-display);
	white-space: nowrap;
	font-size: 15px;
}

.wyj-oh-sums {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--wyj-oh-border);
	font-size: 14px;
}

.wyj-oh-sum {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	color: #374151;
}

.wyj-oh-sum--discount {
	color: #166534;
	font-weight: 600;
}

.wyj-oh-sum--discount span:last-child {
	color: var(--wyj-oh-green);
	font-weight: 700;
}

.wyj-oh-sum--total {
	font-weight: 800;
	font-size: 16px;
	padding-top: 10px;
	margin-top: 4px;
	border-top: 1px solid var(--wyj-oh-border);
	color: #111827;
	font-family: var(--wyj-oh-font-display);
}

.wyj-oh-chip {
	background: var(--wyj-oh-chip-bg);
	border-radius: 14px;
	padding: 12px 14px;
	margin-bottom: 10px;
	border: 1px solid var(--wyj-oh-border);
}

.wyj-oh-chip__title {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wyj-oh-kicker);
	font-weight: 800;
	margin-bottom: 8px;
	font-family: var(--wyj-oh-font-sans);
}

.wyj-oh-chip__body {
	font-size: 13px;
	line-height: 1.45;
	word-break: break-word;
	color: #111827;
}

.wyj-oh-chip--payment {
	border-color: rgba(255, 95, 180, 0.35);
	background: linear-gradient(180deg, #fff8fc 0%, #fff 100%);
}

.wyj-oh-chip--payment .wyj-oh-chip__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.wyj-oh-payment-hint {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #4b5563;
	font-weight: 500;
}

.wyj-oh-chip__extra {
	margin-top: 8px;
	font-size: 12px;
	color: var(--wyj-oh-muted);
	font-weight: 600;
}

.wyj-oh-chip__extra--completion {
	color: #374151;
}

.wyj-oh-chip__note {
	font-size: 13px;
	line-height: 1.45;
	color: #374151;
	white-space: pre-wrap;
}

.wyj-oh-chip__strong {
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 6px;
	color: #111827;
}

.wyj-oh-chip__addr {
	font-size: 13px;
	line-height: 1.45;
	color: #374151;
}

.wyj-oh-chip__addr-line {
	font-size: 13px;
	line-height: 1.45;
	color: #374151;
}

.wyj-oh-chip__addr-line + .wyj-oh-chip__addr-line {
	margin-top: 4px;
}

.wyj-oh-chip--points {
	background: var(--wyj-oh-chip-bg);
	border: 1px solid var(--wyj-oh-border);
}

.wyj-oh-chip__points {
	font-family: var(--wyj-oh-font-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.02em;
}

.wyj-oh-chip__unit {
	font-size: 0.875rem;
	font-weight: 700;
	color: #374151;
	margin-left: 4px;
}

/* ——— Akcje (jak RTS + makietka) ——— */
.wyj-oh-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 16px 20px 20px;
	border-top: 1px solid var(--wyj-oh-border);
	background: #ffffff;
	width: 100%;
	box-sizing: border-box;
}

.wyj-oh-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 650;
	font-family: var(--wyj-oh-font-sans);
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
	letter-spacing: -0.01em;
}

.wyj-oh-btn--primary {
	background: #111827;
	color: #ffffff;
	border-color: #111827;
	box-shadow: none;
}

.wyj-oh-btn--primary:hover {
	background: #374151;
	border-color: #374151;
	color: #ffffff;
}

.wyj-oh-btn--warn {
	background: #ffffff;
	color: #111827;
	border-color: var(--wyj-oh-border);
}

.wyj-oh-btn--warn:hover {
	background: #f3f4f6;
	color: #111827;
	border-color: var(--wyj-oh-border);
}

.wyj-oh-btn--outline {
	background: #fff;
	color: #111827;
	border-color: var(--wyj-oh-border);
}

.wyj-oh-btn--outline:hover {
	background: #f3f4f6;
}

.wyj-oh-btn--track {
	background: var(--wyj-oh-pink);
	color: #ffffff;
	border: 1px solid var(--wyj-oh-pink);
}

.wyj-oh-btn--track:hover {
	background: var(--wyj-oh-pink-hover);
	color: #ffffff;
	border-color: var(--wyj-oh-pink-hover);
}

.wyj-oh-chip--status .wyj-oh-chip__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wyj-oh-rts-text {
	font-weight: 650;
	color: #111827;
}

.wyj-oh-rts-small {
	font-size: 12px;
	color: var(--wyj-oh-muted);
}

.wyj-oh-rts-timer {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}

.wyj-oh-rts-timer__label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wyj-oh-kicker);
	font-weight: 800;
}

.wyj-oh-rts-timer__value {
	font-family: var(--wyj-oh-font-display);
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	color: #111827;
}

.wyj-oh-steps {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wyj-oh-step {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.wyj-oh-step__dot {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid var(--wyj-oh-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 12px;
	color: #111827;
	flex: 0 0 auto;
}

.wyj-oh-step__bold {
	font-family: var(--wyj-oh-font-display);
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
}

.wyj-oh-step__small {
	font-size: 12px;
	color: var(--wyj-oh-muted);
	line-height: 1.25;
	margin-top: 2px;
}

.wyj-oh-step.is-done .wyj-oh-step__dot {
	background: rgba(22, 163, 74, 0.12);
	border-color: rgba(22, 163, 74, 0.25);
	color: #166534;
}

.wyj-oh-step.is-active .wyj-oh-step__dot {
	background: rgba(255, 95, 180, 0.16);
	border-color: rgba(255, 95, 180, 0.28);
	color: #9d174d;
}

.wyj-oh-btn__icon {
	font-size: 1rem;
	line-height: 1;
}

.wyj-oh-btn__icon--bang {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	height: 1.25em;
	border-radius: 50%;
	background: rgba(17, 24, 39, 0.08);
	font-weight: 900;
	font-size: 12px;
}

.wyj-oh-btn__icon--pin {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid currentColor;
	margin-bottom: 2px;
}

/* Belka: trochę mniejsza ikonka w "Śledź" */
.wyj-oh-header-track .wyj-oh-btn__icon--pin {
	width: 6px;
	height: 6px;
	border-width: 2px;
	margin-bottom: 1px;
}

.wyj-oh-load-more-wrap {
	text-align: center;
	margin-top: 16px;
	width: 100%;
	box-sizing: border-box;
}

/* ——— Modal ——— */
.wyj-oh-modal[hidden] {
	display: none !important;
}

.wyj-oh-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	font-family: var(--wyj-oh-font-sans);
}

.wyj-oh-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 15, 15, 0.45);
}

.wyj-oh-modal__panel {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	max-width: 420px;
	width: 100%;
	box-shadow: none;
	border: 1px solid var(--wyj-oh-border);
}

.wyj-oh-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--wyj-oh-muted);
}

.wyj-oh-modal__title {
	font-family: var(--wyj-oh-font-display);
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #111827;
}

.wyj-oh-modal__sub {
	margin: 0 0 16px;
	font-size: 14px;
	color: var(--wyj-oh-muted);
	line-height: 1.4;
}

.wyj-oh-field {
	display: block;
	margin-bottom: 16px;
}

.wyj-oh-field:last-of-type {
	margin-bottom: 12px;
}

.wyj-oh-field__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #374151;
	letter-spacing: 0.02em;
}

/* Pola modala: wyraźna ramka + tło — motywy często zerują border na select/textarea */
.wyj-oh-input {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	font: inherit;
	font-size: 15px;
	line-height: 1.45;
	box-sizing: border-box;
	background-color: #f8fafc;
	color: #111827;
	transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.wyj-oh-input::placeholder {
	color: #9ca3af;
}

.wyj-oh-input:hover {
	border-color: #94a3b8;
	background-color: #fff;
}

.wyj-oh-input:focus {
	outline: none;
	border-color: var(--wyj-oh-pink);
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 95, 180, 0.2);
}

select.wyj-oh-input {
	cursor: pointer;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
}

textarea.wyj-oh-input {
	-webkit-appearance: auto;
	appearance: auto;
}

.wyj-oh-input--area {
	resize: vertical;
	min-height: 120px;
}

.wyj-oh-problem-msg {
	font-size: 13px;
	margin: 0 0 10px;
	padding: 8px 10px;
	border-radius: 8px;
}

.wyj-oh-problem-msg--ok {
	background: rgba(22, 163, 74, 0.12);
	color: #166534;
}

.wyj-oh-problem-msg--err {
	background: #fff1f2;
	color: #b91c1c;
}

.wyj-oh-problem-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Motyw / Elementor może nadpisywać cienie na elementach wewnątrz karty */
.wyj-oh .wyj-oh-card,
.wyj-oh .wyj-oh-card * {
	box-shadow: none !important;
	text-shadow: none !important;
}

/* Bez uniwersalnego cienia — wyjątek: .wyj-oh-input (focus / czytelność pól) */
#wyj-oh-problem-modal,
#wyj-oh-problem-modal *:not(.wyj-oh-input) {
	box-shadow: none !important;
	text-shadow: none !important;
}

#wyj-oh-problem-modal .wyj-oh-input {
	border: 1px solid #cbd5e1 !important;
	background-color: #f8fafc !important;
	color: #111827 !important;
}

#wyj-oh-problem-modal .wyj-oh-input:hover {
	border-color: #94a3b8 !important;
	background-color: #ffffff !important;
}

#wyj-oh-problem-modal .wyj-oh-input:focus {
	border-color: var(--wyj-oh-pink) !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 3px rgba(255, 95, 180, 0.22) !important;
}

.wyj-oh .wyj-oh-btn,
.wyj-oh .wyj-oh-load-more-wrap,
.wyj-oh .wyj-oh-load-more-wrap button {
	box-shadow: none !important;
	text-shadow: none !important;
}

/**
 * Elementor Site Settings: .elementor-kit-N button { background: var(--e-global-color-…); }
 * Wyższa specyficzność + !important — tylko w obrębie .wyj-oh i modala zgłoszenia.
 */
.elementor-kit-4 .wyj-oh button.wyj-oh-bar-hit.wyj-oh-toggle,
.elementor-kit-4 .wyj-oh button.wyj-oh-card__header.wyj-oh-toggle,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-bar-hit.wyj-oh-toggle,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-card__header.wyj-oh-toggle {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	color: #111827 !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn {
	border-radius: 999px !important;
	background-image: none !important;
	box-shadow: none !important;
	font-family: var(--wyj-oh-font-sans) !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn--primary,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn--primary,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--primary,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--primary {
	background-color: #111827 !important;
	color: #ffffff !important;
	border: 1px solid #111827 !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn--primary:hover,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn--primary:hover,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--primary:hover,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--primary:hover {
	background-color: #374151 !important;
	border-color: #374151 !important;
	color: #ffffff !important;
}

.elementor-kit-4 .wyj-oh button.wyj-oh-btn--warn,
.elementor-kit-4 .wyj-oh a.wyj-oh-btn--warn,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--warn,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--warn {
	background-color: #ffffff !important;
	color: #111827 !important;
	border: 1px solid var(--wyj-oh-border) !important;
}

.elementor-kit-4 .wyj-oh button.wyj-oh-btn--warn:hover,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--warn:hover {
	background-color: #f3f4f6 !important;
	color: #111827 !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn--outline,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn--outline,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--outline,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--outline {
	background-color: #ffffff !important;
	color: #111827 !important;
	border: 1px solid var(--wyj-oh-border) !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn--outline:hover,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn--outline:hover,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--outline:hover,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--outline:hover {
	background-color: #f3f4f6 !important;
	color: #111827 !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn--track,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn--track,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--track,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--track {
	background-color: var(--wyj-oh-pink) !important;
	color: #ffffff !important;
	border: 1px solid var(--wyj-oh-pink) !important;
}

.elementor-kit-4 .wyj-oh a.wyj-oh-btn--track:hover,
.elementor-kit-4 .wyj-oh button.wyj-oh-btn--track:hover,
[class*="elementor-kit-"] .wyj-oh a.wyj-oh-btn--track:hover,
[class*="elementor-kit-"] .wyj-oh button.wyj-oh-btn--track:hover {
	background-color: var(--wyj-oh-pink-hover) !important;
	color: #ffffff !important;
	border-color: var(--wyj-oh-pink-hover) !important;
}

/* Modal (poza .wyj-oh) */
.elementor-kit-4 #wyj-oh-problem-modal button.wyj-oh-btn--primary,
[class*="elementor-kit-"] #wyj-oh-problem-modal button.wyj-oh-btn--primary {
	background-color: #111827 !important;
	color: #ffffff !important;
	border: 1px solid #111827 !important;
	border-radius: 999px !important;
	background-image: none !important;
}

.elementor-kit-4 #wyj-oh-problem-modal button.wyj-oh-btn--primary:hover,
[class*="elementor-kit-"] #wyj-oh-problem-modal button.wyj-oh-btn--primary:hover {
	background-color: #374151 !important;
	border-color: #374151 !important;
	color: #ffffff !important;
}

.elementor-kit-4 #wyj-oh-problem-modal button.wyj-oh-modal__close,
[class*="elementor-kit-"] #wyj-oh-problem-modal button.wyj-oh-modal__close {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: #6b7280 !important;
	border: none !important;
	border-radius: 0 !important;
}

.elementor-kit-4 .wyj-oh .wyj-oh-input,
.elementor-kit-4 #wyj-oh-problem-modal .wyj-oh-input,
[class*="elementor-kit-"] .wyj-oh .wyj-oh-input,
[class*="elementor-kit-"] #wyj-oh-problem-modal .wyj-oh-input {
	background-color: #f8fafc !important;
	background-image: none !important;
	color: #111827 !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 10px !important;
	box-shadow: none !important;
}

.elementor-kit-4 #wyj-oh-problem-modal select.wyj-oh-input,
[class*="elementor-kit-"] #wyj-oh-problem-modal select.wyj-oh-input {
	padding-right: 40px !important;
	background-color: #f8fafc !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	background-size: 16px !important;
}

.elementor-kit-4 #wyj-oh-problem-modal .wyj-oh-input:focus,
[class*="elementor-kit-"] #wyj-oh-problem-modal .wyj-oh-input:focus {
	border-color: var(--wyj-oh-pink) !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 3px rgba(255, 95, 180, 0.22) !important;
}
