/* VEXSTON SP. Z O.O. — site-specific overrides on top of the Thoo template */

.header .navigation-wrapper nav > .main-navigation .logo img {
	max-width: 100%;
	max-height: 55px;
	width: auto;
	object-fit: contain;
}

.header .book-appointment > a i {
	margin-right: 4px;
}

/* Mobile off-canvas menu panel (template default was a placeholder red) */
@media (max-width: 991px) {
	.header .navigation-wrapper nav > .main-navigation .main-menu {
		background: #2d3e52;
		padding: 70px 10px 20px;
	}
}

/* Subheader banner background (page title strip)
   The template's own .subheader has no `position`, so its absolutely
   positioned :before overlay expands to the viewport height instead of
   the banner's own height and dims the section below it. Contain it. */
.subheader {
	position: relative;
	overflow: hidden;
	background-image: url(https://images.pexels.com/photos/236705/pexels-photo-236705.jpeg?auto=compress&cs=tinysrgb&w=1920&h=400&fit=crop);
	background-size: cover;
	background-position: center;
}

/* Full-bleed photo section with a dark scrim so white text stays legible */
.section-photo-bg {
	position: relative;
	background-size: cover;
	background-position: center;
}
.section-photo-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(20, 32, 46, 0.78);
}
.section-photo-bg > .container {
	position: relative;
	z-index: 2;
}

/* Consistent image sizing helper */
.img-cover {
	width: 100%;
	object-fit: cover;
	display: block;
}

/* Service cards used as feedback triggers, not real links */
.services-small-item {
	cursor: pointer;
}

/* Photo-based offer cards (Services page) */
.offer-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}
.offer-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}
.offer-card .offer-img {
	position: relative;
	height: 220px;
	overflow: hidden;
}
.offer-card .offer-img img {
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
}
.offer-card:hover .offer-img img {
	transform: scale(1.06);
}
.offer-card .offer-icon {
	position: absolute;
	left: 14px;
	top: 14px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #ffb200;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border: 3px solid #ffffff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.offer-card .offer-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 34px 24px 24px;
}
.offer-card .offer-body h5 {
	color: #000000;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 12px;
}
.offer-card .offer-body p {
	color: #6F8BA4;
	font-size: 14px;
	line-height: 24px;
	flex: 1;
	margin-bottom: 18px;
}
.offer-card .offer-price {
	color: #2d3e52;
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 12px;
}
.offer-card .offer-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffb200;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Footer contact list */
.footer-contact li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}
.footer-contact li i {
	color: #ffb200;
	width: 20px;
	margin-right: 10px;
	margin-top: 4px;
}

/* Modal header on dark background */
.modal-header.bg-light-black .close {
	color: #ffffff;
	opacity: .9;
	text-shadow: none;
}
.modal-header.bg-light-black .close:hover {
	color: #ffb200;
	opacity: 1;
}

/* Feedback / contact form status message */
.form-status {
	min-height: 22px;
	font-size: 14px;
	font-weight: 600;
}
.form-status.is-ok {
	color: #2e7d32;
}
.form-status.is-err {
	color: #c62828;
}

/* Cookie consent bar */
.cookie-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -200px;
	z-index: 999;
	background: #2d3e52;
	color: #fff;
	padding: 18px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	transition: bottom 0.4s ease;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
.cookie-bar.is-visible {
	bottom: 0;
}
.cookie-bar p {
	margin: 0;
	max-width: 700px;
	text-align: center;
	font-size: 14px;
}
.cookie-bar a {
	color: #ffb200;
	text-decoration: underline;
}
.cookie-bar .btn-first {
	white-space: nowrap;
	padding: 10px 28px;
}

/* Cart toggle (header) */
.cart-toggle-item {
	display: flex;
	align-items: center;
	margin: 0 14px;
}
.cart-toggle-link {
	position: relative;
	display: inline-flex;
	color: #2d3e52;
	font-size: 20px;
}
.cart-toggle-link:hover {
	color: #ffb200;
}
.cart-toggle-link.bump {
	animation: cart-bump 0.5s ease;
}
@keyframes cart-bump {
	0% { transform: scale(1); }
	30% { transform: scale(1.35); color: #ffb200; }
	100% { transform: scale(1); }
}
.cart-toggle-link .cart-count {
	position: absolute;
	top: -9px;
	right: -11px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 10px;
	background: #ffb200;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}
@media (max-width: 991px) {
	.cart-toggle-item {
		margin: 10px;
		padding: 0;
	}
	.cart-toggle-link {
		display: block;
		padding: 10px 15px;
		background: #fff;
		border-radius: 0;
		color: #2d3e52;
	}
}

/* Cart modal */
.cart-line {
	padding: 14px 0;
	border-bottom: 1px solid #ededed;
}
.cart-line:first-child {
	padding-top: 0;
}
.cart-line-img {
	height: 60px;
	border-radius: 4px;
}
.cart-line-title {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	margin-bottom: 4px;
}
.btn-remove-cart-item {
	background: none;
	border: none;
	color: #838383;
	font-size: 16px;
	cursor: pointer;
	padding: 6px;
}
.btn-remove-cart-item:hover {
	color: #c62828;
}
.cart-qty-input {
	width: 60px;
	padding: 4px 8px;
	height: auto;
	text-align: center;
}
.checkout-summary {
	background: #fff;
	border-radius: 5px;
	padding: 24px;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.07);
}
.checkout-summary .cart-line:last-of-type {
	border-bottom: none;
}

/* Catalog page */
html {
	scroll-behavior: smooth;
}
.catalog-tab {
	display: inline-block;
	margin: 0 6px 12px;
	padding: 10px 26px;
	border: 2px solid #ffb200;
	border-radius: 30px;
	color: #2d3e52;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}
.catalog-tab:hover,
.catalog-tab:focus {
	background: #ffb200;
	color: #fff;
	text-decoration: none;
}
.catalog-category {
	scroll-margin-top: 110px;
	margin-bottom: 20px;
}
.catalog-category-title {
	color: #2d3e52;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 12px;
	border-bottom: 2px solid #ededed;
}

/* Privacy policy accordion spacing */
.custom-accordion .card {
	margin-bottom: 10px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
	.cookie-bar {
		justify-content: flex-start;
		text-align: left;
	}
	.cookie-bar p {
		text-align: left;
	}
}
