:root {
	--primary-color: #99cc00;
	--secondary-color: #f0f2f5;
	--text-color: #333;
	--error-color: #5f1111;
}

body {
	font-family: 'Open Sans', sans-serif;
	background-color: var(--secondary-color);
	color: var(--text-color);
}

section {
	padding: 60px 0;
}

/* ==== FIX: Zmniejszenie przerw między sekcjami boksy ==== */
#boxes_container>div,
#parks_container>div {
	margin-bottom: 30px !important;
	/* Zamiast domyślnego 60px */
}

#boxes_container>div:last-child,
#parks_container>div:last-child {
	margin-bottom: 0 !important;
}

/* ========================================================== */

.orange-color {
	color: var(--primary-color);
}

.underline {
	background-color: var(--primary-color);
	margin: 0 auto 40px;
	width: 60px;
	height: 4px;
}

.btn-success {
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
}

.btn-danger {
	background-color: var(--error-color) !important;
	border-color: var(--error-color) !important;
}

.prices .price-box h3 {
	color: var(--primary-color);
}

.team h2 {
	color: var(--primary-color);
}

.contact h2 {
	color: var(--primary-color);
}

.contact .underline {
	background-color: var(--primary-color);
}

[data-aos] {
	opacity: 0;
	transition-property: opacity, transform;
}

[data-aos][data-aos-easing="ease-in-out-cubic"] {
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-aos].aos-animate {
	opacity: 1;
	transform: none;
}

.u-blowUpImg:hover {
	cursor: zoom-in;
}

.box-checkbox {
	display: inline-block;
	cursor: pointer;
}

.box-checkbox-input {
	display: none;
}

.box-checkbox-custom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid #aaa;
	border-radius: 8px;
	background: #f9f9f9;
	transition: background 0.2s, border-color 0.2s;
	font-size: 2rem;
	color: #888;
}

@media (hover: hover) and (pointer: fine) {

	.box-checkbox-input:not(:checked):hover+.box-checkbox-custom,
	.box-checkbox-input:not(:checked):focus+.box-checkbox-custom {
		background: #e8f5e9;
		border-color: var(--primary-color);
		color: var(--primary-color);
	}
}

.box-checkbox-input:checked+.box-checkbox-custom {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
	transition: background 0.2s, border-color 0.2s;
}

#reserve-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background-color: #95a5a6 !important;
	border-color: #95a5a6 !important;
	box-shadow: none;
}

.reserve-btn-fixed {
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
}

.reserve-btn-fixed:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.reserve-btn-fixed#reserve-btn {
	background: linear-gradient(135deg, var(--primary-color) 0%, #8ab800 100%);
}

.reserve-btn-fixed#extend-btn {
	background: #fff;
	color: #333;
	border: 2px solid #ddd;
}

.reserve-btn-fixed#extend-btn:hover {
	background: #f8f9fa;
	border-color: #ccc;
}

.button-row {
	position: sticky;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	gap: 15px;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

/* ==== NOWY STYL FORMULARZA REZERWACJI ==== */
#reservationModal .modal-dialog {
	max-width: 700px;
}

#reservationModal .modal-body {
	max-height: 75vh;
	overflow-y: auto;
	padding: 20px 25px;
}

#reservationModal h6 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	margin-top: 8px;
	padding-bottom: 5px;
	border-bottom: 2px solid var(--primary-color);
}

#reservationModal .mb-3 {
	margin-bottom: 1rem !important;
}

#reservationModal .form-label {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #555;
}

#reservationModal .form-control {
	font-size: 0.95rem;
	padding: 8px 12px;
	border-radius: 5px;
	border: 1px solid #ddd;
	transition: border-color 0.2s;
}

#reservationModal .form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(153, 204, 0, 0.25);
}

#reservationModal .alert-info {
	padding: 10px 15px;
	font-size: 0.95rem;
	background-color: #e7f3ff;
	border: 1px solid #b3d9ff;
	margin-bottom: 15px;
}

#reservationModal hr {
	margin: 15px 0;
	border-top: 1px solid #e0e0e0;
}

#reservationModal .btn-group {
	width: 100%;
	margin-bottom: 15px;
}

#reservationModal .btn-group .btn {
	flex: 1;
	font-size: 0.95rem;
	padding: 10px;
}

#reservationModal #selected-boxes-list {
	max-height: 100px;
	overflow-y: auto;
}

#reservationModal #price-breakdown-container {
	max-height: 200px;
	overflow-y: auto;
	background-color: #f9f9f9;
	padding: 10px;
	border-radius: 5px;
}

#reservationModal .fs-5 {
	font-size: 1.15rem !important;
}

#reservationModal .text-success {
	color: var(--primary-color) !important;
}

/* Kompaktowe row dla adresu */
#reservationModal .row .col-md-8,
#reservationModal .row .col-md-4,
#reservationModal .row .col-md-6 {
	padding-left: 5px;
	padding-right: 5px;
}

/* Styl dla małego tekstu pomocniczego */
#reservationModal small.text-muted {
	font-size: 0.8rem;
	color: #888;
}

/* Responsywność */
@media (max-width: 768px) {
	#reservationModal .modal-dialog {
		max-width: 95%;
		margin: 10px auto;
	}

	#reservationModal .modal-body {
		padding: 15px;
		max-height: 70vh;
	}
}

/* ========================================== */

.invoice-type-switch {
	display: flex;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
}

.invoice-type-switch-option {
	flex: 1;
	text-align: center;
	padding: 10px;
	cursor: pointer;
	background-color: #f0f0f0;
	color: #333;
	transition: background-color 0.3s, color 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;

}

.invoice-type-switch-option.active {
	background-color: #6c757d;
	color: white;
	font-weight: bold;
}

.invoice-type-switch-option:first-child:not(.active) {
	border-right: 1px solid #dee2e6;
}

.gallery-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	cursor: pointer;
	background-color: transparent;
	height: auto;
}

.gallery-preview {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-preview-image {
	width: 100%;
	height: 300px;
	object-fit: scale-down;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.gallery-text {
	color: white;
	font-size: 24px;
	font-weight: bold;
	padding: 12px 24px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	text-align: center;
}

.gallery-preview:hover .gallery-preview-image {
	transform: scale(1.05);
}

#dynamic-gallery-demo {
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 5px;
}

.fa-circle.zielona,
.fa-car-side.zielona,
.fa-motorcycle.zielona,
.fa-bicycle.zielona,
i[class*="fa-"].zielona {
	color: var(--primary-color) !important;
}

.fa-circle.czerwona,
.fa-car-side.czerwona,
.fa-motorcycle.czerwona,
.fa-bicycle.czerwona,
i[class*="fa-"].czerwona {
	color: var(--error-color) !important;
}

tr.wolny {
	background-color: var(--primary-color) !important;
	border-left: 3px solid var(--primary-color) !important;
}

tr.zajety {
	background-color: var(--error-color) !important;
	border-left: 3px solid var(--error-color) !important;
}

.dostepny {
	color: black !important;
	background-color: var(--primary-color) !important;
	display: block !important;
	width: 100% !important;
	padding: 5px !important;
	text-align: center !important;
	font-weight: bold !important;
}

.wynajety {
	color: white !important;
	background-color: var(--error-color) !important;
	display: block !important;
	width: 100% !important;
	padding: 5px !important;
	text-align: center !important;
	font-weight: bold !important;
}

.color-table-ramka {
	color: white;
	border: 2px;
	border-style: solid;
	border-color: var(--primary-color);
	border-radius: 10px;
}

.color-text-table {
	color: white;
}

.bounce-top {
	display: block;
	-webkit-animation: bounce-top 2s infinite both;
	animation: bounce-top 2s infinite both;
}

.btn-success {
	--bs-btn-bg: var(--primary-color) !important;
	--bs-btn-border-color: var(--primary-color) !important;
	--bs-btn-hover-bg: #8ab800 !important;
	--bs-btn-hover-border-color: #85b200 !important;
	--bs-btn-active-bg: #85b200 !important;
	--bs-btn-active-border-color: #80ab00 !important;
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
}

.btn-danger {
	background-color: var(--error-color) !important;
	border-color: var(--error-color) !important;
}

tr.wolny {
	background-color: var(--primary-color) !important;
	border-left: 3px solid var(--primary-color) !important;
}

tr.zajety {
	background-color: var(--error-color) !important;
	border-left: 3px solid var(--error-color) !important;
}

.dostepny {
	color: black !important;
	background-color: var(--primary-color) !important;
	display: block !important;
	width: 100% !important;
	padding: 5px !important;
	text-align: center !important;
	font-weight: bold !important;
}

.wynajety {
	color: white !important;
	background-color: var(--error-color) !important;
	display: block !important;
	width: 100% !important;
	padding: 5px !important;
	text-align: center !important;
	font-weight: bold !important;
}

.fa-circle.zielona,
.fa-car-side.zielona,
.fa-motorcycle.zielona,
.fa-bicycle.zielona,
i[class*="fa-"].zielona {
	color: var(--primary-color) !important;
}

.fa-circle.czerwona,
.fa-car-side.czerwona,
.fa-motorcycle.czerwona,
.fa-bicycle.czerwona,
i[class*="fa-"].czerwona {
	color: var(--error-color) !important;
}

@-webkit-keyframes bounce-top {
	0% {
		-webkit-transform: translateX(-50%) translateY(-45px);
		transform: translateX(-50%) translateY(-45px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 1;
	}

	24% {
		opacity: 1;
	}

	40% {
		-webkit-transform: translateX(-50%) translateY(-24px);
		transform: translateX(-50%) translateY(-24px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	65% {
		-webkit-transform: translateX(-50%) translateY(-12px);
		transform: translateX(-50%) translateY(-12px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	25%,
	55%,
	75%,
	87% {
		-webkit-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes bounce-top {
	0% {
		-webkit-transform: translateX(-50%) translateY(-45px);
		transform: translateX(-50%) translateY(-45px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 1;
	}

	24% {
		opacity: 1;
	}

	40% {
		-webkit-transform: translateX(-50%) translateY(-24px);
		transform: translateX(-50%) translateY(-24px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	65% {
		-webkit-transform: translateX(-50%) translateY(-12px);
		transform: translateX(-50%) translateY(-12px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	25%,
	55%,
	75%,
	87% {
		-webkit-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-padding-top: 101px;
}

h2 {
	text-align: center;
}

.free {
	color: white;
}

.footer {
	text-decoration: none;
}

.cursor-pointer {
	cursor: pointer;
}

.red {
	background-color: red;
}

.btn {
	font-size: 24px;
}

.text-muted {
	font-size: 10px;
}

.contact h3 {
	font-size: 2rem;
	font-weight: bold;
	text-transform: uppercase;
}

.a {
	font-size: 28px;
}

.checkbox {
	padding: 5px 5px 5px 5px;
}

.hide {
	display: none;
}

.contact .submit-btn {
	width: 100%;
	padding: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
	background-color: var(--primary-color);
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.contact .submit-btn:hover:not(:disabled) {
	background-color: #8ab800;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact .submit-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	opacity: 0.7;
}

/* Nowy styl checkboxa RODO */
.privacy-container {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-checkbox {
	width: 20px;
	height: 20px;
	margin-top: 3px;
	cursor: pointer;
}

.privacy-label {
	font-size: 0.85rem;
	color: #ddd;
	line-height: 1.5;
	cursor: pointer;
}

.privacy-label a {
	color: var(--primary-color);
	text-decoration: underline;
}

.privacy-label a:hover {
	color: #fff;
}

.blue-text {
	color: var(--primary-color);
}

.shadow-bg {
	background-color: rgba(0, 0, 0, 0.8);
}

nav {
	text-transform: uppercase;
	-webkit-transition: background-color 0.6s;
	transition: background-color 0.6s;
	z-index: 1;
}


nav .navbar-nav a {
	color: #fff;
}

nav i {
	color: #fff;
}

nav .navbar-nav a:hover {
	color: var(--primary-color);
}

nav .fa-bars {
	padding: 10px;
}

nav .navbar-brand {
	font-weight: bold;
	color: #fff;
}

nav .active {
	color: var(--primary-color) !important;
}

header {
	color: #fff;
}

header h1 {
	text-transform: uppercase;
	font-size: 30px;
}

header p {
	font-size: 14px;
}

header .hero-img {
	position: relative;
	height: 100vh;
	background-image: url('../img/tlo/first_mini.jpg');
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	z-index: 0;
}

header .hero-shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -10;
}

header .hero-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	padding: 10px;
	text-align: center;
	z-index: 5;
}

header .btn-outline-light {
	text-transform: uppercase;
}

header .fa-chevron-down {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	font-size: 30px;
	color: #000;
	z-index: 1000;
}

header {
	position: relative;
	background-color: #fff;
}



.aboutus i {
	margin-top: 20px;
	font-size: 30px;
}

.aboutus .aboutus-card-title {
	font-size: 18px;

}

.aboutus .aboutus-card-text {
	font-size: 14px;
}

.aboutus .aboutus-hover:hover {
	color: var(--primary-color);
}

.aboutus-hero {
	position: relative;
	background-image: url('../img/tlo/3kroki.jpg');
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: #ddd;
	z-index: 0;
}

.aboutus-hero i {
	margin-top: 20px;
	font-size: 30px;
}

.aboutus-hero .aboutus-shadow {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: -5;
}

.aboutus-hero .aboutus-hero-item {
	margin: 10px 0;
}

.aboutus-hero i {
	font-size: 36px;
}

.aboutus-hero .aboutus-hero-title {
	font-size: 24px;
}

.portfolio .carousel-item {
	position: relative;
	height: 800px;
	padding-left: 80px;
	padding-right: 80px;
	padding-bottom: 0px;
}

.portfolio .carousel-caption {
	position: absolute;
	left: 80px;
	right: 80px;
	padding: 40px 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.portfolio .carousel-indicators {
	padding-bottom: 20px;
}

.chevpadding {
	padding: 40px;
}

.prices .price-box {
	color: white;
	margin: 20px 10px;
	padding: 30px;
	background-color: #fff;
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.prices2 {
	position: relative;
	background-color: #434447;
	background-position: bottom;
	background-attachment: fixed;
	background-size: cover;
	z-index: 0;
	padding-bottom: 150px !important;
	/* Zwiększone, aby kafelki nie wylatywały poza sekcję */
}

.color-text-p-prices {
	color: white;
}

.table-dark {
	background-color: #434447;
}

.p-contact {
	padding: 35px;
	color: white;
	width: 50vh;
}

.flex {
	display: flex;
}

.padding {
	padding: 40px 0 0 0;
}

.iframe {
	padding: 40px 0 0 0px;

}

.color-a {
	color: white;
}

.color-table {
	color: white;
	text-decoration: none;
}

.color-table:hover {
	color: white;
}

.tdclass {
	text-align: center;
}

.prices .price-box span {
	font-weight: bold;
}

.prices .price-box i {
	padding: 0 5px;
	font-size: 24px;
}

.prices .price-box button {
	padding: 10px 20px;
	text-transform: uppercase;
}

.prices .price-box .price-tag {
	font-size: 30px;
	font-weight: bold;
}

.prices .price-box:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.prices .price-info {
	margin-top: 30px;
	font-size: 30px;
}

.prices .price-info a {
	text-decoration: none;
}

.font-size-24 {
	font-size: 24px;
}

.font-size-52px {
	font-size: 48px;
}

.font-size-40px {
	font-size: 40px;
}

.font-size-48px {
	font-size: 48px;
}

.font-size-30px {
	font-size: 30px;
}

.font-size-14px {
	font-size: 14px;
}

.font-size-20px {
	font-size: 20px;
}

.container img {
	height: 60px;
}

.team {
	position: relative;
	background-image: url('../img/boks_section.jpg');
	background-size: cover;
	background-attachment: fixed;
	z-index: 0;
}

.team .team-shadow {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -5;
}

.team .card {
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	height: 200px;
}

.team .card img {
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
}

.team .card i {
	padding: 10px;
}

.team .card-title {
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
}

.achievements i {
	padding: 10px;
	font-size: 48px;
	color: #fff;
	text-shadow: 0 0 5px #000;
}

.achievements .achievements-list {
	padding: 20px 0;
}

.achievements .achievement-number {
	font-size: 22px;
}

.achievements .achievement-text {
	font-size: 13px;
	text-transform: uppercase;
}

.contact {
	position: relative;
	background-color: #434447;
	background-position: bottom;
	background-attachment: fixed;
	background-size: cover;
	z-index: 0;
}

.contact .contact-shadow {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 9, 27, 0.85);
	z-index: -5;
}

.contact .contact-us {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
}

.contact .contact-us .contact-item {
	margin: 30px 0;
}

.contact .contact-us .contact-item h3 {
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.contact .contact-us .contact-item p {
	font-size: 20px;
}

.contact .contact-us .contact-item .social-media {
	font-size: 26px;
}

.contact .contact-us .contact-item .social-media a {
	padding: 10px;
	color: #fff;
}

.contact .contact-us .contact-item a:hover {
	color: #ddd;
}

.gallery {
	display: flex;
	align-items: center;
	justify-content: center;
}

.color-table-ramka {
	color: white;
	border: 2px;
	border-style: solid;
	border-color: var(--primary-color);
	border-radius: 10px;
}


.color-text-table {
	color: white;
}



.form {
	padding: 15px 0 0 0;
}

.bi {
	color: white;
	font-size: 16px;
}

.display-column {
	display: column;
}

.testcontact {
	display: wrap;
}

.testcontactmobile {
	display: wrap;
}



.active {
	color: var(--primary-color) !important;
}



@media (max-width: 576px) {
	.table a {
		font-size: 12px;
	}

	.off {
		display: none;
	}

	.font-size-48px {
		font-size: 30px;
	}

	.font-size-40px {
		font-size: 20px;
	}

	.table {
		font-size: 14px;
	}

}

@media (min-width: 577px) {
	.gallery-off {
		display: none;
	}

	.iframe {
		width: 600px;
		height: 300px;
	}

	.offe {
		display: none;
	}
}

/* --- Styl dla oddzielonych wierszy tabeli --- */

/* Ustawienie tabeli na tryb oddzielnych krawędzi i dodanie odstępów pionowych */
.table_in_box {
	border-collapse: separate;
	/* Kluczowe dla działania border-spacing */
	border-spacing: 0 0.5rem;
	/* 0 dla odstępów poziomych, 0.5rem dla pionowych */
	width: 100%;
}

/* Usunięcie domyślnych linii, które mogą przeszkadzać */
.table_in_box th,
.table_in_box td {
	border: none;
}

/* Stylizacja komórek, aby tworzyły tło dla wiersza */
.table_in_box td,
.table_in_box th {
	background-color: #555;
	/* Ciemniejsze tło dla komórek */
	padding: 0.75rem;
	vertical-align: middle;
	/* Lepsze wyrównanie w pionie */
	color: white;
	/* Ustawienie koloru tekstu na biały */
}

/* Zaokrąglenie rogów dla pierwszej i ostatniej komórki w każdym wierszu */
.table_in_box tr td:first-child,
.table_in_box tr th:first-child {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.table_in_box tr td:last-child,
.table_in_box tr th:last-child {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* Dodatkowe style dla nagłówka dla lepszego kontrastu */
.table_in_box th {
	background-color: #555;
	/* Ciemne tło także dla nagłówków */
	color: white;
	/* Biały tekst dla nagłówków */
	font-weight: 600;
}

/* --- FIX PRZYCISKÓW (MASTER4) --- */

/* Naprawa kontenera ceny, żeby był równy */
.prices .price-box {
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	min-height: auto !important;
	height: 100% !important;
	padding-bottom: 30px !important;
}

/* Stylizacja przycisku ZAMÓW */
.prices .price-box button.box_order_button,
.prices .price-box button.btn-primary {
	display: block !important;
	width: 80% !important;
	margin: auto auto 0 auto !important;
	/* Wyśrodkowanie i spychanie na dół */
	padding: 12px 0 !important;

	background-color: #3498db !important;
	/* Niebieski */
	color: white !important;
	border: none !important;
	border-radius: 5px !important;

	font-size: 18px !important;
	font-weight: bold !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;

	opacity: 1 !important;
	visibility: visible !important;
}

.prices .price-box button:hover {
	background-color: #2980b9 !important;
	transform: scale(1.05);
}

/* Naprawa tekstów w boxie cenowym */
.prices .price-box h3 {
	margin-top: 5px !important;
	margin-bottom: 10px !important;
	font-size: 32px !important;
}

.prices .price-box p {
	margin-bottom: 2px !important;
}