/* ==============
 *  Button
 * ============*/

.btn {
	/*width: 215px;*/
	/*height: 56px;*/
	text-align: center;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	text-decoration: none;
	line-height: 14px;
	border-radius: 100px;
	padding: 20px;
	cursor: pointer;
	&:hover {
		text-decoration: none;
	}
	&:focus,
	&:focus-visible {
		outline: none;
		box-shadow: none;
	}
}

.btn.btn-thin {
	padding: 14px 32px;
}

.btn.btn-thin-short {
	padding: 14px 16px;
}

.btn.btn-thiner-short {
	padding: 12px 16px;
}

.btn.btn-narrow {
	padding: 10px 5px;
}

.btn-red {
	color: white;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	&:hover {
		color: white;
		background: var(--primary-color-hover);
		border: 1px solid var(--primary-color-hover);
	}
	&:focus,
	&:focus-visible {
		color: white;
	}
}

.btn-transparent {
	color: black;
	border: 1px solid var(--gray-color);
	background: transparent;
	&:hover {
		color: white;
		border: 1px solid var(--primary-color-hover);
		background: var(--primary-color-hover);
	}
	&:focus,
	&:focus-visible {
		color: white;
	}
}

.btn-gray {
	color: black;
	border: 1px solid var(--light-gray-color);
	background: var(--light-gray-color);
	&:focus,
	&:focus-visible,
	&:hover {
		color: white;
		border: 1px solid var(--primary-color-hover);
		background: var(--primary-color-hover);
	}
}

.btn-arrow {
	color: black;
	border: none;
	background: transparent;
	&:hover {
		color: var(--text-black);
		border: none;
		background: var(--primary-color-hover-2);
	}
	&:focus,
	&:focus-visible {
		color: var(--text-black);
	}
}

.text-btn {
	align-self: center;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: .1px;
	color: var(--text-black-70);
}

.btn-3d {
	width: fit-content;
	margin-left: 10px;
}




/* ==============
 *  General
 * ============*/

body {
	&:has(.no-badges-in-footer) {
		.wrapper.badges {
			display: none;
		}
	}
}

.h2 {
	font-size: 56px;
	line-height: 64px;
	font-weight: 400;
	letter-spacing: -2px; /*-2px;*/
	color: black;
	@media (max-width: 767.98px) {
		font-size: 40px;
		line-height: 125%;
	}
}

.h4 {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: -0.15px;
	line-height: 160%;
}


.gap-40-md-80 {
	gap: 80px;
	@media (max-width: 767.98px) {
		gap: 40px;
	}
}


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

.br-lg {
	border-radius: var(--border-radius-lg);
}

/*.page-3d-navrh-kuchyne {*/
	/*background: #f1f1f1;*/
	/*padding: 56px 0 88px;*/
/*}*/

/*.page-3d-navrh-kuchyne__hero {*/
/*	margin-bottom: 32px;*/
/*}*/



.pt-56 {
	padding-top: 56px;
}


.page-3d-navrh-kuchyne__title {
	margin: 0;
	padding: 0;
	font-size: clamp(40px, 6.2vw, 56px);
	line-height: 1.08;
	font-weight: 500;
	color: #151515;
	letter-spacing: -0.02em;
}

.page-3d-navrh-kuchyne__perex {
	margin-top: 18px;
	max-width: 700px;
	font-size: 16px;
	line-height: 1.45;
	color: #707070;
}

.page-3d-navrh-kuchyne__perex p:last-child {
	margin-bottom: 0;
}

.page-3d-navrh-kuchyne__offers-wrap {
	margin-left: 1rem;
	margin-right: 1rem;
	width: calc(100% - 2rem);
}

.page-3d-navrh-kuchyne__offers {
	background: #f7f7f7;
	border-radius: 12px;
	padding: 40px 15px;
}

.page-3d-navrh-kuchyne__offers-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.offer-card {
	display: flex;
	flex-direction: column;
	background: white;
	/*border: 1px solid #e2e2e2;*/
	border-radius: 12px;
	overflow: hidden;
}

.offer-card__image-wrap {
	position: relative;
	padding: 24px 24px 0;
}

.offer-card__badge {
	position: absolute;
	top: 34px;
	left: 34px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 19px;
	padding: 3px 6px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	background: #2E7D32;
}

.offer-card__image {
	display: block;
	width: 100%;
	height: 170px;
	border-radius: 9px;
	object-fit: cover;
}

.offer-card__content {
	display: flex;
	flex-direction: column;
	padding: 16px 24px 24px;
}

.offer-card__heading {
	display: flex;
	align-items: center;
	column-gap: 8px;
	margin-bottom: 8px;
}

.offer-card__icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.offer-card__heading h2 {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	color: black;
	letter-spacing: -.15px;
}

.offer-card__content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.42;
	color: #666;
}

.offer-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 12px;
	row-gap: 10px;
	margin-top: 14px;
}

/*.btn-3d {*/
/*	display: inline-flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 36px;*/
/*	padding: 0 16px;*/
/*	border: 1px solid #111;*/
/*	border-radius: 999px;*/
/*	font-size: 13px;*/
/*	line-height: 1;*/
/*	font-weight: 600;*/
/*	text-decoration: none;*/
/*	white-space: nowrap;*/
/*}*/

/*.btn-3d:hover,*/
/*.btn-3d:focus {*/
/*	text-decoration: none;*/
/*}*/

/*.btn-3d--primary {*/
/*	border-color: #a6192e;*/
/*	background: #a6192e;*/
/*	color: #fff;*/
/*}*/

/*.btn-3d--primary:hover,*/
/*.btn-3d--primary:focus {*/
/*	color: #fff;*/
/*	background: #8f1628;*/
/*	border-color: #8f1628;*/
/*}*/

/*.btn-3d--secondary {*/
/*	background: #fff;*/
/*	color: #111;*/
/*	border-color: #222;*/
/*}*/

/*.btn-3d--secondary:hover,*/
/*.btn-3d--secondary:focus {*/
/*	color: #111;*/
/*	background: #f3f3f3;*/
/*}*/

.offer-card__designers {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
}

.offer-card__designers span {
	max-width: 130px;
	font-size: 12px;
	line-height: 1.2;
	color: #8a8a8a;
}

.offer-card__avatars {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.offer-card__avatar {
	display: block;
	width: 40px;
	height: 40px;
	border: 2px solid #f0f0f0;
	border-radius: 50%;
	object-fit: cover;
	background: #ddd;
}

.offer-card__avatar + .offer-card__avatar {
	margin-left: -7px;
}

.offer-card__avatar--1 {
	object-position: 63% 32%;
}

.offer-card__avatar--2 {
	object-position: 76% 33%;
}

.offer-card__avatar--3 {
	object-position: 85% 32%;
}

.page-3d-navrh-kuchyne__comparison {
	width: 100%;
	margin-top: 0;
}

.page-3d-navrh-kuchyne__comparison h2 {
	margin: 0 0 32px;
	padding: 0;
	font-size: clamp(42px, 6vw, 55px);
	line-height: 1.1;
	font-weight: 500;
	color: #161616;
}

.comparison-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.comparison-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.comparison-table thead th {
	padding: 0 10px 14px;
	/*border-bottom: 1px solid #dadada;*/
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -.15px;
	font-weight: 600;
	color: #151515;
	text-align: left;

	&.no-border-bottom {
		border-bottom: none;
	}
}

.comparison-table thead th:first-child {
	width: 14%;
}

.comparison-table thead th:nth-child(2) {
	width: 43%;
}

.comparison-table thead th:nth-child(3) {
	width: 43%;
}

.comparison-table tbody th,
.comparison-table tbody td {
	padding: 14px 10px;
	font-size: 14px;
	line-height: 1.35;
	color: #444;
	text-align: left;
	vertical-align: top;
}

.comparison-table tbody th {
	width: 14%;
	color: #1f1f1f;
	font-weight: 600;
}

.comparison-table tbody td {
	position: relative;
}

.comparison-table tbody td::after {
	content: '';
	position: absolute;
	bottom: 0;
	border-bottom: 1px solid #dadada;
}

.comparison-table tbody td:nth-child(2)::after {
	left: 10px;
	right: 18px;
}

.comparison-table tbody td:nth-child(3)::after {
	left: 10px;
	right: 0;
}

.comparison-actions {
	display: grid;
	grid-template-columns: 14% 43% 43%;
	gap: 0;
	min-width: 760px;
	padding-top: 40px;
}

.comparison-actions__spacer {
	min-height: 1px;
}

.comparison-actions .btn-3d {
	justify-self: flex-start;
}

.container-wider {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
}

.px-container {
	padding-right: var(--px-container);
	padding-left: var(--px-container);
}

.pb-80 {
	padding-bottom: 80px;
}

.h3-big {
	font-size: 40px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: -2px;
	color: black;
}

@media (max-width: 576px) {
	.h3-big {
		font-size: 40px;
		line-height: 1.4;
	}
}

.lead-paragraph-actions,
.lead-paragraph-actions p {
	font-size: 16px;
	color: var(--text-black-60);
	line-height: 24px;
}

.section-reviews {
	overflow-x: hidden;
}

.section-reviews h2 {
	margin-bottom: 24px;
}

.section-reviews .lead-paragraph-actions {
	max-width: 550px;
	color: var(--text-black-60);
}

.swiper-container:has(.swiper-reviews) {
	overflow: visible;
}

.swiper-container .swiper {
	overflow: visible;
}

.swiper-container .swiper.swiper-reviews {
	margin-top: 40px;
}

.swiper-container .swiper.swiper-reviews .swiper-wrapper {
	height: unset;
}

.swiper-container .swiper.swiper-reviews .swiper-slide {
	min-height: 320px;
	border-radius: 8px;
	border: 1px solid #e3e3e1;
	padding: 32px;
}

.swiper-container .swiper.swiper-reviews .slide-text {
	height: 100px;
	font-size: 16px;
	line-height: 150%;
	color: black;
	margin-bottom: 24px;
}

.swiper-container .swiper.swiper-reviews .slide-text a {
	font-weight: var(--fw-semibold);
	color: var(--primary-color);
	text-decoration: underline;
}

.swiper-container .swiper.swiper-reviews .slide-text a:hover {
	text-decoration: none;
}

.swiper-container .swiper.swiper-reviews .slide-text a span {
	text-decoration: underline 1px white solid;
}

.swiper-container .swiper.swiper-reviews .slide-text a i {
	font-weight: var(--fw-semibold);
	color: var(--primary-color);
}

.swiper-container .swiper.swiper-reviews .slide-img {
	width: 74px;
	height: 55px;
	border: 1px solid #f4f4f4;
	border-radius: 12px;
	margin: 16px 8px 16px 0;
}

.swiper-container .swiper.swiper-reviews .slide-name {
	font-size: 18px;
	font-weight: var(--fw-semibold);
	line-height: 24px;
	color: black;
}

.swiper-container .swiper.swiper-reviews .slide-city {
	font-size: 14px;
	line-height: 18px;
	color: #262626;
	opacity: 0.5;
}

.arrow-wrap-actions {
	align-items: end;
}

.arrow-wrap-actions img {
	width: 20px;
	height: auto;
}

.arrow-wrap-actions:has(a:hover) .all-kitchens {
	text-decoration: underline;
}

.all-kitchens {
	font-size: 12px;
	font-weight: var(--fw-semibold);
	line-height: 44px;
	color: black;
}

@media (max-width: 1100px) {
	.all-kitchens {
		font-size: 14px;
		font-weight: 700;
	}
}

.swiper-prev-reviews,
.swiper-next-reviews {
	position: static;
	z-index: 3;
	overflow: hidden;
	width: 44px;
	height: 44px;
	margin: 0;
}

.swiper-prev-reviews::after,
.swiper-next-reviews::after {
	content: '';
}

.swiper-next-reviews {
	background: url('/wp-content/themes/kuchynskastudia/images/akce/swiper-btn-next-light.svg') no-repeat center;
}

.swiper-prev-reviews {
	background: url('/wp-content/themes/kuchynskastudia/images/akce/swiper-btn-prev-light.svg') no-repeat center;
}

.swiper-next-reviews:not(.swiper-button-disabled):active {
	background: url('/wp-content/themes/kuchynskastudia/images/akce/swiper-btn-next-light-active.svg') no-repeat center;
}

.swiper-prev-reviews:not(.swiper-button-disabled):active {
	background: url('/wp-content/themes/kuchynskastudia/images/akce/swiper-btn-prev-light-active.svg') no-repeat center;
}

@media (min-width: 768px) {
	.swiper-next-reviews:not(.swiper-button-disabled):hover {
		background: url('/wp-content/themes/kuchynskastudia/images/akce/swiper-btn-next-light-active.svg') no-repeat center;
	}

	.swiper-prev-reviews:not(.swiper-button-disabled):hover {
		background: url('/wp-content/themes/kuchynskastudia/images/akce/swiper-btn-prev-light-active.svg') no-repeat center;
	}
}

.swiper-next-reviews.swiper-button-disabled,
.swiper-prev-reviews.swiper-button-disabled {
	opacity: 0.5;
}

.section-faq {
	margin-top: 110px;
	margin-bottom: 110px;
}

.section-faq .lead-paragraph-actions {
	margin-top: 20px;
}

.faq-collapse {
	background-color: #f1f1f1;
	border-radius: 8px;
}

.faq-collapse .collapse-arrow {
	margin-left: auto;
	width: 20px;
	height: auto;
}

.faq-collapse:has([aria-expanded='false']) .collapse-closed {
	display: block;
}

.faq-collapse:has([aria-expanded='false']) .collapse-opened {
	display: none;
}

.faq-collapse:has([aria-expanded='true']) .collapse-closed {
	display: none;
}

.faq-collapse:has([aria-expanded='true']) .collapse-opened {
	display: block;
}

.faq-collapse .collapse-question {
	font-size: 14px;
	font-weight: bold;
	color: black;
	line-height: 24px;
}

.faq-collapse .collapse-answer {
	font-size: 14px;
	color: var(--text-black-60);
	line-height: 20px;
}

.item-benefits-actions {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 0 !important;
}

.item-benefits-actions svg {
	width: 40px;
	max-width: none;
	height: auto;
	margin-right: 16px;
	margin-bottom: auto;
}

.item-benefits-actions .h4 {
	color: var(--text-black-87);
	margin-bottom: 4px;
}

.item-benefits-actions p {
	font-size: 15px;
	color: var(--text-black-60);
	line-height: 150%;
	max-width: 253px;
}

@media (max-width: 991.98px) {
	/*.page-3d-navrh-kuchyne {*/
	/*	padding: 34px 0 60px;*/
	/*}*/

	.page-3d-navrh-kuchyne__offers {
		padding: 14px;
	}

	.page-3d-navrh-kuchyne__offers-inner {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.offer-card__image {
		height: 178px;
	}

	/*.offer-card__heading h2 {*/
	/*	font-size: 34px;*/
	/*}*/

	.offer-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.offer-card__designers span {
		max-width: none;
	}

	.section-faq {
		margin-top: 80px;
	}

	.swiper-container .swiper.swiper-reviews .slide-text {
		height: 150px;
	}

}

@media (max-width: 767.98px) {
	.item-benefits-actions {
		justify-content: start;
	}

	.item-benefits-actions p {
		max-width: none;
	}
}

@media (max-width: 575.98px) {
	/*.page-3d-navrh-kuchyne {*/
	/*	padding-top: 28px;*/
	/*}*/

	/*.page-3d-navrh-kuchyne__hero {*/
	/*	margin-bottom: 20px;*/
	/*}*/

	.page-3d-navrh-kuchyne__perex {
		margin-top: 10px;
		font-size: 14px;
	}

	.page-3d-navrh-kuchyne__offers {
		border-radius: 10px;
		padding: 10px;
	}

	.offer-card {
		border-radius: 10px;
	}

	.offer-card__image {
		height: 126px;
	}

	.offer-card__heading h2 {
		font-size: 22px;
	}

	.offer-card__content p {
		font-size: 13px;
	}

	/*.btn-3d {*/
	/*	height: 34px;*/
	/*	padding: 0 14px;*/
	/*	font-size: 12px;*/
	/*}*/

	.page-3d-navrh-kuchyne__comparison h2 {
		margin-bottom: 14px;
		font-size: 46px;
	}

	.swiper-container .swiper.swiper-reviews {
		margin-top: 24px;
	}

	.swiper-container .swiper.swiper-reviews .slide-text {
		height: 110px;
	}

	.comparison-table,
	.comparison-actions {
		min-width: 640px;
	}

	.comparison-table thead th {
		font-size: 16px;
		padding-bottom: 10px;
	}

	.comparison-table tbody th,
	.comparison-table tbody td {
		font-size: 12px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
