/**
 * Gestione Viaggi — Stylesheet
 * Plugin: Gestione Viaggi v0.2.0
 * Author: Stefano Casoar - Gaw Digital Solutions
 *
 * Palette colori:
 *   --gv-dark:        #111111  (testo, bottoni, CTA)
 *   --gv-bg:          #f4f2ee  (sfondo form/searchbar)
 *   --gv-border:      #e8e3da  (bordi card, filtri)
 *   --gv-pill-bg:     #f7f3ed  (sfondo pill/tag)
 *   --gv-pill-border: #e8dfd4  (bordo pill/tag)
 *   --gv-muted:       #555555  (testo secondario)
 *   --gv-white:       #ffffff  (sfondo card)
 */

/* =============================================================
   1. SEARCH FORM [viaggi_cerca]
   ============================================================= */

.gv-viaggi-cerca {
	margin: 16px 0;
}

.gv-riga {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: flex-end;
}

.gv-campo {
	display: flex;
	flex-direction: column;
	min-width: 180px;
}

.gv-campo label {
	font-size: 12px;
	margin-bottom: 6px;
	opacity: .75;
}

.gv-campo select,
.gv-campo input[type="text"],
.gv-campo .gv-dd__trigger {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 10px;
}

.gv-azioni {
	min-width: 220px;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}

.gv-azioni button {
	padding: 10px 14px;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	background: #111111;
	color: #ffffff;
}

.gv-azioni button:hover {
	background: #242424;
}

.gv-reset {
	font-size: 14px;
	text-decoration: underline;
	color: #111111;
}

/* =============================================================
   0. SELECT NATIVO DESTINAZIONI [.gv-select-native]
   ============================================================= */

.gv-select-native {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 14px;
	color: #111111;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.gv-select-native option[disabled] {
	color: #999;
	font-weight: 700;
}

/* =============================================================
   2. SEARCH BAR [viaggi_search_bar]
   ============================================================= */

.gv-searchbar-wrap {
	width: 100%;
	margin: 0;
}

.gv-searchbar {
	display: grid;
	gap: 0;
	align-items: stretch;
	background: #f4f2ee;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.gv-searchbar__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 26px 30px 20px;
	border-right: 1px solid rgba(17, 17, 17, .08);
	min-height: 118px;
	background: #f4f2ee;
}

.gv-searchbar__label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
	color: #111111;
}

.gv-searchbar__icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #111111;
}

.gv-searchbar__item select {
	width: 100%;
	height: 42px;
	border: 0;
	background-color: transparent;
	padding: 0 32px 0 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.4;
	color: #a0a0a0;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
	outline: none;
	cursor: pointer;
	background-image:
		linear-gradient(45deg, transparent 50%, #8d8d8d 50%),
		linear-gradient(135deg, #8d8d8d 50%, transparent 50%);
	background-position:
		calc(100% - 18px) calc(50% - 1px),
		calc(100% - 12px) calc(50% - 1px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.gv-searchbar__item select:focus {
	outline: none;
	box-shadow: none;
}

.gv-searchbar__item select option {
	color: #111111;
	background-color: #ffffff;
}

.gv-searchbar__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 26px;
	background: #f4f2ee;
	min-width: 250px;
}

.gv-searchbar__submit button {
	width: 100%;
	min-width: 210px;
	height: 82px;
	border: 0;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
}

.gv-searchbar__submit button:hover {
	background: #242424;
}

.gv-searchbar__submit button:focus-visible {
	outline: 3px solid #111111;
	outline-offset: 3px;
}

@media (max-width: 1200px) {
	.gv-searchbar {
		grid-template-columns: 1fr 1fr !important;
		border-radius: 28px;
	}

	.gv-searchbar__submit {
		grid-column: 1 / -1;
		padding-top: 0;
		padding-bottom: 26px;
	}
}

@media (max-width: 767px) {
	.gv-searchbar {
		grid-template-columns: 1fr !important;
		border-radius: 22px;
	}

	.gv-searchbar__item {
		min-height: auto;
		padding: 22px 22px 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(17, 17, 17, .08);
	}

	.gv-searchbar__submit {
		padding: 18px 22px 22px;
	}

	.gv-searchbar__submit button {
		min-width: 100%;
		height: 62px;
		font-size: 16px;
	}
}

/* =============================================================
   3. FILTERS SIDEBAR [viaggi_filters_sidebar]
   ============================================================= */

.gv-filters-sidebar {
	width: 100%;
	position: sticky !important;
	top: 100px !important;
	max-height: calc( 100vh - 120px );
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #ddd transparent;
}

.gv-filters-sidebar::-webkit-scrollbar {
	width: 3px;
}

.gv-filters-sidebar::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 3px;
}

.gv-filters-box {
	background: #ffffff;
	border: 1px solid #e8e3da;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.gv-filters-title {
	margin: 0 0 18px;
	font-size: 22px;
	line-height: 1.2;
}

.gv-filter-group {
	margin-bottom: 16px;
}

.gv-filter-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #222222;
}

.gv-filter-group select {
	width: 100%;
	min-height: 48px;
	border: 1px solid #ddd6ca;
	border-radius: 14px;
	background: #ffffff;
	padding: 12px 14px;
	font-size: 15px;
	color: #111111;
}

.gv-filter-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 22px;
}

.gv-filter-submit {
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease;
}

.gv-filter-submit:hover {
	background: #242424;
}

.gv-filter-submit:focus-visible {
	outline: 3px solid #111111;
	outline-offset: 3px;
}

.gv-filter-reset {
	text-align: center;
	font-size: 14px;
	color: #111111;
	text-decoration: underline;
}

/* =============================================================
   4. RESULTS GRID [viaggi_risultati]
   ============================================================= */

.gv-results-head {
	margin-bottom: 24px;
}

.gv-results-count {
	margin: 0 0 12px;
	font-size: 15px;
	color: #4c4c4c;
}

.gv-results-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gv-filter-pill {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f4efe7;
	border: 1px solid #e6ddd0;
	font-size: 13px;
	color: #222222;
}

.gv-results-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* Card viaggio */
.gv-result-card {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	overflow: hidden;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid #e9e2d7;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
}

.gv-result-image {
	display: block;
	min-height: 100%;
	background: #f3f3f3;
}

.gv-result-image img,
.gv-empty-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gv-result-image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 260px;
	background: #efefef;
}

.gv-result-content {
	display: flex;
	flex-direction: column;
	padding: 28px;
}

.gv-result-destination {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #7b7b7b;
}

.gv-result-title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.15;
}

.gv-result-title a {
	color: #111111;
	text-decoration: none;
}

.gv-result-title a:hover {
	text-decoration: underline;
}

.gv-result-excerpt {
	margin-bottom: 18px;
	font-size: 15px;
	line-height: 1.6;
	color: #555555;
}

.gv-result-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	margin-bottom: 22px;
}

.gv-result-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f7f3ed;
	border: 1px solid #e8dfd4;
	font-size: 13px;
	color: #222222;
}

.gv-result-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-top: auto;
}

.gv-result-price {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.gv-result-price-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #777777;
}

.gv-result-price strong {
	font-size: 24px;
	line-height: 1;
	color: #111111;
}

.gv-result-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: background .2s ease;
}

.gv-result-cta:hover {
	background: #242424;
	color: #ffffff;
}

/* Stato vuoto */
.gv-empty-results {
	padding: 34px;
	border: 1px solid #e9e2d7;
	border-radius: 24px;
	background: #ffffff;
}

.gv-empty-results h2 {
	margin: 0 0 10px;
	font-size: 30px;
	line-height: 1.15;
}

.gv-empty-results p {
	margin: 0 0 22px;
	color: #555555;
}

.gv-empty-suggestions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.gv-empty-card {
	overflow: hidden;
	border: 1px solid #e9e2d7;
	border-radius: 18px;
	background: #ffffff;
}

.gv-empty-card-link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.gv-empty-card-image {
	display: block;
	min-height: 180px;
	background: #f2f2f2;
}

.gv-empty-card-title {
	display: block;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

/* Paginazione */
.gv-paginazione {
	margin-top: 26px;
}

.gv-paginazione .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	margin-right: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #ddd6ca;
	text-decoration: none;
	color: #111111;
	background: #ffffff;
}

.gv-paginazione .page-numbers.current {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

@media (max-width: 1024px) {
	.gv-result-card {
		grid-template-columns: 1fr;
	}

	.gv-result-image-placeholder,
	.gv-result-image img {
		min-height: 260px;
		height: 260px;
	}

	.gv-empty-suggestions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.gv-result-content {
		padding: 22px;
	}

	.gv-result-title {
		font-size: 24px;
	}

	.gv-result-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.gv-result-cta {
		width: 100%;
		justify-content: center;
	}
}

/* =============================================================
   5. PROGRAMMA ACCORDION [viaggio_programma]
   ============================================================= */

.gv-programma {
	margin: 10px 0;
}

/* Layout lista */
.gv-programma-list .gv-day {
	border: 1px solid #eeeeee;
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 10px;
}

.gv-day-head {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.gv-day-km {
	opacity: .75;
	font-size: 13px;
	white-space: nowrap;
}

.gv-day-body {
	font-size: 15px;
	line-height: 1.6;
}

/* Layout accordion */
.gv-programma-accordion .gv-acc-item {
	border: 1px solid #eeeeee;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 10px;
	background: #ffffff;
}

.gv-acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	cursor: pointer;
	background: #ffffff;
	border: 0;
	text-align: left;
}

.gv-acc-btn:focus-visible {
	outline: 3px solid #111111;
	outline-offset: -3px;
}

.gv-acc-title {
	font-weight: 600;
	flex: 1;
}

.gv-acc-meta {
	opacity: .75;
	font-size: 13px;
	white-space: nowrap;
}

.gv-acc-icon {
	font-weight: 700;
	transition: transform .2s ease;
	flex-shrink: 0;
}

.gv-acc-panel {
	display: none;
}

.gv-acc-panel-inner {
	padding: 0 16px 16px;
	font-size: 15px;
	line-height: 1.6;
}

.gv-acc-item.is-open .gv-acc-panel {
	display: block;
}

.gv-acc-item.is-open .gv-acc-icon {
	transform: rotate(45deg);
}

/* =============================================================
   6. CARD VIAGGIO BEM [gv-card]
   ============================================================= */

.gv-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #111111;
	aspect-ratio: 3 / 4;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.gv-card__image-link {
	display: block;
	position: absolute;
	inset: 0;
}

.gv-card__image {
	position: absolute;
	inset: 0;
}

.gv-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.gv-card__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #2a2a2a;
}

.gv-card:hover .gv-card__image img {
	transform: scale( 1.04 );
}

/* Overlay slide-up */
.gv-card__overlay {
	position: absolute;
	inset: auto 0 0;
	padding: 20px 22px 22px;
	background: linear-gradient( to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 60%, transparent 100% );
	transform: translateY( calc( 100% - 80px ) );
	transition: transform .32s ease;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gv-card:hover .gv-card__overlay,
.gv-card:focus-within .gv-card__overlay {
	transform: translateY( 0 );
}

.gv-card__overlay,
.gv-card__overlay * {
	color: #ffffff !important;
}

.gv-card:hover .gv-card__overlay,
.gv-card:hover .gv-card__overlay * {
	color: rgba(255,255,255,0.88) !important;
}

/* Bottone "Scopri il viaggio" resta bianco pieno */
.gv-card__cta {
	color: #111111 !important;
	background: #ffffff !important;
}

.gv-card:hover .gv-card__cta {
	color: #111111 !important;
	background: rgba(255,255,255,0.92) !important;
}

.gv-card__destination {
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: .8;
}

.gv-card__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
}

.gv-card__title a {
	color: #ffffff;
	text-decoration: none;
}

.gv-card__title a::after {
	content: '';
	position: absolute;
	inset: 0;
}

.gv-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.gv-card__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.gv-card__price-from {
	font-size: 11px;
	opacity: .75;
}

.gv-card__price strong {
	font-size: 18px;
	font-weight: 700;
}

.gv-card__tag {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.3);
	font-size: 12px;
	opacity: .9;
}

.gv-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 40px;
	padding: 8px 18px;
	border-radius: 999px;
	background: #ffffff;
	color: #111111;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	transition: background .2s ease, color .2s ease;
	margin-top: 4px;
}

.gv-card__cta:hover {
	background: #f0ebe2;
	color: #111111;
}

/* Skeleton card */
.gv-card--skeleton {
	pointer-events: none;
}

.gv-skeleton {
	background: linear-gradient( 90deg, #e8e3da 25%, #f4f0ea 50%, #e8e3da 75% );
	background-size: 200% 100%;
	animation: gv-shimmer 1.4s infinite;
	border-radius: 8px;
}

.gv-skeleton.gv-card__image {
	border-radius: 0;
}

.gv-skeleton--text {
	height: 14px;
	margin-bottom: 8px;
}

.gv-skeleton--title {
	height: 22px;
	width: 90%;
	margin-bottom: 8px;
}

@keyframes gv-shimmer {
	0%   { background-position: -200% 0; }
	100% { background-position:  200% 0; }
}

/* =============================================================
   7. GRIGLIA RISULTATI 3 COLONNE
   ============================================================= */

.gv-results-grid {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 22px;
}

@media (max-width: 1100px) {
	.gv-results-grid {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}
}

@media (max-width: 640px) {
	.gv-results-grid {
		grid-template-columns: 1fr;
	}
}

/* Sort select */
.gv-results-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
}

.gv-sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gv-sort-label {
	font-size: 13px;
	color: #555555;
	white-space: nowrap;
}

.gv-sort-select {
	min-height: 38px;
	padding: 6px 12px;
	border: 1px solid #ddd6ca;
	border-radius: 999px;
	background: #ffffff;
	font-size: 14px;
	color: #111111;
	cursor: pointer;
}

/* Load more */
.gv-load-more-wrap {
	margin-top: 32px;
	text-align: center;
}

.gv-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 32px;
	border: 2px solid #111111;
	border-radius: 999px;
	background: transparent;
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.gv-load-more:hover {
	background: #111111;
	color: #ffffff;
}

/* =============================================================
   8. ACTIVE PILLS (filtri attivi rimovibili)
   ============================================================= */

.gv-active-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gv-active-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	padding: 4px 12px;
	border-radius: 999px;
	background: #f4efe7;
	border: 1px solid #e6ddd0;
	font-size: 13px;
	color: #222222;
	cursor: pointer;
	transition: background .15s ease;
}

.gv-active-pill:hover {
	background: #ece4d8;
}

/* =============================================================
   9. LAYOUT PAGINA RICERCA [viaggi_pagina_ricerca]
   ============================================================= */

.gv-page-ricerca {
	display: grid;
	grid-template-columns: 280px minmax( 0, 1fr );
	gap: 32px;
	align-items: start;
}

.gv-page-ricerca__sidebar {
	position: sticky;
	top: 24px;
}

@media (max-width: 1024px) {
	.gv-page-ricerca {
		grid-template-columns: 1fr;
	}

	.gv-page-ricerca__sidebar {
		position: static;
	}
}

/* =============================================================
   10. CHECKBOX FILTRI SIDEBAR
   ============================================================= */

/* Header sidebar */
.gv-filters-header {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 10px !important;
	padding-bottom: 14px !important;
	border-bottom: 1.5px solid #111111 !important;
	margin-bottom: 8px !important;
}

.gv-filters-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #111111 !important;
	margin: 0 !important;
	white-space: nowrap !important;
}

/* Bottone Azzera filtri */
.gv-filter-reset-all {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 6px 14px !important;
	background: transparent !important;
	border: 1.5px solid #111111 !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	color: #111111 !important;
	text-decoration: none !important;
	transition: all .2s ease !important;
	white-space: nowrap;
}

.gv-filter-reset-all:hover {
	background: #111111 !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

.gv-filter-reset-all.is-hidden {
	opacity: .35;
	pointer-events: none;
}

/* Fix gap checkbox — alta specificità per override reset Elementor */
.gv-filters-box .gv-cb-label {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 6px 0 !important;
	cursor: pointer;
}

.gv-filters-box .gv-cb-label input[type="checkbox"],
.gv-filters-box input[type="checkbox"] {
	flex-shrink: 0;
	margin: 0 !important;
	margin-right: 10px !important;
	width: 17px;
	height: 17px;
}

/* Titolo gruppo filtro — stile normale, NON cerchio */
.gv-filter-group-toggle {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 12px 0 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #111111 !important;
	cursor: pointer !important;
	box-shadow: none !important;
	height: auto !important;
	min-width: unset !important;
}

.gv-filter-group-icon {
	font-size: 16px !important;
	font-weight: 300 !important;
	color: #111111 !important;
	width: auto !important;
	height: auto !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
}

/* Bottone +/- figli destinazioni — solo questo diventa cerchio */
.gv-cb-toggle {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	border-radius: 50% !important;
	background: transparent !important;
	border: 1.5px solid #d0c9be !important;
	color: #111111 !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	transition: all .2s ease !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.gv-cb-toggle:hover {
	background: #111111 !important;
	border-color: #111111 !important;
	color: #ffffff !important;
}

/* Gruppi filtro */
.gv-filter-group {
	border-bottom: 1px solid #f0ebe4;
	margin-bottom: 0;
	padding: 14px 0;
}

.gv-filter-group:last-child {
	border-bottom: 0;
}

.gv-filter-group-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 14px;
	font-weight: 700;
	color: #111111;
	cursor: pointer;
	text-align: left;
}

.gv-filter-group-icon {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
}

.gv-filter-group-body {
	padding-top: 8px;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* Checkbox labels */
.gv-cb-label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	cursor: pointer;
}

.gv-cb-label input[type="checkbox"] {
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	min-width: 17px;
	border-radius: 4px;
	accent-color: #111111;
	cursor: pointer;
}

.gv-cb-name {
	flex: 1;
	font-size: 14px;
	color: #555555;
	line-height: 1.3;
	transition: color .15s;
}

.gv-cb-label:hover .gv-cb-name {
	color: #111111;
}

.gv-cb-label input:checked ~ .gv-cb-name {
	color: #111111;
	font-weight: 500;
}

/* Gruppo con gerarchia */
.gv-cb-group {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gv-cb-row {
	display: flex;
	align-items: center;
	gap: 4px;
}

.gv-cb-row .gv-cb-label {
	flex: 1;
}

.gv-cb-toggle {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: transparent;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	color: #666666;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gv-cb-children {
	padding-left: 20px;
	margin-top: 2px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gv-cb-depth-1 > .gv-cb-row .gv-cb-label {
	font-size: 13px;
	color: #555555;
}

/* =============================================================
   11. STATI EMPTY / ERROR
   ============================================================= */

.gv-empty-state {
	padding: 40px 28px;
	border: 1px solid #e9e2d7;
	border-radius: 24px;
	background: #ffffff;
	text-align: center;
}

.gv-empty-state__msg {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: #111111;
}

.gv-empty-state__hint {
	margin: 0 0 20px;
	color: #555555;
}

.gv-empty-state__reset {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 24px;
	border: 2px solid #111111;
	border-radius: 999px;
	background: transparent;
	color: #111111;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.gv-error-message {
	padding: 28px;
	border: 1px solid #f5c6c6;
	border-radius: 14px;
	background: #fff5f5;
	color: #c0392b;
	font-size: 15px;
	text-align: center;
}

/* =============================================================
   12. SINGLE VIAGGIO — HERO FEATURED IMAGE
   ============================================================= */

html body .gv-single-hero {
	position: relative !important;
	width: 100% !important;
	height: 520px !important;
	min-height: 520px !important;
	max-height: none !important;
	display: flex !important;
	align-items: flex-end !important;
	overflow: hidden !important;
	margin: 0 !important;
}

html body .gv-single-hero__bg {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 520px !important;
	display: block !important;
	z-index: 0 !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

html body .gv-single-hero:hover .gv-single-hero__bg {
	transform: none !important;
	transition: none !important;
}

html body .gv-single-hero__overlay {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.10) 0%,
		rgba(0,0,0,0.65) 100%
	) !important;
	z-index: 1 !important;
}

html body .gv-single-hero__content {
	position: relative !important;
	z-index: 2 !important;
	padding: 0 60px 50px !important;
	max-width: 800px !important;
	width: 100% !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

html body .gv-single-hero__title {
	font-size: clamp(28px, 4vw, 52px) !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

@media (max-width: 1024px) {
	html body .gv-single-hero { height: 380px !important; min-height: 380px !important; }
	html body .gv-single-hero__bg { min-height: 380px !important; }
	html body .gv-single-hero__content { padding: 0 32px 40px !important; }
}

@media (max-width: 767px) {
	html body .gv-single-hero { height: 260px !important; min-height: 260px !important; }
	html body .gv-single-hero__bg { min-height: 260px !important; }
	html body .gv-single-hero__content { padding: 0 20px 28px !important; }
	html body .gv-single-hero__title { font-size: 24px !important; }
}

/* =============================================================
   12b. SINGLE VIAGGIO — HERO GALLERY SLIDER
   ============================================================= */

/* Slider duplicato nascosto: l'hero sopra mostra già la stessa immagine */
html body .gv-single-page .gv-slider {
	display: none !important;
}

.gv-slider {
	position: relative;
	overflow: hidden;
	background: #111111;
	aspect-ratio: 16 / 9;
	user-select: none;
}

.gv-slider__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .4s cubic-bezier(.25,.46,.45,.94);
	will-change: transform;
}

.gv-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.gv-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

/* Arrows */
.gv-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.6);
	background: rgba(0,0,0,.35);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background .2s ease, border-color .2s ease;
}

.gv-slider__arrow:hover {
	background: rgba(0,0,0,.6);
	border-color: #ffffff;
}

.gv-slider__arrow--prev { left: 16px; }
.gv-slider__arrow--next { right: 16px; }

/* Dots */
.gv-slider__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.gv-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.7);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease;
}

.gv-slider__dot.is-active {
	background: #ffffff;
	transform: scale(1.25);
}

@media (max-width: 767px) {
	.gv-slider {
		aspect-ratio: 4 / 3;
	}

	.gv-slider__arrow {
		width: 38px;
		height: 38px;
	}
}

/* =============================================================
   13. SINGLE VIAGGIO — LAYOUT
   ============================================================= */

.gv-single-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.gv-single-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
	padding-top: 32px;
	padding-bottom: 64px;
}

.gv-single-title {
	margin: 0 0 16px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	color: #111111;
}

.gv-single-excerpt {
	margin-bottom: 28px;
	font-size: 17px;
	line-height: 1.7;
	color: #555555;
}

/* Sezioni ancorate */
.gv-single-section {
	padding: 48px 0;
	border-bottom: 1px solid #f0ece5;
	scroll-margin-top: 80px;
}

.gv-single-section:last-child {
	border-bottom: none;
}

.gv-section-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: #111111;
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid #111111;
}

.gv-section-content {
	font-size: 15px;
	line-height: 1.8;
	color: #444444;
}

.gv-section-content p { margin-bottom: 12px; }

.gv-section-content ul {
	padding-left: 20px;
	margin-bottom: 12px;
}

.gv-section-content li { margin-bottom: 6px; }

/* Programma WYSIWYG */
.gv-programma-content h1,
.gv-programma-content h2 {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #111111 !important;
	margin: 24px 0 12px !important;
	padding-bottom: 8px !important;
	border-bottom: 1px solid #f0ece5 !important;
}

.gv-programma-content h3 {
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #333333 !important;
	margin: 16px 0 8px !important;
}

.gv-programma-content ul {
	padding-left: 20px !important;
	margin-bottom: 12px !important;
}

.gv-programma-content li {
	margin-bottom: 6px !important;
	line-height: 1.6 !important;
}

.gv-programma-content strong {
	font-weight: 600 !important;
	color: #111111 !important;
}

.gv-empty-section {
	color: #888888;
	font-style: italic;
	margin: 0;
}

/* Tabella prezzi WYSIWYG */
.gv-tabella-prezzi-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
	font-size: 14px;
}

.gv-tabella-prezzi-content th,
.gv-tabella-prezzi-content td {
	border: 1px solid #e8e3da;
	padding: 10px 14px;
	text-align: center;
	vertical-align: middle;
}

.gv-tabella-prezzi-content thead th,
.gv-tabella-prezzi-content tr:first-child td {
	background: #f4f2ee;
	font-weight: 700;
	color: #111111;
}

@media (max-width: 767px) {
	.gv-tabella-prezzi-content table {
		font-size: 12px;
	}
	.gv-tabella-prezzi-content th,
	.gv-tabella-prezzi-content td {
		padding: 7px 8px;
	}
}

/* Grid incluso / non incluso */
.gv-incluso-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.gv-incluso-box {
	padding: 24px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.7;
}

.gv-incluso-box h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.gv-incluso-box--yes {
	background: #f0faf4;
	border: 1px solid #c3e6cb;
}

.gv-incluso-box--yes h3 { color: #2d6a4f; }
.gv-incluso-box--yes .gv-incluso-icon { color: #2d6a4f; }

.gv-incluso-box--no {
	background: #fff5f5;
	border: 1px solid #f5c6cb;
}

.gv-incluso-box--no h3 { color: #721c24; }
.gv-incluso-box--no .gv-incluso-icon { color: #721c24; }

/* Breadcrumb */
.gv-breadcrumb-wrap {
	position: relative !important;
	z-index: 1 !important;
	background: #ffffff;
	border-bottom: 1px solid #f0ece5;
}

.gv-breadcrumb {
	padding: 14px 0 !important;
	font-size: 13px !important;
	color: #888888 !important;
}

.gv-breadcrumb a {
	color: #888888 !important;
	text-decoration: none !important;
}

.gv-breadcrumb a:hover {
	color: #111111 !important;
}

.gv-breadcrumb span {
	margin: 0 6px !important;
	color: #cccccc !important;
}

.gv-breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	font-size: 13px;
	color: #777777;
}

.gv-breadcrumb__item:not(:last-child)::after {
	content: '/';
	margin-left: 6px;
	opacity: .4;
}

.gv-breadcrumb__item a {
	color: #555555;
	text-decoration: none;
}

.gv-breadcrumb__item a:hover {
	text-decoration: underline;
}

.gv-breadcrumb__item--current span {
	color: #111111;
	font-weight: 500;
}

/* Anchor nav */
.gv-anchors {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #ffffff;
	border-bottom: 1px solid #e8e3da;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.gv-anchors__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.gv-anchors__inner::-webkit-scrollbar {
	display: none;
}

.gv-anchor-link {
	display: inline-flex;
	align-items: center;
	height: 52px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	color: #555555;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: color .2s ease, border-color .2s ease;
}

.gv-anchor-link:hover,
.gv-anchor-link.is-active {
	color: #111111;
	border-bottom-color: #111111;
}

.gv-anchor-link--cta {
	margin-left: auto;
	color: #111111;
	font-weight: 700;
}

/* =============================================================
   14. SINGLE VIAGGIO — SIDEBAR STICKY
   ============================================================= */

.gv-single-sidebar {
	position: sticky;
	top: 68px;
	background: #ffffff;
	border: 1px solid #e8e3da;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 12px 40px rgba(0,0,0,.07);
}

.gv-sidebar-price {
	margin-bottom: 20px;
}

.gv-sidebar-price-from {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #777777;
	margin-bottom: 4px;
}

.gv-sidebar-price-value {
	font-size: 32px;
	font-weight: 800;
	color: #111111;
	line-height: 1;
}

.gv-sidebar-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
	margin-bottom: 12px;
}

.gv-sidebar-cta--primary {
	background: #111111;
	color: #ffffff;
}

.gv-sidebar-cta--primary:hover {
	background: #2c2c2c;
	color: #ffffff;
}

/* Meta */
.gv-sidebar-meta {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
	border-top: 1px solid #f0ebe4;
	padding-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gv-sidebar-meta__item {
	display: grid;
	grid-template-columns: 26px 1fr;
	grid-template-rows: auto auto;
	column-gap: 10px;
	row-gap: 2px;
}

.gv-sidebar-meta__icon {
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555555;
}

.gv-sidebar-meta__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: #999999;
}

.gv-sidebar-meta__value {
	font-size: 14px;
	font-weight: 600;
	color: #111111;
}

/* Share */
.gv-sidebar-share {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #f0ebe4;
	display: flex;
	align-items: center;
	gap: 12px;
}

.gv-sidebar-share__label {
	font-size: 13px;
	color: #777777;
}

.gv-sidebar-share__links {
	display: flex;
	gap: 8px;
}

.gv-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f4f2ee;
	color: #333333;
	text-decoration: none;
	transition: background .2s ease;
}

.gv-share-btn:hover { background: #e8e3da; }

/* Responsive */
@media (max-width: 1024px) {
	.gv-single-layout {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.gv-single-sidebar {
		position: static;
		order: -1;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		border-top: 0;
		box-shadow: none;
		border-bottom: 1px solid #e8e3da;
		padding: 24px;
	}

	.gv-incluso-grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================================
   15. FORM PRENOTAZIONE
   ============================================================= */

.gv-form-wrap {
	background: #f4f2ee;
	border-radius: 24px;
	padding: 32px;
}

.gv-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.gv-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gv-field--full {
	grid-column: 1 / -1;
}

.gv-field__label {
	font-size: 13px;
	font-weight: 600;
	color: #222222;
}

.gv-field__required {
	color: #c0392b;
	margin-left: 2px;
}

.gv-field__input {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1.5px solid #ddd6ca;
	border-radius: 12px;
	background: #ffffff;
	font-size: 15px;
	color: #111111;
	transition: border-color .2s ease, box-shadow .2s ease;
	box-sizing: border-box;
}

.gv-field__input:focus {
	outline: none;
	border-color: #111111;
	box-shadow: 0 0 0 3px rgba(17,17,17,.08);
}

.gv-field__textarea {
	min-height: 120px;
	resize: vertical;
}

.gv-field__input.has-error,
.gv-field.has-error .gv-field__input {
	border-color: #c0392b;
}

.gv-field__error {
	font-size: 12px;
	color: #c0392b;
	min-height: 16px;
}

/* Checkbox privacy */
.gv-field__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #333333;
	cursor: pointer;
}

.gv-field__checkbox input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: #111111;
	cursor: pointer;
}

/* Submit */
.gv-form-footer {
	margin-top: 24px;
}

.gv-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 12px 36px;
	border: 0;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease;
}

.gv-form-submit:hover {
	background: #2c2c2c;
}

.gv-form-submit:disabled {
	opacity: .65;
	cursor: not-allowed;
}

/* Spinner */
.gv-form-submit__spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,.4);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: gv-spin .6s linear infinite;
}

@keyframes gv-spin {
	to { transform: rotate(360deg); }
}

/* Successo */
.gv-form-success {
	text-align: center;
	padding: 40px 24px;
}

.gv-form-success svg {
	color: #1d8a4c;
	margin-bottom: 16px;
}

.gv-form-success__msg {
	font-size: 17px;
	font-weight: 600;
	color: #111111;
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 640px) {
	.gv-form-grid {
		grid-template-columns: 1fr;
	}

	.gv-form-wrap {
		padding: 22px;
	}
}

/* =============================================================
   MOBILE DRAWER — Cerca + Filtra
   ============================================================= */

/* Desktop: nascondi elementi esclusivamente mobile */
@media (min-width: 1025px) {
	.gv-mobile-actions  { display: none !important; }
	.gv-filters-overlay { display: none !important; }
	.gv-search-overlay  { display: none !important; }
	.gv-search-drawer   { display: none !important; }
	.gv-filters-close   { display: none !important; }
}

@media (max-width: 1024px) {

	/* Nascondi la searchbar desktop */
	.gv-searchbar-wrap {
		display: none !important;
	}

	/* --- Bottoni FAB affiancati --- */
	.gv-mobile-actions {
		position: fixed;
		bottom: 24px;
		left: 50%;
		transform: translateX( -50% );
		z-index: 9999;
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.gv-fab {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 14px 24px;
		background: #111111;
		color: #ffffff;
		border: none;
		border-radius: 999px;
		font-size: 15px;
		font-weight: 600;
		cursor: pointer;
		box-shadow: 0 4px 20px rgba(0,0,0,.2);
		transition: transform .2s ease, box-shadow .2s ease;
		white-space: nowrap;
	}

	.gv-fab:hover {
		transform: translateY( -2px );
		box-shadow: 0 6px 24px rgba(0,0,0,.25);
	}

	.gv-fab svg {
		width: 18px;
		height: 18px;
		flex-shrink: 0;
	}

	/* --- Overlay condiviso --- */
	.gv-filters-overlay,
	.gv-search-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.45);
		z-index: 9998;
		backdrop-filter: blur( 2px );
	}

	.gv-filters-overlay.is-open,
	.gv-search-overlay.is-open {
		display: block;
	}

	/* --- Sidebar filtri (drawer) --- */
	.gv-filters-sidebar {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: auto !important;
		max-height: 80vh !important;
		width: 100% !important;
		background: #ffffff;
		border-radius: 24px 24px 0 0;
		box-shadow: 0 -8px 40px rgba(0,0,0,.15);
		z-index: 9999;
		overflow-y: auto;
		padding: 20px 20px 40px;
		transform: translateY( 100% );
		transition: transform .35s cubic-bezier(.32,.72,0,1);
	}

	.gv-filters-sidebar.is-open {
		transform: translateY( 0 ) !important;
	}

	.gv-filters-sidebar::before {
		content: '';
		display: block;
		width: 40px;
		height: 4px;
		background: #d0c9be;
		border-radius: 999px;
		margin: 0 auto 16px;
	}

	.gv-filters-close {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #f4f2ee;
		border: none;
		cursor: pointer;
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 18px;
		color: #111111;
		transition: background .2s;
	}

	.gv-filters-close:hover {
		background: #e8e3da;
	}

	/* --- Search drawer --- */
	.gv-search-drawer {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		max-height: 85vh;
		background: #ffffff;
		border-radius: 24px 24px 0 0;
		box-shadow: 0 -8px 40px rgba(0,0,0,.15);
		z-index: 9999;
		overflow-y: auto;
		padding: 20px 20px 100px;
		transform: translateY( 100% );
		transition: transform .35s cubic-bezier(.32,.72,0,1);
	}

	.gv-search-drawer.is-open {
		transform: translateY( 0 );
	}

	.gv-search-drawer::before {
		content: '';
		display: block;
		width: 40px;
		height: 4px;
		background: #d0c9be;
		border-radius: 999px;
		margin: 0 auto 16px;
	}

	.gv-search-drawer__close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #f4f2ee;
		border: none;
		cursor: pointer;
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 18px;
		color: #111111;
		transition: background .2s;
	}

	.gv-search-drawer__close:hover {
		background: #e8e3da;
	}

	.gv-search-drawer__title {
		font-size: 16px;
		font-weight: 700;
		color: #111111;
		margin: 0 0 20px;
		padding-right: 40px;
	}

	.gv-search-drawer__field {
		display: flex;
		flex-direction: column;
		gap: 6px;
		margin-bottom: 16px;
	}

	.gv-search-drawer__label {
		font-size: 12px;
		font-weight: 600;
		color: #555555;
		text-transform: uppercase;
		letter-spacing: .04em;
	}

	.gv-search-drawer__select {
		width: 100%;
		height: 48px;
		padding: 0 16px;
		border: 1.5px solid #ddd6ca;
		border-radius: 12px;
		background: #ffffff;
		font-size: 15px;
		color: #111111;
		appearance: none;
		-webkit-appearance: none;
		outline: none;
		cursor: pointer;
	}

	.gv-search-drawer__select:focus {
		border-color: #111111;
		box-shadow: 0 0 0 3px rgba(17,17,17,.08);
	}

	.gv-search-drawer__submit {
		display: block;
		width: 100%;
		padding: 16px;
		margin-top: 8px;
		background: #111111;
		color: #ffffff;
		border: none;
		border-radius: 999px;
		font-size: 16px;
		font-weight: 700;
		cursor: pointer;
		transition: background .2s ease;
	}

	.gv-search-drawer__submit:hover {
		background: #2c2c2c;
	}
}
