/*
Theme Name: wp_gdina
Theme URI: https://lukaszwalaszczyk.pl/
Author: ŁW
Author URI: https://lukaszwalaszczyk.pl/
Description: Wordpress Template made by ŁW
Version: 1.1
Tags: lw
Text Domain: wp_gdina
*/


html .wc-block-components-checkbox label {
	font-weight: 400;
}

html .cky-hide.cky-consent-container {
	display: none !important;
}

html .cky-consent-container {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	height: 100%;
	bottom: 0;
	left: 0;
	z-index: 10000;
	display: flex;
    align-items: center;
    justify-content: center ;
}

html .cky-consent-container .cky-consent-bar {
	max-width: 100% ;
	width: 500px;
}

.wpcf7-form-control.wpcf7-acceptance label a {
	color: inherit;
}

.destination-wrapper {
	padding-left:0;
	padding-right:0;
}

p.text-accordion-adnotacja {
	font-size: 0.875rem;
	font-weight: 400;
	margin-top: 2.5rem;
	line-height: 1.4;
}

.button.is-button-full {
	width: 100%;
	text-align: center;
}

.hero-content.is-trip-color .button {
	width: 100%;
	text-align: center;
}

.video-close-btn {
    position: absolute;
    top: -30px;
    right: 0px;
    z-index: 10;
    cursor: pointer;
    background: black;
    border-radius: 0;
    padding: 3px;
    transition: background 0.3s ease;
}

.video-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.img-close-btn {
    width: 20px;
    height: 20px;
    display: block;
	filter: invert(1);
}

.embed-container {
    position: relative;
}

#atuty {
	background-color: whitesmoke;
}

.faq-title-flex {
	align-items: center;
}

.div-photo-item .embed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.embed-container iframe {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.div-photo-item .img-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
	width: 5rem;
}

.div-photo-item {
	position: relative;
}

/* Tabs styling */
.tab-button {
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 0;
    padding: 0.5rem 1rem;
}

.tab-button:hover {
	transform: translateY(-3px);
	background-color: rgba(0, 0, 0, 0.03);
}

.tab-button:hover .check-element {
	transform: scale(1.1);
}

.tab-button.active {
	background-color: rgba(0, 0, 0, 0.06);
	transform: scale(1.05);
}

.tab-button.active .text-check {
	font-weight: 600;
}

.tab-button .check-element {
	transition: transform 0.3s ease;
}

/* Elementy bez opisu - nie klikalne */
.tab-button.no-description {
	cursor: default;
}

.tab-button.no-description:hover {
	transform: none;
	background-color: transparent;
}

.tab-button.no-description:hover .check-element {
	transform: none;
}

.tab-content-wrapper {
	margin-top: 2rem;
}

.tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.tab-content.active {
	display: block;
	opacity: 1;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.text-check a {
	text-decoration: none;
	color: inherit;
}

/* Filters styling */
.filters-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.filter-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.filter-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.filter-btn {
	padding: 0.625rem 1.25rem;
	background-color: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	color: #666;
}

.filter-btn:hover {
	border-color: #999;
	background-color: #f9f9f9;
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-btn.active {
	background-color: var(--dark-background);
	border-color: var(--dark-background);
	color: white;
	font-weight: 600;
}

.filter-btn.active:hover {
	background-color: #000;
	border-color: #000;
}

/* Select dla mobile - domyślnie ukryty */
.filter-select {
	display: none;
	width: 100%;
	padding: 0.75rem 1rem;
	background-color: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 12px;
	padding-right: 2.5rem;
}

.filter-select:focus {
	outline: none;
	border-color: var(--dark-background);
}

.reset-filters-container {
	margin-top: 0.5rem;
}

.reset-filters-link {
	font-size: 0.875rem;
	color: #666;
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.3s ease;
}

.reset-filters-link:hover {
	color: #000;
}

.loading-spinner {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem;
	font-size: 1.125rem;
	color: #666;
}

.no-results,
.error-message {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem;
	background-color: #f9f9f9;
	border-radius: 12px;
	margin-top: 2rem;
}

.no-results p,
.error-message p {
	font-size: 1.125rem;
	color: #666;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.filter-btn {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}
}

/* Mobile filters - selecty zamiast buttonów */
@media screen and (max-width: 479px) {
	.filter-buttons {
		display: none;
	}
	
	.filter-select {
		display: block;
	}
}

.formularz-wyjazdowy .heading_main {
	text-align: center;
}

.form-wyjazd-info {
	max-width: 30rem !important;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

body.page-id-630 .heading_main {
	text-align: center;
}

.gdina-travel-form:not(.gdina-travel-form--participants) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
	width: min(100%, 58rem);
	margin: 0 auto;
}

.gdina-travel-form-field {
	margin: 0;
}

.gdina-travel-form-field--textarea,
.gdina-travel-form-field--checkbox,
.gdina-travel-form-actions {
	grid-column: 1 / -1;
}

.gdina-travel-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.15;
}

.gdina-travel-form .input-field {
	width: 100%;
	max-width: none;
	height: 3.75rem;
	background-color: #fff;
	border-color: rgba(29, 29, 27, 0.16);
	color: var(--black);
	box-shadow: none;
}

.gdina-travel-form .input-field:hover {
	border-color: rgba(29, 29, 27, 0.34);
}

.gdina-travel-form .input-field:focus {
	border-color: var(--black);
	outline: 0;
}

.gdina-travel-form select.input-field {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 1.35rem) 50%, calc(100% - 1rem) 50%;
	background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
	background-repeat: no-repeat;
	padding-right: 2.75rem;
}

.gdina-travel-form .textarea-field {
	min-height: 9rem;
	padding-top: 1rem;
	resize: vertical;
}

.gdina-travel-form-checkbox {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 700;
}

.gdina-travel-form-checkbox input {
	width: 1.15rem;
	height: 1.15rem;
	margin: 0;
}

.gdina-travel-form-actions {
	display: flex;
	justify-content: center;
	margin-top: 0.75rem;
}

.gdina-travel-form-actions .button {
	min-width: 13rem;
}

.wpcf7-form-control.wpcf7-acceptance label {
	font-size: 0.875rem;
	line-height: 1.2;
	font-weight: 400;
	margin-bottom: 0px;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0px;
}

.image-swiper-slide:hover {
	transform: scale(1);
}

.button.submit-absolute {
	transform: none;
	top:6px;
}

.image-day {
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

img {
	height: auto;
}

.w-richtext figure {
	max-width: 100%;
}

.w-richtext div {
	max-width: 100%;
}

.w-richtext .wp-caption-text, .w-richtext .wp-element-caption {
	font-size: 0.75rem;
	line-height: 1.3rem;
	text-align: left;
}

html .wpcf7-not-valid-tip {
	font-size: 0.75rem;
	margin-top: 0.5rem;
}

html .wpcf7 form .wpcf7-response-output {
	margin: 0px;
	margin-top: 1.5rem;
	border-width: 0px;
	padding: 0px;
}

.admin-bar .navbar {
	top: 32px;
}

.simple-text p:last-child {
	margin-bottom: 0px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	 	top: auto;
    bottom: auto;
    margin-top: 2.5rem;
}
.swiper-pagination {
	position: relative;
}
.swiper-pagination-bullet {
	width: 22px;
 	height: 22px;
  background-color: #fff;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.swiper-pagination-bullet-active {
	background-color: var(--light-green);
}
.link-trip-box:hover .image-trip {
	transform: scale(1.04);
}
.link-trip-box:nth-child(4n-7) {
	background-color: var(--yellow);
}
.link-trip-box:nth-child(4n-6) {
	background-color: var(--light-blue);
}
.link-trip-box:nth-child(4n-5) {
	background-color: var(--light-green);
}
.link-trip-box:nth-child(4n-4) {
	background-color: var(--orange);
}
[overflow="hidden"] {
	overflow: hidden;
}
[position="relative"] {
	position: relative;
}
[nav-theme="dark"] .navlink {
	color: var(--white);
}
[nav-theme="dark"] .navlink.w--current {
	color: var(--orange);
}
[nav-theme="dark"] .navbar {
	background-color: var(--dark-background);
}
[nav-theme="dark"] .menu-button {
	color: var(--white);
}
[nav-theme="dark"] .a-link-social, [nav-theme="dark"] .a-brand-logo {
	filter: invert(1);
}
.nav-whatsapp-link {
	filter: grayscale(1) brightness(0.6) contrast(1000%);
}
[nav-theme="dark"] .nav-whatsapp-link {
	filter: invert(1) grayscale(1) brightness(2.5);
}
.gdina-cart-nav-link {
	position: relative;
	width: 1.875rem;
	height: 1.875rem;
	margin-left: 1rem;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.gdina-cart-nav-link:hover,
.gdina-cart-nav-link:focus {
	color: var(--orange);
	opacity: 0.9;
}

.gdina-cart-nav-icon {
	width: 1.75rem;
	height: 1.75rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}

.gdina-cart-nav-count {
	position: absolute;
	top: -0.4rem;
	right: -0.45rem;
	min-width: 1.1rem;
	height: 1.1rem;
	padding: 0 0.25rem;
	border-radius: 999px;
	background: var(--orange);
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.1rem;
	text-align: center;
}

[nav-theme="dark"] .gdina-cart-nav-link {
	color: var(--white);
}
.open-accordion:hover .arrow-box-acc {
	transform: translateY(2px);
  opacity: 0.8;
}
.open-accordion:hover .text-accordion-title {
	opacity: 0.8;
}
.div-popup-component {
	visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.div-popup-component.is-opened {
	visibility: visible;
  opacity: 1;
}
.div-popup-component.is-opened .popup-content {
	transform: translateY(0px);
}

/* Nav dropdown */
.navmenu .dropdown-navlink {
	position: relative;
	display: flex;
	align-items: center;
}

.navmenu .dropdown-navlink > .navlink {
	padding-right: 1rem;
}

.navmenu .dropdown-navlink::after {
	content: "";
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid currentColor;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-45%);
	opacity: 0.7;
	pointer-events: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.navmenu .dropdown-navlink > nav {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: 0;
	min-width: 13rem;
	background: var(--white);
	border-radius: 0.625rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 40;
}

.navmenu .dropdown-navlink:hover > nav,
.navmenu .dropdown-navlink:focus-within > nav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navmenu .dropdown-navlink:hover::after,
.navmenu .dropdown-navlink:focus-within::after {
	transform: translateY(-45%) rotate(180deg);
	opacity: 1;
}

.navmenu .dropdown-navlink:hover > .navlink,
.navmenu .dropdown-navlink:focus-within > .navlink {
	opacity: 0.85;
}

.navmenu .dropdown-link {
	display: block;
	color: var(--black);
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.5rem 1rem;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.navmenu .dropdown-link:hover,
.navmenu .dropdown-link:focus {
	color: var(--orange);
	background-color: rgba(246, 144, 101, 0.12);
}

.gdina-breadcrumbs-wrap {
	background-color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-bar .gdina-breadcrumbs-wrap {
	margin-top: 32px;
}

.gdina-breadcrumbs {
	padding: 0.7rem 0;
}

.gdina-breadcrumbs ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.55rem;
	margin: 0;
	padding: 0;
}

.gdina-breadcrumb-item {
	list-style: none;
	display: inline-flex;
	align-items: center;
	color: rgba(29, 29, 27, 0.72);
	font-size: 0.82rem;
	line-height: 1.35;
	font-weight: 600;
}

.gdina-breadcrumb-item::after {
	content: "/";
	margin-left: 0.55rem;
	color: rgba(29, 29, 27, 0.35);
}

.gdina-breadcrumb-item:last-child::after {
	display: none;
}

.gdina-breadcrumb-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.gdina-breadcrumb-item a:hover,
.gdina-breadcrumb-item a:focus {
	color: var(--orange);
}

.gdina-breadcrumb-item:last-child {
	color: var(--black);
	font-weight: 700;
}

.section-home-blog {
	background-color: #fff;
}

.home-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.home-blog-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 0.85rem;
	overflow: hidden;
	color: var(--black);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-blog-card:hover,
.home-blog-card:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.home-blog-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.home-blog-image-placeholder {
	background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.home-blog-card-content {
	padding: 1rem 1rem 1.2rem;
}

.home-blog-card-date {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(29, 29, 27, 0.58);
}

.home-blog-card-categories {
	margin-top: 0.55rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.home-blog-card-category,
.archive-blog-label {
	display: inline-flex;
	align-items: center;
	border-radius: 99px;
	background: rgba(246, 144, 101, 0.16);
	color: var(--orange);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-blog-card-category {
	padding: 0.22rem 0.5rem;
}

.archive-blog-label {
	margin-bottom: 0.8rem;
	padding: 0.32rem 0.65rem;
}

.home-blog-card-title {
	margin: 0.5rem 0 0;
	font-size: 1.25rem;
	line-height: 1.25;
}

.home-blog-card-excerpt {
	margin-top: 0.75rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: rgba(29, 29, 27, 0.82);
}

.home-blog-card-link {
	margin-top: 1rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--orange);
}

.blog-intro-text {
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.home-blog-pagination {
	margin-top: 2rem;
}

.home-blog-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.home-blog-pagination li {
	margin: 0;
}

.home-blog-pagination a,
.home-blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding: 0.45rem 0.8rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	color: var(--black);
	background: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
}

.home-blog-pagination a:hover,
.home-blog-pagination a:focus {
	color: var(--orange);
	border-color: rgba(246, 144, 101, 0.5);
}

.home-blog-pagination .current {
	background: var(--orange);
	color: var(--white);
	border-color: var(--orange);
}

.section-single-post {
	background-color: #fff;
}

.single-post-header {
	text-align: center;
}

.single-post-meta {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(29, 29, 27, 0.58);
}

.single-post-categories {
	margin-top: 0.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.single-post-category-link {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.55rem;
	border-radius: 99px;
	background: rgba(246, 144, 101, 0.16);
	color: var(--orange);
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.single-post-featured-image {
	width: 100%;
	height: auto;
	max-height: 34rem;
	object-fit: cover;
	border-radius: 0.85rem;
	display: block;
}

.single-post-toc {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0.75rem;
	background: rgba(246, 144, 101, 0.06);
}

.single-post-toc-title {
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--orange);
}

.single-post-toc-list {
	margin: 0.8rem 0 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.45rem;
}

.single-post-toc-item {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.35;
	color: rgba(29, 29, 27, 0.82);
}

.single-post-toc-item.is-level-3 {
	margin-left: 1rem;
}

.single-post-toc-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.single-post-toc-item a:hover,
.single-post-toc-item a:focus {
	color: var(--orange);
}

.single-post-content .w-richtext > *:first-child {
	margin-top: 0;
}

.section-single-post-nav {
	padding-top: 0;
}

.single-post-nav-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.single-post-nav-item {
	min-height: 100%;
}

.single-post-nav-item.is-next {
	text-align: right;
}

.single-post-nav-link {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-height: 100%;
	padding: 1rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: var(--black);
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-post-nav-link:hover,
.single-post-nav-link:focus {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.single-post-nav-label {
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--orange);
}

.single-post-nav-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.text-day-role {
	font-size: 1rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.3;
}

.footer-bottom-menu-wrapper {
	width: 100%;
	margin-top: 1.75rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-menu,
.footer-bottom-menu-wrapper ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	padding-left: 0 !important;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.2rem;
	width: 100%;
}

.footer-bottom-menu li,
.footer-bottom-menu-wrapper li {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.footer-bottom-menu a,
.footer-bottom-menu-wrapper a {
	color: var(--white) !important;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	transition: color 0.2s ease, opacity 0.2s ease;
	display: inline-block;
}

.footer-bottom-menu a:hover,
.footer-bottom-menu a:focus,
.footer-bottom-menu-wrapper a:hover,
.footer-bottom-menu-wrapper a:focus {
	color: var(--light-green) !important;
	opacity: 1;
}

.footer-bottom-menu .current-menu-item > a,
.footer-bottom-menu .current_page_item > a,
.footer-bottom-menu-wrapper .current-menu-item > a,
.footer-bottom-menu-wrapper .current_page_item > a {
	color: var(--light-green) !important;
}

[nav-theme="dark"] .navmenu .dropdown-navlink > nav {
	background: var(--dark-background);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

[nav-theme="dark"] .navmenu .dropdown-link {
	color: var(--white);
}

[nav-theme="dark"] .navmenu .dropdown-link:hover,
[nav-theme="dark"] .navmenu .dropdown-link:focus,
[nav-theme="dark"] .navmenu .dropdown-link.w--current {
	color: var(--light-green);
	background-color: rgba(255, 255, 255, 0.08);
}

@media screen and (max-width: 991px) {
	.home-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-post-featured-image {
		max-height: 26rem;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .gdina-breadcrumbs-wrap {
		margin-top: 46px;
	}

	.home-blog-grid {
		grid-template-columns: 1fr;
	}

	.single-post-nav-grid {
		grid-template-columns: 1fr;
	}

	.single-post-nav-item.is-next {
		text-align: left;
	}
}

.newsletter-popup-component {
	visibility: hidden;
	opacity: 0;
	z-index: 5500;
	background-color: rgba(0, 0, 0, 0.6);
	flex-flow: column;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
	height: 100%;
	padding-top: 7rem;
	padding-bottom: 7rem;
	display: flex;
	position: fixed;
	inset: 0%;
	overflow: auto;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.newsletter-popup-component.is-opened {
	visibility: visible;
	opacity: 1;
}

.newsletter-popup-component.is-opened .newsletter-popup-content {
	transform: translateY(0);
}

.newsletter-popup-content {
	background-color: var(--dark-background);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.15);
	max-width: 72rem;
	padding-bottom: 0;
	overflow: hidden;
}

.newsletter-popup-close {
	z-index: 10;
	cursor: pointer;
	color: var(--white);
	background: transparent;
	border: 0;
	font-size: 2.5rem;
	line-height: 1;
	padding: 0;
	position: absolute;
	inset: 1.5rem 1.5rem auto auto;
}

.newsletter-popup-close:hover {
	opacity: 0.8;
}

.newsletter-popup-flex {
	align-items: center;
}

.newsletter-popup-text .heading_small_02 {
	max-width: 40rem;
}

.newsletter-popup-text .simple-text {
	color: var(--white);
}

.newsletter-popup-discount-info {
	color: var(--light-green);
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.3;
}

.newsletter-popup-discount-info p {
	margin-bottom: 0;
}

.newsletter-popup-image {
	width: 100%;
	max-width: 17rem;
}

.newsletter-popup-border {
	width: calc(100% + 6rem);
	max-width: none;
	margin-top: 2rem;
	margin-left: -3rem;
	margin-right: -3rem;
	display: block;
}

body.newsletter-popup-opened {
	overflow: hidden;
}

.page-id-1020 h2.heading_main {
	display:none;
}

.page-template-page-home h1.heading_hero{
	margin-right: 60px;
	font-size: 6rem;
}

@media only screen and (max-width: 991px) {
	.navmenu .dropdown-navlink {
		display: block;
	}

	.navmenu .dropdown-navlink::after {
		display: none;
	}

	.navmenu .dropdown-navlink > .navlink {
		padding-right: 0;
	}

	.navmenu .dropdown-navlink > nav {
		position: static;
		min-width: 0;
		background: transparent;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		padding: 0.25rem 0 0.75rem 1rem;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.navmenu .dropdown-link {
		font-size: 0.95rem;
		padding: 0.35rem 0;
	}

	[nav-theme="dark"] .navmenu .dropdown-link {
		background: transparent;
	}

	.newsletter-popup-component {
		padding-top: 5rem;
		padding-bottom: 4rem;
	}

	.newsletter-popup-content {
		padding: 2.25rem 2rem 0;
	}

	.newsletter-popup-image {
		max-width: 12rem;
	}
}

@media screen and (max-width: 767px) {
	.newsletter-popup-component {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.newsletter-popup-content {
		padding: 4.75rem 1.25rem 0;
	}

	.newsletter-popup-flex {
		flex-direction: column;
		gap: 1.25rem;
	}

	.newsletter-popup-text,
	.newsletter-popup-photo {
		width: 100%;
	}

	.newsletter-popup-photo {
		align-self: center;
	}

	.newsletter-popup-border {
		width: calc(100% + 2.5rem);
		margin-left: -1.25rem;
		margin-right: -1.25rem;
		margin-top: 1.5rem;
	}
}

.simple-text a {
	color: inherit;
}
@media only screen and (max-width: 991px) {
  [nav-theme="dark"] .navmenu {
    background-color: var(--dark-background);
  }
  [nav-theme="dark"] .menu-button.w--open {
  	background-color: var(--white);
    color: var(--dark-background);
  }
	
	.socials-nav {
		display: block;
		margin-right:1rem;
	}

	.page-template-page-home h1.heading_hero{
		margin-right: 30px;
		font-size: 4rem;
	}
}

@media screen and (max-width: 767px) {
	.filter-buttons {
		gap: 0.5rem;
	}

	.filter-btn {
		font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
	}

	.filters-wrapper {
		gap: 1rem;
	}
}

@media screen and (max-width: 479px) {

	.div-flex-hero-content {
		margin-top: 1rem;
	}

	.hero-content {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.page-template-page-home h1.heading_hero {
		font-size: 3rem;
	}

	.img-hero-chmurka {
		inset: 0rem auto auto 100%;
	}

	.admin-bar .navbar {
		top: 46px;
	}

	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}

	.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
	}

	.img-logo {
		width: 8rem;
	}
	
}

/* Destination Marquee */
.destination-marquee {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.destination-track {
	display: flex;
	gap: 2rem;
	width: max-content;
	animation: marquee-scroll 60s linear infinite;
	will-change: transform;
}

.destination-marquee:hover .destination-track {
	animation-play-state: paused;
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.a-destination-link {
	white-space: nowrap;
	flex-shrink: 0;
}

.gdina-booking-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(8rem, 12rem);
	gap: 0.875rem;
	max-width: 48rem;
	margin-top: 1.5rem;
	align-items: end;
}

.gdina-booking-row {
	margin: 0;
}

.gdina-booking-row label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.gdina-booking-form .input-field {
	width: 100%;
	max-width: none;
	height: 3.75rem;
	background-color: rgba(255, 255, 255, 0.22);
	border-color: rgba(29, 29, 27, 0.22);
	color: var(--black);
	box-shadow: none;
}

.gdina-booking-form .input-field:hover {
	border-color: rgba(29, 29, 27, 0.42);
}

.gdina-booking-form .input-field:focus {
	border-color: var(--black);
	outline: 0;
}

.gdina-booking-form select.input-field {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 1.35rem) 50%, calc(100% - 1rem) 50%;
	background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
	background-repeat: no-repeat;
	padding-right: 2.75rem;
}

.gdina-booking-addons,
.gdina-booking-summary,
.gdina-booking-submit {
	grid-column: 1 / -1;
}

.gdina-booking-addons {
	display: grid;
	gap: 0.5rem;
	margin-top: 0.125rem;
}

.gdina-booking-addon {
	display: flex;
	gap: 0.6rem;
	align-items: center;
	font-weight: 700;
}

.gdina-booking-summary {
	min-height: 1.25rem;
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
}

.gdina-booking-submit.button {
	width: max-content;
	min-width: 16rem;
	background-color: var(--black);
	color: var(--white);
	border: 0;
	border-radius: 2.5rem;
	padding: 0.9rem 2.2rem;
	font-size: 1.1rem;
	font-weight: 800;
	text-align: center;
	cursor: pointer;
}

.gdina-booking-submit.button:hover {
	background-color: var(--light-green);
	color: var(--black);
}

body.woocommerce-order-received {
	background: #f6f5f1;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button,
.wp-block-woocommerce-cart .wc-block-components-button:not(.is-link),
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--orange) !important;
	border: 0;
	color: var(--black) !important;
	font-weight: 800;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text,
.wp-block-woocommerce-cart .wc-block-components-button:not(.is-link) .wc-block-components-button__text,
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text {
	color: inherit;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover,
.wp-block-woocommerce-cart .wc-block-cart__submit-button:focus,
.wp-block-woocommerce-cart .wc-block-components-button:not(.is-link):hover,
.wp-block-woocommerce-cart .wc-block-components-button:not(.is-link):focus,
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:focus {
	background-color: var(--light-green) !important;
	color: var(--black) !important;
}

body.woocommerce-order-received .section:first-of-type {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

body.woocommerce-order-received .woocommerce {
	max-width: 72rem;
	margin: 0 auto;
	color: var(--black);
}

body.woocommerce-order-received .woocommerce-order {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.35rem;
}

body.woocommerce-order-received .heading_main {
	max-width: 58rem;
	margin-bottom: 1rem;
	font-size: clamp(3rem, 7vw, 6.25rem);
	line-height: 0.92;
}

body.woocommerce-order-received .woocommerce-notice--success {
	position: relative;
	margin: 0 0 1rem;
	padding: 1.25rem 1.5rem 1.25rem 4.2rem;
	background: var(--light-green);
	color: var(--black);
	border-radius: 0;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.35;
}

body.woocommerce-order-received .woocommerce-notice--success::before {
	content: "";
	position: absolute;
	left: 1.4rem;
	top: 50%;
	width: 1.65rem;
	height: 1.65rem;
	border: 3px solid currentColor;
	transform: translateY(-50%);
}

body.woocommerce-order-received .woocommerce-notice--success::after {
	content: "";
	position: absolute;
	left: 2.05rem;
	top: 50%;
	width: 0.42rem;
	height: 0.82rem;
	border-bottom: 3px solid currentColor;
	border-right: 3px solid currentColor;
	transform: translateY(-58%) rotate(45deg);
}

body.woocommerce-order-received .woocommerce-order-overview {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--white);
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 0;
	overflow: hidden;
}

body.woocommerce-order-received .woocommerce-order-overview::before,
body.woocommerce-order-received .woocommerce-order-overview::after {
	display: none;
	content: none;
}

body.woocommerce-order-received .woocommerce-order-overview li {
	display: block;
	margin: 0;
	padding: 1rem 1.5rem;
	border-right: 0;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
	font-size: 0.78rem;
	font-weight: 400;
	line-height: 1.25;
	text-transform: uppercase;
	color: rgba(29, 29, 27, 0.62);
}

body.woocommerce-order-received .woocommerce-order-overview li:first-child {
	border-top: 0;
}

body.woocommerce-order-received .woocommerce-order-overview strong {
	display: block;
	margin-top: 0.25rem;
	color: var(--black);
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.15;
	text-transform: none;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details,
body.woocommerce-order-received .woocommerce-additional-fields,
body.woocommerce-order-received .wc-block-order-confirmation-additional-fields-wrapper {
	background: var(--white);
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 0;
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title,
body.woocommerce-order-received .woocommerce-additional-fields h2,
body.woocommerce-order-received .wc-block-order-confirmation-additional-fields-wrapper h2 {
	margin: 0;
	padding: 1.35rem 1.5rem 1rem;
	font-size: 1.7rem;
	line-height: 1.05;
}

body.woocommerce-order-received .woocommerce-customer-details .wc-block-order-confirmation-additional-fields-wrapper {
	border: 0;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
	overflow: visible;
}

body.woocommerce-order-received table.shop_table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	background: transparent;
}

body.woocommerce-order-received table.shop_table th,
body.woocommerce-order-received table.shop_table td {
	padding: 1rem 1.5rem;
	border: 0;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
	font-size: 1rem;
	line-height: 1.35;
	vertical-align: top;
}

body.woocommerce-order-received table.shop_table th {
	font-weight: 400;
}

body.woocommerce-order-received table.shop_table thead th {
	background: rgba(29, 29, 27, 0.04);
	text-align: left;
	text-transform: uppercase;
	font-size: 0.85rem;
	font-weight: 900;
	letter-spacing: 0;
}

body.woocommerce-order-received table.shop_table td:last-child,
body.woocommerce-order-received table.shop_table th:last-child {
	text-align: right;
}

body.woocommerce-order-received table.shop_table tfoot th,
body.woocommerce-order-received table.shop_table tfoot td,
body.woocommerce-order-received table.shop_table tfoot td * {
	font-size: 1rem;
	font-weight: 400;
}

body.woocommerce-order-received table.shop_table .woocommerce-Price-amount {
	font-weight: 400;
}

body.woocommerce-order-received .woocommerce-table__product-name a {
	color: var(--black);
	font-weight: 900;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.16em;
}

body.woocommerce-order-received .woocommerce-table__product-name .wc-item-meta {
	margin: 0.5rem 0 0;
	padding: 0;
	list-style: none;
	color: rgba(29, 29, 27, 0.82);
}

body.woocommerce-order-received .woocommerce-customer-details address {
	margin: 0;
	padding: 1.2rem 1.5rem 1.5rem;
	border: 0;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
	font-style: normal;
	font-size: 1.05rem;
	line-height: 1.55;
}

body.woocommerce-order-received .woocommerce-customer-details--phone,
body.woocommerce-order-received .woocommerce-customer-details--email {
	margin-top: 0.65rem;
}

body.woocommerce-order-received .woocommerce-additional-fields table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
}

body.woocommerce-order-received .woocommerce-additional-fields > *:not(h2):not(table),
body.woocommerce-order-received .woocommerce-additional-fields .woocommerce-table {
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}

body.woocommerce-order-received .woocommerce-additional-fields th,
body.woocommerce-order-received .woocommerce-additional-fields td {
	padding: 1rem 1.5rem;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
	font-size: 1rem;
	line-height: 1.4;
	vertical-align: top;
}

body.woocommerce-order-received .woocommerce-additional-fields th {
	width: 55%;
	text-align: left;
	font-weight: 400;
}

body.woocommerce-order-received .woocommerce-additional-fields td {
	text-align: right;
}

body.woocommerce-order-received .wc-block-components-additional-fields-list {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
}

body.woocommerce-order-received .wc-block-components-additional-fields-list dt,
body.woocommerce-order-received .wc-block-components-additional-fields-list dd {
	margin: 0;
	padding: 1rem 1.5rem !important;
	font-size: 1rem;
	font-weight: 400 !important;
	line-height: 1.4;
	border-top: 1px solid rgba(29, 29, 27, 0.1);
}

body.woocommerce-order-received .wc-block-components-additional-fields-list dt {
	color: rgba(29, 29, 27, 0.68);
}

body.woocommerce-order-received .wc-block-components-additional-fields-list dt:first-child,
body.woocommerce-order-received .wc-block-components-additional-fields-list dt:first-child + dd {
	border-top: 0;
}

body.woocommerce-order-received .wc-block-components-additional-fields-list dd {
	color: var(--black);
	text-align: right;
}

@media screen and (max-width: 767px) {
	body.woocommerce-order-received .section:first-of-type {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	body.woocommerce-order-received table.shop_table td:last-child,
	body.woocommerce-order-received table.shop_table th:last-child,
	body.woocommerce-order-received .woocommerce-additional-fields td {
		text-align: left;
	}

	body.woocommerce-order-received .woocommerce-additional-fields th,
	body.woocommerce-order-received .woocommerce-additional-fields td {
		display: block;
		width: 100%;
	}

	body.woocommerce-order-received .woocommerce-additional-fields td {
		padding-top: 0;
		border-top: 0;
	}

	body.woocommerce-order-received .wc-block-components-additional-fields-list {
		grid-template-columns: minmax(0, 1fr);
	}

	body.woocommerce-order-received .wc-block-components-additional-fields-list dd {
		padding-top: 0 !important;
		text-align: left;
		border-top: 0;
	}
}

@media screen and (max-width: 479px) {
	body.woocommerce-order-received table.shop_table th,
	body.woocommerce-order-received table.shop_table td,
	body.woocommerce-order-received .woocommerce-customer-details address,
	body.woocommerce-order-received .woocommerce-additional-fields th,
	body.woocommerce-order-received .woocommerce-additional-fields td,
	body.woocommerce-order-received .wc-block-components-additional-fields-list dt,
	body.woocommerce-order-received .wc-block-components-additional-fields-list dd {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media screen and (max-width: 767px) {
	.gdina-travel-form:not(.gdina-travel-form--participants) {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 1rem;
	}

	.gdina-travel-form-actions .button {
		width: 100%;
		min-width: 0;
	}

	.gdina-booking-form {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.gdina-booking-submit.button {
		width: 100%;
		min-width: 0;
	}
}
