/*
Theme Name: adwokat
Author: Hashfive Łukasz Widz
Author URI: https://hashfive.dev

*/

* { border: none; margin: 0px; padding: 0px;  }

:root {
  --black: #000;
  --white: #fff;
  --greyDark: #333;
  --greyLight: #666;
  --green: #478675;
  --greenLight: #E9F6F0;
  --brickred: #C55339;
  --blue: #4275C5;
}

/* Globalne płynne przewijanie dla nawigacji po kotwicach i programowych scrolli */
html { scroll-behavior: smooth; }

/* Szanuj preferencje zmniejszonego ruchu użytkownika */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
	background: var(--white);
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	font-family: 'Instrument Sans', sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: var(--greyDark);
	overflow-x: hidden;
	position: relative;
}

	body.overflow {
		overflow: hidden;
	}
	
.button a,
a.wp-block-button__link,
button.wp-block-button__link {
	display: inline-block;
	background: var(--dark);
	outline: 2px solid var(--dark);
	border-radius: 50px;
	padding: 12px 30px;
	box-sizing: border-box;
	outline-offset: -2px;
	font-weight: 500;
	transition: all 0.3s ease;
}
	.button a:hover,
	a.wp-block-button__link:hover,
	button.wp-block-button__link:hover {
		background: var(--green);
		outline: 2px solid var(--green);
		color: var(--lighttxt);
		outline-offset: -2px;
		transition: all 0.3s ease;
	}

.hide-on-desktop {
	display: none;
}

.hide-on-mobile {
	display: block;
}

@media (max-width: 1000px) {
	.hide-on-mobile {
		display: none;
	}
	.hide-on-desktop {
		display: block;
	}
}
	
*:focus {
	outline: 0 !important;
}	

.is-style-fit,
.fit {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1300,
.fit-1300 {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1000,
.fit-1000 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

a {
	color: var(--greyDark);
	text-decoration: none;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	
	cursor: pointer;
}

	a:hover {
		color: var(--green);
		text-decoration: none;
		
		transition: all .2s ease;
		-webkit-transition: all .2s ease;
		cursor: pointer;
	}


h1 {
	color: var(--black);
	font-family: "Manrope", sans-serif;
	font-weight: 300;
	font-size: clamp(45px, 5vw, 60px);
	line-height: 1;
}

h2 {
	color: var(--black);
	font-family: "Manrope", sans-serif;
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 300;
	line-height: 1.1;
}

h3 {
	font-family: "Manrope", sans-serif;
	font-size: clamp(22px, 3.5vw, 28px);
	font-weight: 300;
	line-height: 1.1;
}

hr.wp-block-separator {
	width: 94%;
	max-width: calc(1600px - 6%);
	margin: 0 auto !important;
	box-sizing: border-box;
	border-top: 1px solid #DADADACC;
}

#container {
	min-height: 100vh;
	padding-top: 90px;
	
	background-image: url(../graf/bgLines.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 0;
}

.woocommerce-account #container {
	background-image: url(../graf/bgLines2.svg);
}

.woocommerce-cart #container {
	background-image: unset;
}

header {
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	
	padding: 20px 0 15px 0;
	transition: all 0.2s ease;
}

	header .header_inner {
		display: flex;
		align-items: center;
		gap: 25px;
	}
	
		header .header_inner #menu {
			
		}
		
		header .header_inner #menu nav > ul {
			display: flex;
			align-items: center;
			gap: 30px;
			list-style: none;
		}
		
			header .header_inner #menu nav > ul > li {
				position: relative;
				padding: 10px 0;
			}
		
			header .header_inner #menu nav > ul > li.menu-item-has-children {
				padding-right: 20px;
			}
				
				header .header_inner #menu nav > ul > li.menu-item-has-children:after {
					content: "";
					position: absolute;
					right: 0;
					top: 0;
					display: block;
					width: 10px;
					height: 100%;
					background-image: url(../graf/icoArrow.svg);
					background-size: contain;
					background-repeat: no-repeat;
					background-position: 50% 50%;
					transition: all 0.2s ease;
				}
				
				header .header_inner #menu nav > ul > li.menu-item-has-children:hover:after {
					transform: scale(-1);
					transition: all 0.2s ease;
				}
					
			header .header_inner #menu nav > ul > li a {
				display: block;
				font-size: 16px;
			}
				
			header .header_inner #menu nav > ul li.current-menu-parent > a,
			header .header_inner #menu nav > ul li.current-menu-item > a {
				color: var(--green);
			}
				
				
		header .header_inner #menu nav .menu-item-has-children ul.sub-menu {
			position: absolute;
			left: 0;
			top: 95%;
			opacity: 0;
			visibility: hidden;
			list-style: none;
			padding: 15px 20px;
			box-sizing: border-box;
			border-radius: 16px;
			min-width: 220px;
			background: #fff;
			box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.05);


			transition: all 0.4s ease;
		}
		
		header .header_inner #menu nav .menu-item-has-children:hover ul.sub-menu {
			opacity: 1;
			visibility: visible;
			transition: all 0.6s ease;
		}
		
			header .header_inner #menu nav .menu-item-has-children ul.sub-menu li {
				padding: 8px 0;
			}
			
			header .header_inner #menu nav .menu-item-has-children ul.sub-menu li a {
				display: block;
			}
		
				header .header_inner #menu nav .menu-item-has-children ul.sub-menu li a span {
					white-space: nowrap;
				}
		
		
header.fixed {
	padding: 10px 0;
	background: #fff;
	box-shadow: 0 0 5px 2px rgba(0 0 0 / 0.05);
	transition: all 0.2s ease;
}

.bgCutTop  {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	transform: translateY(1px);
}

	.bgCutTop:before {
		content: "";
		display: block;
		width: 40%;
		height: 100%;
		
		background: #131818;
		position: absolute;
		left: 0;
		top: 0;
	}
	
	.bgCutTop img {
		display: block;
		margin: 0 auto;
	}
	
.bgCutBottom  {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	transform: scale(-1) translateY(1px);
}

	.bgCutBottom:before {
		content: "";
		display: block;
		width: 40%;
		height: 100%;
		
		background: #131818;
		position: absolute;
		left: 0;
		top: 0;
	}
	
	.bgCutBottom img {
		display: block;
		margin: 0 auto;
	}

.bgGradient {
	background: linear-gradient(180deg, rgba(121, 161, 224, 0.08) 0%, rgba(255, 255, 255, 0) 23%) !important;
	padding-top: 90px !important;
}
	
.bgLine {
	position: relative;
	z-index: 1;
}

.bgLine + * {
	position: relative;
	z-index: 1;
}
	
	.bgLine > * {
		position: relative;
		z-index: 1;
	}
	
	.bgLine:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		
		width: 100%;
		height: auto;
		aspect-ratio: 2100 / 1400;
		
		
		background-image: url(../graf/bgLine.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 0 0;
		
	}

.brickredTxt,
.brickredTxt.section-subtitle,
.kafelki-theme-light .brickredTxt.section-subtitle {
	color: var(--brickred) !important;
}

.greenTxt,
.greenTxt.section-subtitle,
.kafelki-theme-light .greenTxt.section-subtitle {
	color: var(--green) !important;
}

#content {
	position: relative;
	z-index: 5;
}

.pageTxt {
	padding: 20px 0;
}

	.pageTxt .pageTxtHeader {
		padding-bottom: 35px;
	}

		.pageTxt .pageTxtHeader h1 {
			font-size: clamp(36px, 4vw, 50px);
		}
		
	.pageTxt .pageTxtContent  {
		font-size: 16px;
	    line-height: 1.6;
	}

		.pageTxt .pageTxtContent h2 {
			margin: 40px 0 15px 0;
			font-size: 30px;
		}
		
		.pageTxt .pageTxtContent h3 {
			margin: 30px 0 10px 0;
			font-size: 24px;
		}

		.pageTxt .pageTxtContent figure.wp-block-table {
			margin: 20px 0 50px 0;
			font-size: 16px;
		}
		
		
		.pageTxt .pageTxtContent p {
			margin: 12px 0;
		}

		.pageTxt .pageTxtContent ul,
		.pageTxt .pageTxtContent ol {
			margin: 10px 0 10px 15px;
		}

			.pageTxt .pageTxtContent ul li,
			.pageTxt .pageTxtContent ol li {
				margin: 5px 0;
			}
		
.dlaczegoOlte {
	
}
	
	.dlaczegoOlte.kafelki-theme-dark .kafelki-subtitle {
		color: var(--brickred);
	}

	.dlaczegoOlte .kafelki-grid .kafelek {
		padding: 0;
		overflow: unset;
	}
	
	.dlaczegoOlte .kafelki-grid .kafelek ol.section-list li {
		color: #fff;
		font-size: 16px;
	}
	
	.dlaczegoOlte .kafelki-grid .kafelek p {
		padding-left: 45px;
	}
	
	.dlaczegoOlte .kafelki-grid .kafelek ol.section-list + p + .section-image-wrapper {
		margin-top: auto;
		padding-top: 30px;
		padding-left: 45px;
		width: 220px;
		height: auto;
	}
	
.procesBox {
	
}
		
	.procesBox em {
		display: block;
		font-style: normal;
		font-size: 48px;
		color: #000;
		line-height: 1;
		font-weight: 400;
		
		padding-bottom: 20px;
		margin-bottom: 10px;
	}
	
	.procesBox em:after {
		content: "";
		display: block;
		width: 100%;
		
		border-bottom: 1px solid rgba(218, 218, 218, 1);
		
	
		position: absolute;
		left: 0;
		bottom: 0;
	}
		
	.procesBox .is-div-header {
		margin-top: 20px;
	}
	
	.procesBox .is-div-header,
	.procesBox p {
		position: relative;
		padding: 0 25% 0 0;
		box-sizing: border-box;
	}

	.kafelki-theme-dark.procesBox em {
		color: #fff;
	}

	.kafelki-theme-dark.procesBox em:after {
		border-bottom: 1px solid #626565;
	}

	
	.procesBox h3 {
		padding: 0 25% 0 0;
		box-sizing: border-box;
	}
	
	
.wp-block-adwokat-opinie-slider  {
	
}
	
	.wp-block-adwokat-opinie-slider .opinie-header-section,
	.wp-block-adwokat-opinie-slider .opinie-header-section-with-nav {
		width: 100%;
		max-width: 1600px;
		margin:  0 auto;
		padding: 0 3%;
		box-sizing: border-box;
	}


form.wpcf7-form {
	width: 100%;
	box-sizing: border-box;
	
	display: flex;
	flex-direction: column;
	gap: 20px;
}

	form.wpcf7-form .formRow {
		width: 100%;
		box-sizing: border-box;
		display: grid; 
		grid-template-columns: 1fr 1fr; 
		gap: 20px 20px; 
	}

	form.wpcf7-form .formRowSingle {
		width: 100%;
		box-sizing: border-box;
		display: grid; 
		grid-template-columns: 1fr; 
		gap: 20px 20px; 
	}
	
	form.wpcf7-form label {
		display: block;
	}
	
	form.wpcf7-form label span {
		display: block;
	}
	
	form.wpcf7-form input {
		font-family: 'Instrument Sans', sans-serif;
		width: 100%;
		background: #f6f6f6;
		color: #000000cc;
		font-size: 16px;
		padding: 18px;
		box-sizing: border-box;
		border-radius: 12px;
		border: 1px solid transparent;
		transition: all 0.3s ease !important;
	}
		
		form.wpcf7-form input:focus {
			border: 1px solid #478675;
			transition: all 0.3s ease !important;
		}
		
		form.wpcf7-form input.wpcf7-not-valid {
			border: 1px solid #dc3232;
			transition: all 0.3s ease !important;
		}
		
		form.wpcf7-form input::placeholder {
			color: #6E6E6E;
		}
	
	form.wpcf7-form textarea {
		font-family: 'Instrument Sans', sans-serif;
		width: 100%;
		background: #f6f6f6;
		font-size: 16px;
		padding: 18px;
		box-sizing: border-box;
		border-radius: 12px;
		
		resize: unset;
		height: 130px;
		border: 1px solid transparent;
		transition: all 0.3s ease !important;
	}
		
		form.wpcf7-form textarea:focus {
			border: 1px solid #478675;
			transition: all 0.3s ease !important;
		}
		
		form.wpcf7-form textarea.wpcf7-not-valid {
			border: 1px solid #dc3232;
			transition: all 0.3s ease !important;
		}
		
		form.wpcf7-form textarea::placeholder {
			color: #4B4B4B;
		}
	
	form.wpcf7-form .formRowCheckbox .wpcf7-list-item {
		margin: 0 0;
	}
	
		form.wpcf7-form .formRowCheckbox .wpcf7-list-item label {
			width: 100%;
			box-sizing: border-box;
			display: grid; 
			grid-template-columns: 14px 1fr; 
			gap: 10px 10px; 
		}
	
		form.wpcf7-form .formRowCheckbox .wpcf7-list-item .wpcf7-list-item-label {
			font-size: 14px;
		}
		
			form.wpcf7-form .formRowCheckbox .wpcf7-list-item .wpcf7-list-item-label a {
				color: var(--green);
				text-decoration: underline;
			}
		
	#formZgodaMore {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		padding: 0 0 0 0;
		font-size: 14px;
		transition: all 0.25s ease;
	}
		
	#formZgodaMore.on {
		max-height: 600px;
		opacity: 1;
		overflow: hidden;
		padding: 10px 0 0 0;
		transition: all 0.25s ease;
	}
	
	form.wpcf7-form .submit {
		padding-top: 10px;
	}
	
	form.wpcf7-form button {
		display: inline-block;
		border-radius: 50px;
		padding: 12px 30px;
		box-sizing: border-box;
		outline-offset: -2px;
		font-weight: 300;
		background: #478675;
		cursor: pointer;
		outline: 2px solid #478675;
		color: #fff;
		
		transition: all 0.3s ease;
	}
			
		form.wpcf7-form button:hover {
			background: #7AB1A0;
			outline: 2px solid #7AB1A0;
			color: #fff;
			transition: all 0.3s ease;
		}
		

	.wpcf7 form .wpcf7-not-valid-tip {
		font-size: 14px;
	}		

	.wpcf7 form.invalid .wpcf7-response-output {
		font-size: 16px;
		text-align: center;
		padding: 20px;
		border-radius: 16px;
		background: #ffb900;
		border: 0;
		margin: 15px 0 0 0;
		color: var(--gray);
	}		

	.wpcf7 form.failed .wpcf7-response-output {
		font-size: 16px;
		text-align: center;
		padding: 20px;
		border-radius: 16px;
		background: #dc3232;
		border: 0;
		margin: 15px 0 0 0;
		color: var(--gray);
	}	

	.wpcf7 form.sent .wpcf7-response-output {
		font-size: 16px;
		text-align: center;
		padding: 20px;
		border-radius: 16px;
		background: #74b400;
		border: 0;
		margin: 15px 0 0 0;
		color: var(--gray);
	}
	
footer {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 2%, rgba(121, 161, 224, 0.06) 75%);
}
	
#footer {
	padding: 0 0 20px 0;
}

	#footer .kafelki-grid {
		grid-template-columns: 46% 16% 16% 16%;
		grid-auto-rows: auto auto;
		gap: 80px 2% !important;
	}
	
		#footer .kafelki-grid .kafelek-sections-content {
			padding-top: 0;
		}
		
		#footer .kafelki-grid .kafelek .kafelek-sections-content > p:nth-child(1) {
			padding-bottom: 10px;
		}
		
		#footer .kafelki-grid .kafelek:nth-child(1) .kafelek-sections-content > p:nth-child(2) {
			line-height: 1;
		}
		
		#footer .kafelki-grid .kafelek:nth-child(1) .kafelek-sections-content > p:nth-child(3) {
			line-height: 1;
		}
			
		#footer .kafelki-grid .kafelek:nth-child(1) .kafelek-sections-content > p:nth-child(4) {
			padding-top: 15px;
		}
			
		#footer .kafelki-grid .section-button-wrapper {
			margin: 2px 0 0 0;
		}
		
			#footer .kafelki-grid .section-button-wrapper img {
				width: 100%;
				max-width: 170px;
			}
			
		#footer .kafelki-grid a {
			text-decoration: none;
		}
	
		#footer .kafelki-grid p {
			display: block;
		}
		
		#footer .kafelki-grid p[style="font-size:20px"] {
			font-weight: 500;
			color: #000;
		}
		
		#footer .kafelki-grid .kafelek:nth-child(1) {
			
		}
	
		#footer .kafelki-grid .kafelek:nth-child(1) .section-image-wrapper {
			width: 100px;
			height: auto;
			padding: 0;
			margin: 0 0 30px 0;
		}
	
		#footer .kafelki-grid .kafelek:nth-child(5) {
			border-radius: 0;
		}
			
			#footer .kafelki-grid .kafelek:nth-child(5) img {
				width: 100%;
				object-fit: contain;
				object-position: 0 0;
				max-width: 350px;
			}
	
		#footer .kafelki-grid .kafelek:nth-child(6) {
			grid-column: span 3;
		}
		
			#footer .kafelki-grid .kafelek:nth-child(6) form {
				width: 100%;
				max-width: 600px;
			}
		
				#footer .kafelki-grid .kafelek:nth-child(6) form {
					flex-direction: row;
					gap: 5px 20px;
					
					flex-wrap: wrap;
				}
					
					#footer .kafelki-grid .kafelek:nth-child(6) form label {
						flex-grow: 1;
					}
					
						#footer .kafelki-grid .kafelek:nth-child(6) form label input {
							border: 1px solid #F2F2F2;
							background: #fff;
							padding: 14px 18px;
						}
					
						#footer .kafelki-grid .kafelek:nth-child(6) form label input::placeholder {
							color: #868181;
						}
						
					#footer .kafelki-grid .kafelek:nth-child(6) form .submit {
						padding-top: 2px;
						white-space: nowrap;
					}
				
footer {
	
}

	footer .copyrights {
		padding: 25px 0 30px 0;
		text-align: center;
	}
	
		footer .copyrights a {
			color: #aaa;
			text-decoration: underline;
		}
	
		footer .copyrights a:hover {
			color: var(--green);
		}

.materialsBox {
	text-align: center;
}

	.materialsBox .kafelek-sections-content {
		align-items: center;
		text-align: center;
		padding: 50px 5% 30px 5%;
	}

	.kafelek-sections-content .toBottom {
		margin-top: auto;
	}
	
	.materialsBox .section-image-wrapper {
		width: 50px;
		height: 50px;
		margin: 0 auto !important;
	}

		.materialsBox .section-image-wrapper img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: contain;
			object-position: 50% 50%;
		}
		
	.materialsBox .kafelek-sections-content a {
		margin-top: 40px;
		text-decoration: none !important;
		font-weight: 600;
	}
	
.noPaddingBottom {
	padding-bottom: 0 !important;
}

/* Header Search & Cart */
header .header_inner #search {
    margin-left: auto; /* Przesuwa wyszukiwarkę maksymalnie w lewo, obok menu */
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-input {
    border: 1px solid #0000004D;
    border-radius: 35px;
    padding: 13px 40px 13px 20px;
    font-size: 14px;
    width: 350px;
	color: #000000cc;
    transition: all 0.2s ease;
}

.header-search-input::placeholder {
	color: #6E6E6E;
}

.header-search-input:focus {
    outline: none;
    border-color: var(--green);
}

.header-search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
	width: 20px;
	height: 20px;
}

	.header-search-btn svg {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: 50% 50%;
		transition: all 0.2s ease;
	}
	
	.header-search-btn:hover svg {
		filter: brightness(0) saturate(100%) invert(48%) sepia(17%) saturate(927%) hue-rotate(113deg) brightness(93%) contrast(89%);
		transition: all 0.2s ease;
	}
	
#cart {
    position: relative;
	margin-right: 5px;
}

.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
	transition: all 0.2s ease;
}

	.cart-link:hover svg {
		filter: brightness(0) saturate(100%) invert(48%) sepia(17%) saturate(927%) hue-rotate(113deg) brightness(93%) contrast(89%);
		transition: all 0.2s ease;
	}
	
.cart-count {
    background-color: var(--green);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -10px;
}

#auth {
	font-size: 16px;
}

.wc-block-components-sidebar-layout {
	align-items: flex-start;
}

.woocommerce-notices-wrapper {
	margin: 30px auto 0 auto;
	width: 100%;
	max-width: 1600px;
	padding: 0 3%;
	box-sizing: border-box;
}

	.woocommerce-notices-wrapper .woocommerce-message {
		margin: 0;
		background: var(--green);
		border: 2px solid var(--green);
		border-radius: 35px;
		padding: 15px 25px;
		color: #fff;
		
		display: flex;
		align-items: center;
		gap: 5px;
	}
		
		.woocommerce-notices-wrapper .woocommerce-message:before {
			display: none;
		}
		
		.woocommerce-notices-wrapper .woocommerce-message a {
			float: unset !important;
			margin-left: auto;
			
			background: #000;
			color: #fff;
			border-radius: 30px;
			font-size: 16px;
			font-weight: 400;
			padding: 10px 20px;
			box-sizing: border-box;
		}
		
		.woocommerce-notices-wrapper .woocommerce-message a:hover {
			background: #4C4C4C;
			color: #fff;
		}
		
	.woocommerce-notices-wrapper .woocommerce-error {
		margin: 0;
		background: #b81c23;
		border: 2px solid #b81c23;
		border-radius: 35px;
		padding: 15px 25px;
		color: #fff;
		
		display: flex;
		align-items: center;
		gap: 5px;
	}
		
		.woocommerce-notices-wrapper .woocommerce-error:before {
			display: none;
		}
		
		.woocommerce-notices-wrapper .woocommerce-error a {
			float: unset !important;
			margin-left: auto;
			
			background: #000;
			color: #fff;
			border-radius: 30px;
			font-size: 16px;
			font-weight: 400;
			padding: 10px 20px;
			box-sizing: border-box;
		}
		
		.woocommerce-notices-wrapper .woocommerce-error a:hover {
			background: #4C4C4C;
			color: #fff;
		}
	
	
	
#koszyk {
	margin: 80px auto 50px auto;	
}	

	#koszyk .koszykHeader {
		color: var(--black);
		font-family: "Manrope", sans-serif;
		font-weight: 300;
		font-size: clamp(45px, 5vw, 60px);
		line-height: 1;
		display: block;
		margin-bottom: 40px;
	}

	#koszyk .koszykDesc {
		margin: 40px 0;
		padding-left: 25px;
		border-left: 3px solid #000;
		
		font-size: 16px;
		line-height: 1.5;
		color: #000000CC;
	}

		#koszyk .koszykDesc a {
			text-decoration: underline;
		}
		
table.wc-block-cart-items {
	
}

	table.wc-block-cart-items tr.wc-block-cart-items__row {
		display: flex;
		gap: 20px 0;
	}
	
	table.wc-block-cart-items td.wc-block-cart-item__image {
		width: 150px;
		padding: 20px 0;
		margin: 0 !important;
	}

		table.wc-block-cart-items td.wc-block-cart-item__image a {
			display: inline-block;
			background: #FAFAFA;
			border-radius: 30px;
			padding: 10px;
		}
		
	table.wc-block-cart-items a.wc-block-components-product-name {
		font-size: 28px;
		font-weight: 400;
		color: #000;
	}
	
	table.wc-block-cart-items td.wc-block-cart-item__product {
		flex-grow: 1;
		padding: 20px 0 20px 25px;
		margin: 0 !important;
		display: flex;
		align-items: stretch;
	}
	
		table.wc-block-cart-items td.wc-block-cart-item__product .wc-block-cart-item__wrap {
			display: flex;
			height: 100%;
			width: 100%;
			flex-direction: column;
			gap: 5px;
			margin: 0;
		}
	
		table.wc-block-cart-items td.wc-block-cart-item__product .wc-block-components-product-name {
			margin: 0;
			line-height: 1;
		}
		
		table.wc-block-cart-items td.wc-block-cart-item__product .wc-block-cart-item__prices {
			margin: 0;
		}
	
		table.wc-block-cart-items td.wc-block-cart-item__product .wc-block-components-product-metadata {
			margin: 0;
			font-size: 16px;
			color: #000000CC;
		}
	
		table.wc-block-cart-items .wc-block-cart-item__quantity {
			margin-top: auto;
			
			display: flex;
			align-items: center;
			gap: 10px;
		}
		
			table.wc-block-cart-items .wc-block-cart-item__quantity .olte-unit-price {
				margin: 0;
				font-size: 20px;
				color: #5c5c5c;
				font-weight: 400;
			}
			
			table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
				margin: 0 0 0 auto !important;
				font-size: 16px;
				color: #5c5c5c;
			}
			
			table.wc-block-cart-items .wc-block-cart-item__quantity .olte-qty-unit-wrap {
				margin: 0;
				font-size: 16px !important;
				color: #5c5c5c;
			}
			
			table.wc-block-cart-items .wc-block-cart-item__quantity button.wc-block-cart-item__remove-link {
				font-size: 16px !important;
				color: #5c5c5c !important;
				margin-left: 40px !important;
			}
			
			table.wc-block-cart-items .wc-block-cart-item__quantity button.wc-block-cart-item__remove-link:hover {
				color: var(--green) !important;
			}
			
			
#koszyk .wc-block-components-sidebar  {
	box-shadow: 0px 6.51px 16.27px 0px #0000000D;
	background: #fff;
	border-radius: 16px;
	padding: 30px;
}		
				
	#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block {
		
	}			
	
		#koszyk .wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
			border-bottom: 0;
		}
	
	#koszyk .wc-block-components-sidebar h2.wp-block-woocommerce-cart-order-summary-heading-block {
		font-weight: 500;
		font-size: 24px;
		text-transform: unset;
		margin: 0;
		padding: 0 0 25px 0;
	}
				
	#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block {
		font-size: 16px;
	}
	
		#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block input {
			border-radius: 35px;
			border: 1px solid #0000004D;
			padding: 15px 20px 5px 20px;
			color: #000000cc;
		}
		
		#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block input::placeholder {
			color: #6E6E6E;
		}
	
		#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block label {
			left: 20px;
		}
		
		#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block button {
			display: inline-block;
			width: unset;
			background: #000000;
			color: #fff;
			border-radius: 50px;
			padding: 12px 15px;
			box-sizing: border-box;
			outline: 2px solid #000000;
			outline-offset: -2px;
			font-weight: 500;
			transition: all 0.3s ease;
		}
	
			#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block button[aria-disabled="true"] {
				opacity: 0.4;
				transition: all 0.3s ease;
			}
			
	
			#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block button:not([aria-disabled="true"]):hover {
				background: #4C4C4C;
				outline: 2px solid #4C4C4C;
				transition: all 0.3s ease;
			}
			
			#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block button .wc-block-components-button__text {
				opacity: 1;
			}
			
	#koszyk .wc-block-components-sidebar .olte-totals-heading {
		padding-top: 25px;
	}
		
		#koszyk .wc-block-components-sidebar .olte-totals-heading .wc-block-components-totals-item__label {
			color: #1B1A1A;
			font-size: 24px;
			font-weight: 500;
		}
		
		#koszyk .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-shipping-block .wc-block-components-totals-item__label,
		#koszyk .wc-block-components-sidebar .olte-order-summary-products-total .wc-block-components-totals-item__label {
			color: #5c5c5c;
			font-size: 16px;
			font-weight: 400;
		}

		#koszyk .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
			color: #000000CC;
			font-size: 20px;
			font-weight: 600;
		}

		#koszyk .wc-block-components-sidebar .wc-block-components-totals-item__value,
		#koszyk .wc-block-components-sidebar .wc-block-components-totals-item__value strong {
			color: #5c5c5c;
			font-weight: 400;
			font-size: 16px;
		}		
		
		#koszyk .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
			font-weight: 600;
			font-size: 20px;
		}

	
		#koszyk .wc-block-components-sidebar .wc-block-cart__submit-container {
			margin-top: 40px;
		}
				
			#koszyk .wc-block-components-sidebar .wc-block-cart__submit-container a.wc-block-components-button {
				display: inline-block;
				width: unset;
				background: #478675;
				outline: #478675;
				color: #fff;
				border-radius: 50px;
				padding: 12px 30px;
				box-sizing: border-box;
				outline: 2px solid #478675;
				outline-offset: -2px;
				font-weight: 500;
				transition: all 0.3s ease;
			}	
				
				#koszyk .wc-block-components-sidebar .wc-block-cart__submit-container a.wc-block-components-button:hover {
					background: #7AB1A0;
					outline: 2px solid #7AB1A0;
					color: #fff;
					transition: all 0.3s ease;
				}
				
#koszykFaq {
	width: 100%;
	max-width: 900px;
}

	#koszykFaq h3 {
		font-size: 24px;
		font-weight: 500;
		
		display: block;
		padding-bottom: 30px;
		border-bottom: 1px solid #DADADA80;
	}

		#koszykFaq details {
			padding: 15px 0;
			
			font-size: 16px;
			font-weight: 400;
			border-bottom: 1px solid #DADADA80;
		}

		#koszykFaq details summary {
			position: relative;
			list-style: none;
		}
			
		#koszykFaq details summary::-webkit-details-marker {
			display:none;
		}
			
			#koszykFaq details summary::marker {
				content: "";
				display: none !important;
			}
			
			#koszykFaq details summary:after {
				content: "";
				display: block;
				width: 10px;
				height: 6px;
				
				position: absolute;
				right: 0;
				top: 50%;
				transform: translateY(-50%);
				
				background-image: url(../graf/icoArrow.svg);
				background-size: contain;
				background-repeat: no-repeat;
				background-position: 50% 50%;
				transition: all 0.3s ease;
			}
			
			#koszykFaq details:open summary:after {
				transform: translateY(-50%) scale(-1);
				transition: all 0.3s ease;
			}
			
			#koszykFaq details > *:not(summary) {
				max-height: 0;
				overflow: hidden;
				opacity: 0;
				visibility: hidden;
				font-size: 14px;
				transition: all 0.3s ease;
			}
		
			#koszykFaq details:open > *:not(summary) {
				max-height: 1000px;
				overflow: hidden;
				opacity: 1;
				visibility: visible;
				padding-top: 20px;
				transition: all 0.3s ease;
			}

#dziekujemy {
	padding-bottom: 50px;
}
	
	#dziekujemy .olte-thankyou {
		max-width: 1100px;
		margin: 60px auto 40px;
	}
	#dziekujemy .olte-thankyou__header {
		margin-bottom: 24px;
	}
	#dziekujemy .olte-thankyou__header h1 {
		margin: 0 0 8px;
	}
	#dziekujemy .olte-thankyou__header p {
		margin: 0 0 4px;
	}
	
	#dziekujemy .olte-thankyou__headerDesc {
		margin: 40px 0;
		padding-left: 25px;
		border-left: 3px solid #000;
		
		font-size: 16px;
		line-height: 1.5;
		color: #000000CC;
	}
		
	#dziekujemy .olte-thankyou__cols {
		display: flex;
		gap: 100px;
		align-items: flex-start;
		flex-wrap: wrap;
		padding: 50px 0 0 0;
	}
	#dziekujemy .olte-thankyou__left {
		flex: 0 750px;
		min-width: 280px;
	}
	
	.olte-thankyou__right {
		flex: 1 1 400px;
		min-width: 280px;
	}
	#dziekujemy .olte-thankyou__left h2,
	.olte-thankyou__right h2 {
		margin: 0 0 16px;
		font-size: 24px;
		font-weight: 500;
	}
	#dziekujemy .olte-thankyou__details {
		display: grid;
		grid-template-columns: 400px auto;
		gap: 0 0;
		padding-top: 10px;
		font-weight: 400;
	}
		
		#dziekujemy .olte-thankyou__details > div {
			padding: 12px 0;
			border-bottom: 1px solid #DADADA80;
		}

		#dziekujemy .olte-thankyou__details > div strong {
			font-weight: 600;
		}
			
			
	#dziekujemy .olte-thankyou__address {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding-top: 15px;
	}
	
		#dziekujemy .olte-thankyou__address > div {
			padding: 12px 0;
		}
		
	#dziekujemy .olte-thankyou__actions {
		display: inline-flex;
		flex-direction: row;
		gap: 20px;
		align-items: center;
		margin-top: 100px;
		margin-bottom: 40px;
		padding-bottom: 40px;
		border-bottom: 1px solid #DADADACC;
		justify-content: flex-start;
	}
	
		#dziekujemy .olte-thankyou__actions .olte-thankyou__btn-print {
			display: inline-block;
			background: transparent;
			outline: #6592D9;
			color: #000000CC;
			border-radius: 50px;
			padding: 12px 30px;
			box-sizing: border-box;
			outline: 1px solid #6592D9;
			outline-offset: -1px;
			font-size: 16px;
			font-weight: 500;
			transition: all 0.3s ease;
		}
	
			#dziekujemy .olte-thankyou__actions .olte-thankyou__btn-print:hover {
				background: #EDF3F1;
				transition: all 0.3s ease;
			}
		
		#dziekujemy .olte-thankyou__actions .section-button-blue-dark{
			display: inline-block;
			background: #6592D9;
			outline: #6592D9;
			color: #fff;
			border-radius: 50px;
			padding: 12px 30px;
			box-sizing: border-box;
			outline: 2px solid #6592D9;
			outline-offset: -2px;
			font-size: 16px;
			font-weight: 500;
			transition: all 0.3s ease;
		}
	
			#dziekujemy .olte-thankyou__actions .section-button-blue-dark:hover {
				background: #4570B3;
				outline: 2px solid #4570B3;
				transition: all 0.3s ease;
			}
	
	
	#dziekujemy .olte-thankyou__help {
		font-size: 16px;
		color: #666;
	}
	
	#dziekujemy .olte-thankyou__help a {
		color: #6592D9;
	}
	
	#dziekujemy .olte-thankyou__help a:hover {
		color: #4570B3;
	}
	
	#zamowienie .kafelki-container {
		padding: 100px 0;
	}
	
		#zamowienie .kafelki-container .kafelki-header-wrapper {
			display: none;
		}


.woocommerce-MyAccount-wrapper {
	display: flex;
	gap: 100px;
	padding-top: 100px;
}

	.woocommerce-MyAccount-wrapper .accountLeft {
		float: unset;
		flex-basis: 310px;
	}
	
		.woocommerce-MyAccount-wrapper .accountLeft h1 {
			font-size: clamp(50px, 4vw, 60px);
			font-weight: 400;
		}
		
		.woocommerce-MyAccount-wrapper .accountLeft .welcomeBack {
			padding: 0 0 0 20px;
			border-left: 3px solid #000;
			line-height: 1;
			font-size: 16px;
			margin: 40px 0 60px 0;
		}
		
		.woocommerce-MyAccount-wrapper .accountLeft nav {
			width: 100%;
		}
			
			.woocommerce-MyAccount-wrapper .accountLeft nav ul {
				list-style: none;
				border-top: 1px solid #DADADA80;
			}
			
			.woocommerce-MyAccount-wrapper .accountLeft nav ul li a {
				display: block;
				padding: 15px 0;
				font-size: 16px;
				color: #000000CC;
				border-bottom: 1px solid #DADADA80;
			}
			
			.woocommerce-MyAccount-wrapper .accountLeft nav ul li.is-active a {
				font-weight: 600;
			}
			
			.woocommerce-MyAccount-wrapper .accountLeft nav ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
				color: #D44949;
			}
			
			.woocommerce-MyAccount-wrapper .accountLeft nav ul li a:hover {
				color: var(--green);
			}

	.woocommerce-MyAccount-wrapper .woocommerce-MyAccount-content {
		float: unset;
		flex-basis: auto;
		flex-grow: 1;
		
		box-shadow: 0px 6.51px 16.27px 0px #0000000D;
		background: #fff;
		border-radius: 16px;
		padding: 35px;
		box-sizing: border-box;
	}
	
		.woocommerce-MyAccount-wrapper .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
			margin: 0 auto 0 auto;
			padding: 0;
		}
		
		.woocommerce-MyAccount-wrapper .woocommerce-MyAccount-content h3 {
			color: #1B1A1A;
			font-weight: 500;
			margin-bottom: 20px;
		}
		
		#konto_szczegoly {
			
		}
		
			#konto_szczegoly .konto_szczegoly_header {
				font-size: 18px;
				
				padding-bottom: 25px;
			}
			
		#konto_szczegoly .order_empty {
			border: 0;
			padding: 0;
			font-size: 16px;
		}
		
			#konto_szczegoly .order_empty figure {
				margin: 30px auto 0 auto;
				text-align: center;
			}
		
			#konto_szczegoly .order_empty .kafelek-sections-content {
				margin-top: 30px;
			}

		#konto_szczegoly .konto_szczegoly_blocks {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 30px 25px;
			margin-bottom: 40px;
		}

		#konto_szczegoly .konto_kafelek {
			border: 1px solid #E1E1E1;
			border-radius: 20px;
			padding: 25px;
			background: #fff;
		}

		#konto_szczegoly .kafelek_top_icon {
			margin-bottom: 20px;
		}

			#konto_szczegoly .kafelek_top_icon figure {
				width: 32px;
				height: 32px;
			}
				
				#konto_szczegoly .kafelek_top_icon figure svg {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 50% 50%;
				}

		#konto_szczegoly .kafelek_row,
		#konto_szczegoly .kafelek_header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 12px;
		}

		#konto_szczegoly .kafelek_row .kafelek_label {
			color: #4B4B4B;
			font-weight: 400;
			font-size: 14px;
		}

		#konto_szczegoly .kafelek_row .kafelek_value {
			color: #000;
			font-weight: 500;
			font-size: 32px;
			line-height: 1;
		}


		#konto_szczegoly .kafelek_header .kafelek_label {
			color: #1B1A1A;
			font-weight: 500;
			font-size: 20px;
		}
		
		#konto_szczegoly .kafelek_header .kafelek_edit_icon svg {
			display: block;
			transition: all 0.2s ease;
		}


		#konto_szczegoly .konto_szczegoly_orders {
		}

			#konto_szczegoly .konto_szczegoly_orders h3 {
				margin-bottom: 16px;
				font-size: 22px;
				color: #202020;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_box {
				border: 1px solid #E1E1E1;
				border-radius: 12px;
				padding: 15px 20px;
				background: #fff;
				margin-bottom: 20px;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_row {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 16px;
				margin: 5px 0;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_left {
				display: flex;
				align-items: center;
				gap: 8px;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_right {
				text-align: right;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_number {
				font-weight: 600;
				color: #4B4B4B;
				font-size: 16px;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_status {
				color: #606060;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_total {
				font-weight: 600;
				color: #4B4B4B;
				font-size: 16px;
				font-size: 14px;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_date {
				color: #4B4B4B;
				font-size: 16px;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_details_link {
				color: #4B4B4B;
				font-size: 14px;
				text-decoration: underline;
			}

			#konto_szczegoly .konto_szczegoly_orders .order_details_link:hover {
				color: var(--green);
			}

			#konto_szczegoly .konto_szczegoly_orders .orders_footer {
				margin-top: 8px;
			}

			/* Badge status przeniesiony do jednolitego bloku w jednym miejscu */
					
					
					#konto_szczegoly .kafelek_header .kafelek_edit_icon:hover svg {
						filter: brightness(0) saturate(100%) invert(48%) sepia(17%) saturate(927%) hue-rotate(113deg) brightness(93%) contrast(89%);
						transition: all 0.2s ease;
					}
					
					

				#konto_szczegoly .kafelek_address {
					margin-top: 12px;
					color: #4B4B4B;
					line-height: 1.5;
					font-size: 14px;
				}

/* ------------------------------
   My Account: Adresy (custom layout)
   ------------------------------ */
.woocommerce-MyAccount-content .addresses_section {
    margin-bottom: 30px;
}

.woocommerce-MyAccount-content .addresses_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.woocommerce-MyAccount-content .addresses_header .title {
    color: #1B1A1A;
    font-weight: 500;
    font-size: 20px;
}

.woocommerce-MyAccount-content .addresses_edit_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #606060;
    text-decoration: none;
}

.woocommerce-MyAccount-content .addresses_edit_link:hover {
    color: var(--green);
}

.woocommerce-MyAccount-content .addresses_fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.woocommerce-MyAccount-content .fields_row.cols-2 {
    display: contents;
}

.woocommerce-MyAccount-content .fields_row.cols-1 {
    display: contents;
}

.woocommerce-MyAccount-content .field_box {
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
}

.woocommerce-MyAccount-content .field_box.span-2 {
    grid-column: 1 / -1;
}

.woocommerce-MyAccount-content .field_label {
    color: #606060;
    font-size: 12px;
    margin-bottom: 6px;
}

.woocommerce-MyAccount-content .field_value {
    color: #202020;
    font-size: 14px;
    font-weight: 500;
}

/* =====================
   My Account – Edit Address
   ===================== */
.woocommerce-EditAccountForm {
  margin-top: 10px;
}

.woocommerce-EditAccountForm h3 {
  color: #1B1A1A;
  font-weight: 500;
  margin-bottom: 12px;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row {
  background: #F6F6F6;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row.form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row label {
  display: block;
  color: #606060;
  font-size: 12px;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row input.input-text,
.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row select,
.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #202020;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row input.input-text:focus,
.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row select:focus,
.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row textarea:focus {
  outline: none;
  box-shadow: none;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row .select2-selection {
	padding: 0 !important;
	border: 0 !important;
	height: 30px !important;
}

.woocommerce-EditAccountForm .woocommerce-address-fields__field-wrapper .form-row .select2-selection .select2-selection__arrow {
	height: 30px !important;
	right: 5px !important;
}

.woocommerce-EditAccountForm .woocommerce-address-fields p {
  margin-top: 16px;
}

/* =====================
   My Account – Edit Account Details
   ===================== */
.woocommerce-EditAccountForm.edit-account {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.woocommerce-EditAccountForm.edit-account .clear {
	display: none !important;
}

.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row {
  background: #F6F6F6;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.woocommerce-EditAccountForm.edit-account .form-row-first,
.woocommerce-EditAccountForm.edit-account .form-row-last {
  grid-column: auto;
}

.woocommerce-EditAccountForm.edit-account .form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce-EditAccountForm.edit-account .woocommerce-form-row em {
	display: none !important;
}

.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row label {
  display: block;
  color: #606060;
  font-size: 12px;
}

.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row input.input-text,
.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row select,
.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #202020;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
}

.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row input.input-text:focus,
.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row select:focus,
.woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row textarea:focus {
  outline: none;
  box-shadow: none;
}

.woocommerce-EditAccountForm.edit-account fieldset {
  grid-column: 1 / -1;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.woocommerce-EditAccountForm.edit-account fieldset h3 {
	margin-bottom: 10px;
}

.woocommerce-EditAccountForm.edit-account fieldset legend {
  color: #1B1A1A;
  font-weight: 500;
}

.woocommerce-EditAccountForm.edit-account fieldset .woocommerce-form-row.form-row {
  margin-top: 0;
}

.woocommerce-EditAccountForm.edit-account .wp-block-button {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.woocommerce-EditAccountForm .kafelek-sections-content {
	margin-top: 20px;
}

/* =====================
   My Account – Order Details
   ===================== */
#konto_szczegoly {
  margin-top: 10px;
}

.order_details_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  margin-bottom: 30px;
  
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.order_details_header .order_title {
  font-size: 22px;
  color: #1B1A1A;
  font-weight: 500;
  margin-bottom: 6px;
}

.order_details_header .order_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order_details_header .order_amount {
  font-size: 16px;
  font-weight: 600;
  color: #202020;
}

.order_details_section {
	margin-top: 30px;
  background: #fff;
  margin-bottom: 16px;
}

.order_details_section h3,
.order_details_section h2 {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 500;
}

/* Order details table inside content box */
.order_details_section .woocommerce-table--order-details {
  width: 100%;
  border: none;
}

.order_details_section .woocommerce-table--order-details th,
.order_details_section .woocommerce-table--order-details td {
  border: none;
  padding: 10px 0;
}

.order_details_section .woocommerce-table--order-details thead th {
  color: #606060;
  font-weight: 500;
}

.order_details_section .woocommerce-table--order-details tbody tr + tr td {
  border-top: 1px solid #F0F0F0;
}

.order_details_section .woocommerce-table--order-details tfoot th,
.order_details_section .woocommerce-table--order-details tfoot td {
  padding-top: 12px;
  border-top: 1px solid #EAEAEA;
}

/* Notes list */
.order_notes_box .woocommerce-OrderUpdates.commentlist.notes {
  list-style: none;
}

.order_notes_box .woocommerce-OrderUpdate.comment.note {
  padding: 8px 0;
}

.order_notes_box .woocommerce-OrderUpdate.comment.note + .woocommerce-OrderUpdate.comment.note {
  border-top: 1px solid #F0F0F0;
}

/* Order items as boxes */
.order_items_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order_item_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.order_item_box .item_left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order_item_box .item_image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.order_item_box .item_info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order_item_box .item_name a,
.order_item_box .item_name {
  font-size: 16px;
  color: #1B1A1A;
  font-weight: 500;
}

.order_item_box .item_meta {
  color: #606060;
  font-size: 13px;
}

.order_item_box .item_right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order_item_box .item_qty {
  color: #606060;
}

.order_item_box .item_total {
  font-weight: 600;
  color: #202020;
}

.order_item_note {
  margin-top: -8px;
  margin-bottom: 8px;
  color: #606060;
  font-size: 13px;
}

/* Order totals box */
.order_totals_box {
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.order_totals_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order_total_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.order_total_row .total_label {
  color: #606060;
}

.order_total_row .total_value {
  font-weight: 600;
  color: #202020;
}

/* Addresses box on order details */
.order_addresses_box .addresses_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order_addresses_box .address_card {
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  background: #fff;
}

.order_addresses_box .address_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 0 14px;
}

.order_addresses_box .address_header .title {
  font-size: 18px;
  font-weight: 500;
  color: #1B1A1A;
}

.order_addresses_box .address_body {
  padding: 12px 14px 14px 14px;
}

.order_addresses_box .address_text {
  color: #202020;
}

.order_addresses_box .address_meta {
  color: #606060;
  margin-top: 6px;
}

/* Badge status przeniesiony do jednolitego bloku w jednym miejscu */

/* Thank-you style improvements for default WooCommerce order table (outside wrapper) */
.woocommerce-order-details .woocommerce-table--order-details {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.woocommerce-order-details .woocommerce-table--order-details thead th {
  background: #F8F8F8;
  border-bottom: 1px solid #EAEAEA;
  padding: 12px 14px;
  color: #606060;
  font-weight: 500;
}
.woocommerce-order-details .woocommerce-table--order-details tbody td {
  border-top: 1px solid #F0F0F0;
  padding: 12px 14px;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot th,
.woocommerce-order-details .woocommerce-table--order-details tfoot td {
  border-top: 1px solid #EAEAEA;
  padding: 12px 14px;
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot td {
  text-align: right;
  font-weight: 700;
}

/* Thank-you style for customer addresses default markup */
.woocommerce-order .woocommerce-customer-details { margin: 24px 0; }
.woocommerce-order .woocommerce-columns--addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.woocommerce-order .woocommerce-columns--addresses .woocommerce-column {
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}
.woocommerce-order .woocommerce-columns--addresses .woocommerce-column h2,
.woocommerce-order .woocommerce-columns--addresses .woocommerce-column h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1B1A1A;
  margin: 0 0 10px;
}

.woocommerce-order .woocommerce-columns--addresses address {
  font-style: normal;
  color: #202020;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .woocommerce-order .woocommerce-columns--addresses { grid-template-columns: 1fr; }
}
/* View-order thankyou layout */
.olte-thankyou__cols {
	margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
	
}
.olte-thankyou__left {
    flex: 1 1 420px;
    min-width: 300px;
	margin-bottom: 30px;
}
.olte-thankyou__right {
    flex: 1 1 420px;
    min-width: 300px;
}
.olte-thankyou__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
}
.olte-thankyou__details > div {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.olte-thankyou__details > div:nth-child(even) {
	padding-left: 25px;
}
.olte-thankyou__details > div strong {
    font-weight: 600;
}
.olte-thankyou__address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 4px;
}
.olte-thankyou__address > div {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}
.olte-thankyou__products {
    list-style: none;
    margin: 0;
    padding: 0;
}
.olte-thankyou__products li {
    margin: 0;
}

.order_details_section h2 {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 500;
}



		
@media screen and (max-width: 1250px) {
	header .header_inner {
		gap: 15px;
	}
	
	header .header_inner #menu nav > ul {
		gap: 15px;
	}
	
	.header-search-input {
		width: 220px;
	}
	
	.dlaczegoOlte .kafelki-grid .kafelek ol.section-list + p + .section-image-wrapper {
		width: 200px;
	}
	
    .procesBox .is-div-header, 
	.procesBox p {
        padding: 0 10% 0 0;
    }
	
	.dlaczegoOlte .kafelki-grid {
		gap: 40px !important;
	}
	
	.woocommerce-MyAccount-wrapper {
		gap: 50px;
	}
	
	.woocommerce-MyAccount-wrapper .accountLeft {
		flex-basis: 260px;
	}
}

@media screen and (max-width: 1100px) {
	header .header_inner {
		gap: 10px;
	}
	
	.header-search-input {
		width: 185px;
		padding: 15px 30px 15px 15px;
	}
}
/* Order status badge — unified single source of truth */
.order_status_badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid transparent;
}
.order_status_badge.status-neutral {
  border-color: #E0E0E0;
  background-color: #F9F9F9;
  color: #606060;
}
.order_status_badge.status-wstrzymane,
.order_status_badge.status-on-hold {
  border-color: #79A1E0;
  background-color: #EEF4FD;
  color: #396CBB;
}
.order_status_badge.status-zrealizowane,
.order_status_badge.status-dostarczone,
.order_status_badge.status-completed,
.order_status_badge.status-delivered {
  border-color: #58A08A;
  background-color: #EEFCF8;
  color: #468E78;
}
.order_status_badge.status-anulowane,
.order_status_badge.status-cancelled {
  border-color: #6B6B6B;
  background-color: #F3F3F3;
  color: #6B6B6B;
}
.order_status_badge.status-processing,
.order_status_badge.status-w-trakcie-realizacji {
	border-color: #75a058;
	background-color: #f1fcee;
	color: #468e47;
}
.order_status_badge.status-refunded,
.order_status_badge.status-zwrocone {
	background-color: #fff8f1;
	color: #8f760f;
	border: 1px solid #dcccb2;
}
.order_status_badge.status-failed,
.order_status_badge.status-nieudane {
  background-color: #fee9ea;
  color: #c62828;
  border: 1px solid #f6cdd1;
}