/* Lightweight replacement for the Popup Maker "Cenová ponuka po 10 s" popup - see
   assets/js/default.js (initQuotePopup) for the trigger/cookie logic. */
.egeo-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1999999999;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
}
.egeo-popup-overlay.is-visible {
	display: flex;
}
.egeo-popup-box {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 8px;
	padding: 2rem;
	box-sizing: border-box;
	animation: egeo-popup-fade 0.35s ease;
}
@keyframes egeo-popup-fade {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.egeo-popup-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 2rem;
	height: 2rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	color: #666;
}
.egeo-popup-close:hover {
	color: #000;
}
.egeo-popup-box h2 {
	margin-top: 0;
}

/* Basic Contact Form 7 field styling - CF7 ships with no layout CSS of its own (labels
   and inputs render inline by default), used both in the popup and on the wholesale page. */
.wpcf7-form p {
	margin: 0 0 1rem 0;
}
.wpcf7-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0.6em 0.8em;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	font: inherit;
}
.wpcf7-form textarea {
	min-height: 6em;
	resize: vertical;
}
.wpcf7-form input[type="submit"] {
	background: var(--black, #1a1a1a);
	color: #fff;
	border: 0;
	border-radius: 30px;
	padding: 0.8em 2em;
	font-weight: bold;
	cursor: pointer;
}
.wpcf7-form input[type="submit"]:hover {
	opacity: 0.9;
}
.wpcf7-form .wpcf7-not-valid-tip {
	color: #d63637;
	font-size: 0.85em;
	margin-top: 0.25em;
}
.wpcf7-form.sent .wpcf7-response-output {
	border-color: #46b450;
}
