/* Name: New styles
Author: Bartosz Chomont
Date: 05.2025
Version: 1.0.0 */

/******************************

00 - ZMIENNE
01 - RESET & NORMALIZE
02 - OGÓLNE & GLOBALNE KLASY
03 - LAYOUT
04 - TYPOGRAFIA
05 - OBRAZKI & VIDEO
06 - KOMPONENTY (formularze, slidery, modale, swiper)
07 - MISC
08 - HEADER & FOOTER
09 - STRONA GŁÓWNA
10 - PODSTRONY

******************************/

/*----------------------------------------*/
/*  00 - ZMIENNE
/*----------------------------------------*/

:root {
	--color-primary: #E0B6AE;
	--color-secondary: #BB807C;
	--color-accent: #fff;
	--color-accent-light: #fff;
	--color-text: #D8D6D0;
	--color-text-dark: #0E151C;
	--bg-light: #2C2829;
	--bg-dark: #262324;

	--brand-gradient: linear-gradient(
		45deg,
		#BB807C 0%,
		#E0B6AE 50%,
		#BB807C 100%
	);

	--tbox-5: rgba(255,255,255,0.05);
	--tbox-10: rgba(255,255,255,0.10);

	--font-primary: 'Cinzel', Helvetica, Arial, sans-serif;
	--font-secondary: 'Josefin Sans', Helvetica, Arial, sans-serif;
	--font-extra: Inter, Helvetica, Arial, sans-serif; 

	--spacing-small: 8px;
	--spacing-s-m: 12px;
	--spacing-medium: 16px;
	--spacing-m-l: 24px;
	--spacing-large: 32px;

	--border-radius: 5px;
}

/*----------------------------------------*/
/*  01 - RESET & NORMALIZE
/*----------------------------------------*/

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	font-size: 14px;
	overflow-x: hidden;
}

body {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	overflow-x: hidden;
	color: #000;
	background: var(--bg-light);
}

/*----------------------------------------*/
/*  02 - OGÓLNE & GLOBALNE KLASY
/*----------------------------------------*/

body {
	color: var(--color-text);
	font-family: var(--font-secondary);
}

body .special-background {
	color: var(--color-text-dark);
	padding: 120px 64px;
}

a {
	color: var(--color-primary);
	text-decoration: underline;
	line-height: 1;
	transition: all 0.3s ease;
}

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

.primary-button {
	display: inline-block;
	padding: 16px 32px;
	border: 1px solid var(--color-secondary);
	border-radius: 50px;
	background: var(--color-secondary);
	color: var(--color-accent);
	font-family: var(--font-extra);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.primary-button:hover {
	background: var(--color-accent);
	border: 1px solid var(--color-accent);
	color: var(--color-secondary);
}

.secondary-button {
	display: inline-block;
	padding: 16px 32px;
	border: 1px solid var(--color-secondary);
	border-radius: 50px;
	background: transparent;
	color: var(--color-secondary);
	font-family: var(--font-extra);
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.secondary-button:hover {
	background: var(--color-secondary);
	color: var(--color-accent);
}

.subheader {
	font-family: var(--font-extra);
	font-weight: 500;
}

.black-button {
	display: inline-block;
	padding: 16px 32px;
	border: 1px solid #000;
	border-radius: 50px;
	background: #000;
	color: #fff;
	font-family: var(--font-extra);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.hero .primary-button {
	background: #fff;
	border-color: #fff;
	color: #000;
}

.hero .primary-button:hover {
	background: var(--color-primary);
	border-color: var(--brand-gradient);
}

.hero .secondary-button {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.hero .secondary-button:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.section-subtitle {
	display: inline-block;
	margin-bottom: 16px;
	font-family: var(--font-extra);
	font-size: 16px;
	color: var(--color-primary);
	font-weight: 500;
	text-transform: uppercase;
}

.section-title {
	display: inline-block;
	margin-bottom: 24px;
}

.section-intro {
	font-size: 18px;
	line-height: 1.5;
}

.layout-1-col .section-intro {
	display: inline-block;
	margin-bottom: 0;
	width: 100%; max-width: 700px; margin: 0 auto; text-align: center;
}

.layout-2-cols .section-intro {
	display: inline-block;
	margin-bottom: 32px;
}

.layout-3-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 60px;
}

.section-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.section-list li {
	margin-bottom: 0;
	font-size: 14px;
}

.c-white {
	color: #fff;
}

.c-black {
	color: #000;
}

.bg-white {
	background-color: #fff;
}

.bg-light {
	background-color: var(--bg-light);
}

.bg-gray {
	background-color: var(--bg-gray);
}

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

/* .bg-pattern {
background-image: url('');
background-size: cover;
} */

@media (max-width: 1100px) {
	.onlydesktop {
		display: none;
	}

	.layout-3-cols {
		flex-direction: column;
		gap: 48px;
	}

	.layout-1-col .section-intro {
		text-align: left;
	}
	
	.section-title {
		margin-bottom: 0;
	}
	
	body .special-background {
		padding: 60px 20px;
	}
	
	.primary-button, .secondary-button {
		width: 100%;
	}
}

@media (min-width: 1101px) {
	.onlymobile {
		display: none;
	}
	
	.img-form {
		aspect-ratio: 4/5;
	}
}



/*----------------------------------------*/
/*  03 - LAYOUT
/*----------------------------------------*/

section {
	position: relative;
	padding: 120px 64px;
}

section:nth-of-type(odd):not(.hero):not(.special-background):not(.page-header) {
	background: var(--bg-light);
}

section:nth-of-type(even):not(.special-background) {
	background: var(--bg-dark);
}

section.special-background {
	background: var(--brand-gradient);
}

.flex {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.grid.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 64px;
}

.grid.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.grid.grid-1-2 {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 64px;
}

.layout-1-col {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.layout-2-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 80px;
}

.layout-2-cols.reverse {
	flex-direction: row-reverse;
}

@media (max-width: 1100px) {
	
	section {
		padding: 60px 20px;
	}
	
	.flex:not(.mobile-header):not(.mobile-row) {
		flex-direction: column;
	}


	.flex-column.ai-center {
		align-items: flex-start;
	}

	.flex-column.txt-center {
		text-align: left;
	}

	.layout-1-col {
		gap: 48px;
	}

	.layout-2-cols {
		gap: 32px;
	}

	.layout-2-cols, .layout-2-cols.reverse {
		flex-direction: column;
	}

	.layout-2-cols.mobile-reverse, .layout-2-cols.reverse.mobile-reverse {
		flex-direction: column-reverse;
	}

	.mobile-reverse {
		flex-direction: column-reverse;
	}

	.grid.grid-2, .grid.grid-3, .grid.grid-1-2 {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.grid.grid-1-2 {
		gap: 24px;
	}
}

.f-nowrap {
	flex-wrap: nowrap;
}

.ai-center {
	align-items: center;
}

.ai-start {
	align-items: flex-start;
}

.jc-center {
	justify-content: center;
}

.jc-space-between {
	justify-content: space-between;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 12px;
	position: relative;
}

.gap-8 {
	gap: 8px;
}

.gap-16 {
	gap: 16px;
}

.gap-24 {
	gap: 24px;
}

.gap-32 {
	gap: 32px;
}

.gap-48 {
	gap: 48px;
}

.gap-64 {
	gap: 64px;
}

.gap-80 {
	gap: 80px;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

.col {
	flex: 1;
}

@media (min-width: 1101px) {
	.col-d-50 {
		width: 50%;
	}

	.col-d-33 {
		width: 33.33%;
	}

	.col-d-66 {
		width: 66.66%;
	}
}

@media (max-width: 1100px) {
	.col-m-100 {
		width: 100%;
	}
}

@media (min-width: 1101px) {

}

@media (max-width: 1100px) {
	.mobile-pt-0 {
		padding-top: 0;
	}
}

.txt-left {
	text-align: left;
}

.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}

/*----------------------------------------*/
/*  04 - TYPOGRAFIA
/*----------------------------------------*/

@font-face {
	font-family: "Font Name";
	src: url("../fonts/Font-Name-SemiBold.ttf") format("truetype");
	font-weight: 400; /* Dopasuj do stylu fonta */
	font-style: normal;
	font-display: swap;
}

p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 300;
}

p strong {
	font-weight: 600;
}

span {
	font-weight: 300;
}

ul li,
ol li {
	font-size: 18px;
	margin-bottom: 16px;
	line-height: 1.5;
	list-style-position: inside;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary), Helvetica, Arial, Lucida, sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
}

.special-background h1, .special-background h2, .special-background h3, .special-background h4, .special-background h5, .special-background h6 {
	color: #000;
}

h3, h4 {
	font-family: var(--font-primary), Helvetica, Arial, Lucida, sans-serif;
	font-weight: 400;
}

h1 {
	font-size: 72px;
	font-weight: 400;
	text-transform: uppercase;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {

}

h6 {

}

@media (max-width: 1100px) {
	h1 {
		font-size: 32px;
	}
	
	.hero h1 {
		font-size: 30px;
	}
	
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 12px;
	}
	h6 {
		font-size: 11px;
	}
}

.semi-bold {
	font-weight: 600;
}

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

/*----------------------------------------*/
/*  05 - OBRAZKI & VIDEO
/*----------------------------------------*/

img {
	width: 100%;
	height: auto;
	display: block;
}

.img-square {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center center;
	border-radius: 24px;
}

.img-3x2 {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	object-position: center center;
	border-radius: 20px;
}

.img-2x3 {
	width: 100%;
	height: auto;
	aspect-ratio: 2/3;
	object-fit: cover;
	object-position: center center;
	border-radius: 20px;
}

.img-1x2 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/2;
	object-fit: cover;
	object-position: center center;
}

.img-2x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	object-position: center center;
}

.img-1x3 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/3;
	object-fit: cover;
	object-position: center center;
}

.img-3x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 3/1;
	object-fit: cover;
	object-position: center center;
}

.img-1x4 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/4;
	object-fit: cover;
	object-position: center center;
}

.img-4x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 4/1;
	object-fit: cover;
	object-position: center center;
}

.img-16x9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: center center;
}

.img-9x16 {
	width: 100%;
	height: auto;
	aspect-ratio: 9/16;
	object-fit: cover;
	object-position: center center;
}

.video-container {
	flex: 1;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
}

.video-container iframe {
	width: 100%;
	height: 100%;
}

@media all and (max-width: 768px) {
	.img-square, .img-form {
		aspect-ratio: 4/3;
		border-radius: 10px;
		object-position: top;
	}
}


/*----------------------------------------*/
/*  06 - KOMPONENTY
/*----------------------------------------*/

@charset "UTF-8";
@font-face {
	font-family: 'ElegantIcons';
	src: url("fonts/ElegantIcons.eot");
	src: url("fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"), url("fonts/ElegantIcons.woff") format("woff"), url("fonts/ElegantIcons.ttf") format("truetype"), url("fonts/ElegantIcons.svg#ElegantIcons") format("svg");
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'ElegantIcons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wpcf7 input:not([type="checkbox"]), .wpcf7 textarea {
	width: 100%;
	line-height: 1;
	margin: 0;
	padding: 12px 16px;
	margin-bottom: 12px;
	border-radius: 8px;
	border: 0;
	font-family: var(--font-extra);
	font-size: 16px;
}

.wpcf7 input[type="submit"].wpcf7-submit {
	background: #000;
	color: #fff;
	border-radius: 50px;
	font-size: 20px;
	line-height: 1;
	padding: 16px 32px;
	font-family: var(--font-extra);
}

.formularz-mapka .wpcf7 input:not([type="checkbox"]):not([type="submit"]), .formularz-mapka .wpcf7 textarea {
	background: #EEEEEE;
	border: 1px solid #ddd;
	font-family: var(--font-extra);
}

.formularz-mapka .wpcf7-submit {
	background: var(--color-primary);
	color: #000;
	border-radius: 0;
	font-family: var(--font-secondary);
}

span[data-name="acceptance-137"] {
	display: block;
	margin-bottom: 24px;
	font-family: var(--font-secondary);
}

/*----------------------------------------*/
/*  07 - MISC
/*----------------------------------------*/

path.white {
	fill: #fff;
}

path.black {
	fill: #000;
}

path.gray {
	fill: #F0F1F1;
}


/*----------------------------------------*/
/*  08 - HEADER & FOOTER
/*----------------------------------------*/

.site-nav {
	background: #fff;
}

.header-top {
	padding: 12px 0;
	border-bottom: 1px solid #333;
}

.site-nav .logo-img {
	width: auto;
	height: 60px;
}

.site-nav li {
	margin-bottom: 0;
	font-family: var(--font-extra);
	text-transform: none;
	font-size: 16px;
}

.header-telefon, .header-lokalizacja, .header-godziny, header #primary-menu li a {
	color: var(--color-text);
	text-decoration: none;
	font-size: 16px;
}

.site-nav #primary-menu li ul li a {
	color: var(--color-secondary);
}

.header-telefon:hover, .header-lokalizacja:hover, header #primary-menu li a:hover {
	color: var(--color-primary);
}

#primary-menu {
	display: flex;
	list-style-type: none;
	gap: 64px;
}

.site-nav #primary-menu, .site-nav #primary-menu li {
	margin: 0;
	padding: 0;
	position: relative;
	list-style-type: none;
}

.site-nav #primary-menu li a {
	text-decoration: none;
}

.site-nav #primary-menu li ul {
	display: none;
	background: #fff;
	position: absolute;
	top: 20px;
	left: -20px;
	width: 250px;
	padding: 16px 32px;
	z-index: 20;
}

.site-nav #primary-menu li:hover ul {
	display: block;
}

.header-main-right {
	display: flex;
	align-items: center;
	gap: 32px;
}

.navbar-toggler,
.mobile-menu-bg,
.menu-wrap .close {
	display: none;
}

.site-nav i {
	color: var(--color-text);
	font-size: 20px;
}

@media (min-width: 1101px) {
	.mobile-menu, .hamburger {
		display: none;
	}
}

/* Mobilna wersja */
@media (max-width: 1100px) {
	.header-top {
		display: none;
	}

	.desktop-menu {
		display: none;
	}

	.mobile-menu {
		display: block;
	}
}

@media (max-width: 768px) {
	header .logo-img {
		height: 32px;
		width: auto;
	}

	.header-button { display: none; }

	.mobile-menu__header span {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	header .logo-img {
		height: 32px;
		width: auto;
	}
}

footer {
	background: var(--bg-dark);
	color: var(--color-text);
}

footer a {
	color: var(--color-text);
	text-decoration: none;
	font-family: var(--font-extra);
}

footer span {
	font-family: var(--font-extra);
}

.footer-top {
	padding: 36px 0;
	border-bottom: 1px solid #434343;
	border-top: 1px solid #434343;
	font-size: 14px;
}

.footer-top .flex-column {
	gap: 8px;
}

.footer-top a {
	color: var(--color-primary);
}

.footer-widget-area {
	padding: 36px 0;
	border-bottom: 1px solid #434343;
}

.footer-bottom {
	padding-top: 36px;
}

.footer-widget-area ul li {
	margin-bottom: 12px;
	font-size: 14px;
}

@media (max-width: 1100px) {
	.footer-top .flex {
		gap: 12px;
	}

	.footer-top .flex img {
		margin-bottom: 12px;
	}

	.footer-middle {
		margin-top: 24px;
	}

	.footer-copyright-text-area {
		flex-direction: column-reverse;
		gap: 16px;
	}
}

/* HOME: Hero section */

.hero {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	text-align: left;
	background-image: url('https://banczyk.marketize.com.pl/wp-content/uploads/2026/07/hero-v2.jpg');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: var(--bg-dark);
	width: 100%;
	height: 90vh;
	position: relative;
	padding: 0;
}

.hero h1, .hero p, .hero span {
	color: #fff;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 32px;
}

.hero-content span {
	font-size: 24px;
	max-width: 550px;
	line-height: 1.2;
}

.hero .subheader {
	background-image: var(--brand-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent; 
}

.hero-stars {
	display: flex;
	gap: 12px;
}

.stars-rating .fas {
	color: var(--color-accent);
}

.hero-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.fa-star {
		color: var(--color-primary);
	}

.site-nav i.fa-caret-down {
font-size: 12px;
margin-left: 8px;
}

@media all and (max-width: 768px) {
	.hero {
		background-image: url('https://banczyk.marketize.com.pl/wp-content/uploads/2026/02/banczyk-hero.png');
		height: auto;
		padding: 70px 0 0 0;
	}

	.hero-stars {
		order: 1;
	}

	.hero-buttons {
		order: 2;
		width: 100%;
		max-width: 420px;
		grid-template-columns: repeat(1, 1fr);
	}

	.hero-buttons, .hero-stars {
		flex-direction: column;
	}
	
	.hero-content span {
		font-size: 20px;
	}
	
	.hero-container {
	margin-top: 200px;
	}
	
}


/** HOME POZOSTAŁĘ **/

@media (max-width: 1100px) {
	.wyrozniki-kolumny {
		gap: 32px;
		align-items: center;
	}

	.wyroznik {
		width: 100%;
	}
	
	.trzy-sciezki .img-square {
		display: none;
	}
	
	.layout-2-cols .col > *:last-child {
		margin-bottom: 0;
	}
}


/************** 10: PODSTRONY *************************/

/* All */

.page-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: auto;
	padding: 120px 64px;
	aspect-ratio: 3.2/1;
	position: relative;
}

.page-header:not(.efekty)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(73, 54, 40, 0.4);
}

.page-header-content {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-header .intro {
	color: #fff;
	line-height: 1.5;
}

.layout-2-cols .section-content {
	margin-bottom: 16px;
}

.section-introx p {
	margin-bottom: 16px;
}

.layout-2-cols .section-content p {
	margin-bottom: 16px;
}

/* Usługi */

.three-icons .layout-2-cols {
	gap: 48px;
}

.three-icons img {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.three-icons i {
	font-size: 48px;
	margin-bottom: 24px;
}

.three-icons h3 {
	margin-bottom: 24px;
}

.flex.metamorfozy {
	gap: 32px;
}

.faq-container {
	display: flex;
	flex-direction: column;

}

.faq-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-question {
	font-weight: 600;
	font-size: 20px;
}

.faq-answer {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
}

.faq-answer p {
	margin-bottom: 16px;
}

.section-two-cols h2 {
	margin-bottom: 32px;
}

.section-two-cols h3, .section-two-cols h4 {
	margin-bottom: 16px;
}

.content {
	text-align: center;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	/* padding: 60px 0; */
}

/* .content:last-of-type {
padding-bottom: 120px;
} */

.content h2 {
	margin-bottom: 24px;
}

.featured .col-d-66:has(:only-child) .section-intro {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.single-services section:not(.page-header) {
		padding: 32px 0;
	}

	.content {
		padding: 40px 12px;
		text-align: left;
	}
	
	.page-header {
		padding: 60px 20px;
	}
}

/* Kontakt */

.kontakt-ikonki .layout-2-cols {
	gap: 48px;
}

.kontakt-ikonki img {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.kontakt-ikonki h4 {
	margin-bottom: 12px;
}

.kontakt-ikonki p {
	margin-bottom: 24px;
}

@media (max-width: 1100px) {
	.formularz-mapka .layout-2-cols {
		gap: 24px;
	}

	.formularz-mapka .col {
		width: 100%;
	}
}

/* Opinie */

.opinie-cols {
	display: flex;
	gap: 32px;
}

/* Zespół */

.lekarz .pozycja {
	width: 100%;
	display: inline-block; 
	margin-bottom: 16px;
	font-size: 16px;
	color: var(--color-primary);
	text-transform: uppercase;
	font-weight: 600;
}

.lekarz-description {
	max-width: 520px;
	margin-bottom: 24px;
	font-size: 16px;
	font-weight: 300;
}

.lekarz-przyciski {
	display: flex;
	gap: 12px;
}

.lekarz-right-col {
	gap: 32px;
}

@media (max-width: 1100px) {
	.lekarz-content.flex-column.ai-center {
		text-align: center;
	}

	.lekarz-title {
		align-self: flex-start;
	}

	.lekarz-przyciski {
		flex-direction: column;
		width: 100%;
	}

	.lekarz-przyciski a {
		width: 100%:
	}
}

@media (min-width: 1100px) {
	.lekarz img {
		width: 190px;
		height: 200px;
	}

	.lekarz-right-col {
		max-width: 380px;
	}
}

/* Profil lekarza */

.profil-lekarza .container.flex {
	gap: 80px;
}

.profil-lekarza h1 {
	font-size: 48px;
	margin-bottom: 16px;
}

.profil-lekarza p {
	margin-bottom: 16px;
}

.profil-lekarza .spec {
	margin-bottom: 32px;
}

.profil-lekarza .spec-title {
	font-weight: 600;
	text-transform: uppercase;
}

.profil-lekarza .spec-content, .profil-lekarza .lekarz-subtitle {
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-primary);
}

.certyfikaty .gallery-grid-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	list-style-type: none;
}

.certyfikaty .gallery-grid-list img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
}

.certyfikaty .flex-column {
	gap: 64px;
}

@media (max-width: 1100px) {
	.certyfikaty .gallery-grid-list {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}

	.profil-lekarza h1 {
		font-size: 32px;
	}
}

/* Cennik */

.cennik .container.flex {
	gap: 80px;
}

.pricelist-item-title {
	margin-bottom: 16px;
}

.pricelist-item-content {
	margin-bottom: 24px;
}

.pricelist-item {
	margin-bottom: 48px;
}

.pricelist-item table {
	margin-bottom: 0;
	border: 0;
	border-spacing: 0;
}

.pricelist-item table th {
	text-align: left;
	padding: 10px;
	font-weight: 300;
}

.pricelist-item table td {
	text-align: right;
	padding: 10px;
}

.pricelist-table tr:nth-child(odd) {
	background-color: rgba(255,255,255,0.1);
}

.pricelist-table tr:nth-child(even) {
	background-color: rgba(255,255,255,0.05);
}

.cennik ul, .cennik li {
	list-style-type: none;
}

.cennik ul li:not(:last-of-type) {
	padding-bottom: 16px;
	border-bottom: 1px solid #434343;
	margin-bottom: 16px;
}

.pricelist-nav__item a {
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pricelist-nav__item a:hover {
	color: var(--color-primary);
}

@media (max-width: 1100px) {
	.pricelist-nav {
		display: none;
	}
}

/* Efekty leczenia */

.metamorfozy .flex-column {
	gap: 32px;
}

.layout-1-col .metamorfozy-intro {
	margin: 0;
	text-align: start;
}



/* Historie leczenia */

.hl-second-title {
	color: #fff; text-align: center; margin-top: 48px; margin-bottom: 32px;
}

@media (max-width: 1100px) {
	.hl-second-title {
		margin-top: 32px;
		margin-bottom: 24px;
		text-align: left;
	}
}

/* Sekcja formularz CTA */

#formularz .wpcf7-acceptance a, .wpcf7-list-item-label {
	color: #000;
}

#formularz h2 {
	margin-bottom: 16px;
}

span[data-name="acceptance-137"] .wpcf7-list-item {
	margin: 0;
	margin-left: 4px;
	font-size: 14px;
}

@media (max-width: 1100px) {
	#formularz .layout-2-cols {
		flex-direction: column-reverse;
		gap: 32px;
	}

	#formularz .img-form {
		object-position: 0 20%;
	}

	#formularz .col {
		gap: 32px;
	}

	span[data-name="acceptance-137"] {
		margin-bottom: 16px;
	}

}

/* Blog */

.single-post .article {
	padding-top: 80px;
	padding-bottom: 80px;
}

.blog-container {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 0 16px;
	position: relative;
}

.blog-container.thumbnail-area {
	max-width: 980px;
}

@media (min-width: 980px) {
	.blog-container.content-area img {
		width: calc(100vw - 32px); /* 32px = suma paddingów rodzica */
		max-width: 948px;
		display: block;
		margin-left: -100px;
	}
}

.single-post h1 {
	text-align: center;
	display: block;
	margin-bottom: 8px;
}

.single-post .title-area {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.single-post ul.post-categories {
	list-style-type: none;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.single-post ul.post-categories li {
	background: rgba(187,127,124,0.05);
	line-height: 1.5;
	padding: 8px 16px;
	display: inline-block;
	margin-bottom: 0;
	color: var(--color-secondary);
	font-family: var(--font-extra);
	font-size: 14px;
}

.single-post .post-date {
	font-size: 14px;
	color: var(--color-secondary);
	font-family: var(--font-extra);
}

.single-post .post-subtitle {
	color: #888888;
	display: block;
	margin-bottom: 24px;
}

.single-post .thumbnail-area img {
	margin: 64px 0;
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	object-position: center center;
	border-radius: 20px;
}

.single-post .content-area p {
	margin-bottom: 24px;
}

.single-post .content-area p.intro {
	font-size: 18px;
	font-weight: 600;
}

.single-post .author {
	display: flex;
	gap: 24px;
	align-items: center;
}

.single-post .author-name {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.author-img {
	width: 64px;
	height: 64px;
}

@media (max-width: 768px) {
	.single-post article {
		padding-bottom: 60px;
	}
}


/************** ??????????????????? ******************/

.w-100 {
	width: 100%;
}

.v2-kontener {
	width: 100%;
	padding: 112px 64px;
	display: flex;
	align-items: center;
	gap: 80px;
}

.v2-row {
	width: 100%;
	display: flex;
}

.v2-kontener.layout-one-col {
	flex-direction: column;
}

.v2-kontener.layout-two-cols {
	flex-direction: row;
}

.v2-kontener.layout-two-cols .v2-column {
	flex: 1 0 0;
}

.layout-two-cols {
	display: flex; gap: 80px;
	align-items: center;
}

.layout-two-cols .v2-column {
	flex: 1;
}

.v2-column-img {
	border-radius: 10px;
}

.v2-column-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	gap: 48px;
}

.v2-column-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	gap: 48px;
}

.v2-section-title-wrapper {
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.v2-content-wrapper {
	width: 100%;
}

.v2-kontener.layout-one-col .v2-section-title-wrapper {
	text-align: center;
}

.flex-3x {
	flex-wrap: wrap;
	gap: 48px;
}

.flex-3x .v2-column {
	width: calc((100% - 96px) / 3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flex-2x {
	flex-wrap: wrap;
	gap: 80px;
}

.flex-2x .v2-column, .flex-2x .column {
	width: calc((100% - 80px) / 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.v2-section-subtitle {
	font-family: var(--font-extra);
	font-size: 18px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
	color: #888;
}

.v2-section-title {
	font-family: "Black Mango";
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
}

h1.v2-section-title {
	font-size: 72px;
}

.v2-section-caption {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
}

.video-container {
	flex: 1;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
}

.video-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
}

@media all and (max-width: 768px) {
	.v2-kontener {
		padding: 60px 20px;
		gap: 40px;
	}

	.v2-section-title {
		font-size: 24px;
		text-align: center;
	}

	h3 {
		font-size: 20px;
	}

	.v2-section-subtitle, .v2-section-caption {
		text-align: center;
	}

	h1.v2-section-title {
		font-size: 32px;
	}

	.flex-2x {
		flex-direction: column;
		gap: 20px;
	}

	.flex-2x-column, .flex-2x .v2-column {
		width: 100%;
	}

	.v2-kontener.layout-two-cols {
		flex-direction: column;
	}
}