/* ****** AJUSTES ESPECIFICOS PARA O TEMPLATE DE MARKETPLACE ****** */

/* Oculta botões caso necessário (classe usada no script) */
.arrow.hidden {
	display: none;
}

/* PRODUCT LISTING */

.products-list-section.page .product_cards {
	flex-wrap: wrap;
}

.products_config {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 80vw;
	margin: 0 auto;
	overflow: hidden;
}

.products_config .product_title {
	margin-bottom: 16px;
	font-weight: 700;
}

.products_config .product_cards {
	display: flex;
	list-style: none;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0;
	padding: 0 0 16px 0;
	gap: 16px;
	will-change: transform;
	touch-action: pan-y;
}

@media (max-width: 767px) {
	.products_config .product_cards {
		margin-left: 20px;
	}
}

.products_config .product_cards .product_card {
	display: flex;
	position: relative;
	flex-direction: column;
	max-width: 300px;
	min-width: 220px;
	width: 80vw;
	height: auto;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0px 4px 4px 0px #d1d1d133;
	margin: 0;
	border: 1px solid #eee;
	flex-shrink: 0;
}

.products_config .product_cards .product_card .sticker-discount {
	display: flex;
	position: absolute;
	margin-top: 65%;
	left: 10px;
	border-radius: 8px;
	padding: 4px 8px;
	font-size: 14px;
	gap: 10px;
}

.products_config .product_cards .product_card .sticker-discount svg {
	width: 20px;
	height: 20px;
}

.products_config .product_cards .product_card .sticker-discount span {
	font-weight: 500;
	display: flex;
	align-items: center;
}

.products_config .product_cards .product_card a {
	display: flex;
	position: relative;
	text-decoration: none;
	color: inherit;
	flex-direction: column;
	height: 100%;
}

.products_config .product_cards .product_card .main-image {
	border-radius: 4px 4px 0 0;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.products_config .product_cards .product_card .product_infos {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: inherit;
}

.products_config .product_cards .product_card .product_infos .infos {
	display: flex;
	flex-direction: column;
	margin: 8px;
}

.products_config
	.product_cards
	.product_card
	.product_infos
	.infos
	.breadcrumb {
	color: rgba(124, 123, 123, 1);
	margin: 0;
	padding: 0;
}

.products_config .product_cards .product_card .product_infos .infos .title {
	color: var(--Grey-800, rgba(51, 51, 51, 1));
	margin: 0;
	padding: 0;
}

.products_config .product_cards .product_card .product_infos .infos .seller {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 8px 0;
	font-weight: 700;
}

.products_config
	.product_cards
	.product_card
	.product_infos
	.infos
	.seller
	img {
	max-height: 32px;
	height: 100%;
	width: 100%;
	max-width: 32px;
}

.products_config .product_cards .product_card .product_infos .price {
	display: flex;
	flex-direction: column;
	margin: 8px;
	gap: 8px;
}

.products_config .product_cards .product_card .infos .price .message_value {
	font-weight: 600;
	font-size: 11px;
	color: var(--color-text);
}

.products_config .product_cards .product_card .product_infos .price .value {
	font-weight: 700;
	font-size: 23px;
	color: var(--color-main);
}

.arrow {
	display: flex;
	position: absolute;
	align-self: anchor-center;
	align-items: center;
	margin: 0;
	background: rgba(255, 255, 255, 1);
	color: #ccc;
	border: 1px solid #eeeef2;
	border-radius: 4px;
	font-size: 24px;
	padding: 10px;
	cursor: pointer;
	z-index: 1;
	transition: all 0.3s ease;
}

.arrow:hover {
	background: rgb(255, 255, 255);
	filter: blur(0px);
	opacity: 1;
}

.arrow-left {
	left: 8px;
}

.arrow-right {
	right: 8px;
}

.hidden {
	opacity: 0;
	pointer-events: none;
}


@media (max-width: 991px) {
	.products_config .product_cards .product_card {
		max-width: 260px;
	}
}

@media (max-width: 767px) {
	.products_config .product_cards .product_card {
		max-width: 80vw;
	}
	.products_config {
		max-width: 100vw;
	}
}

@media (max-width: 479px) {
	.products_config .product_cards .product_card {
		min-width: 85vw;
		max-width: 80vw;
	}
	.products_config {
		max-width: 100vw;
	}
	.product_title {
		margin: 20px 0 10px 14px;
		font-size: 1.15em;
	}
}

.breadcrumb {
	color: #aaa7a7;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}
.breadcrumb a {
	text-decoration: none;
	color: inherit;
}
.go-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	cursor: pointer;
	transform: scale(1);
	transition: 0.2s;
	color: white;
	background-color: var(--color-main);
	width: 45px;
	height: 45px;
	border-radius: 8px;
	border-width: 1px;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.go-to-top:hover {
	color: white;
	opacity: 1;
	transform: scale(1.01);
}

.go-to-top[title]:hover::before {
	content: attr(title);
	position: absolute;
	left: -210%;
	top: 50%;
	padding: 10px;
	background-color: rgba(0, 0, 0, 1);
	color: #fff;
	font-size: 1em;
	white-space: nowrap;
	border-radius: 5px;
	transform: translateY(-50%);
}

.go-to-top[title]:hover::after {
	content: "";
	position: absolute;
	left: -15px;
	top: 50%;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-style: solid;
	border-color: transparent #000 transparent transparent;
	transform: translateY(-50%);
}

@media (max-width: 767px) {
	.go-to-top {
		bottom: 20px;
		right: 16px;
	}
}

/* ANIMATIONS  */
.js .js-scroll {
	transition: all 0.3s;
	opacity: 0;
	transform: translate3d(-20px, 0, 0);
}
.js .js-scroll.left {
	transform: translate3d(20px, 0, 0);
}
.js .js-scroll.start {
	transform: translate3d(0, -20px, 0);
}
.js .js-scroll.end {
	transform: translate3d(0, 20px, 0);
}
.js .js-scroll.active-animation {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.hub-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--color-text-secondary);
	padding-top: 24px;
	flex-wrap: wrap;
}

.hub-breadcrumb a {
	color: var(--color-text);
	text-decoration: none;
}

.hub-breadcrumb a:hover {
	text-decoration: underline;
}

.hub-config {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 0 48px 0;
}

.hub-title-config {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-family);
	font-weight: 600;
}

.hub-title-config h1 {
	padding: 0;
	margin: 0;
	color: var(--color-text);
	font-style: normal;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0;
}

.hub-title-config span {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-text-secondary);
}

.hub-counter {
	font-size: 14px;
	color: var(--color-text-secondary);
	font-weight: 500;
	font-style: italic;
}

.hub-no-offers {
	font-size: 13px;
	color: var(--color-text-muted);
	padding: 8px 0;
	display: block;
}

.hub-list {
	display: grid;
	grid-template-columns: 0.8fr 1fr 1.2fr;
	gap: 16px;
	padding: 16px;
	border-radius: 16px;
	box-shadow:
		0px 0px 0px 0px #d1d1d1,
		0px 0px 1px 0px #d1d1d1fa,
		0px 2px 2px 0px #d1d1d1d9,
		0px 4px 2px 0px #d1d1d180,
		0px 6px 3px 0px #d1d1d126,
		0px 10px 3px 0px #d1d1d105;
}

.hub-list-image-link {
	grid-row: 1;
	display: flex;
	align-self: stretch;
	text-decoration: none;
}

.hub-list picture {
	display: flex;
	grid-row: 1;
	align-self: stretch;
	width: 100%;
}

.hub-list-info h2 a {
	color: inherit;
	text-decoration: none;
}

.hub-list-info h2 a:hover {
	text-decoration: underline;
}

.hub-list picture img {
	width: 288px;
	height: 100%;
	max-height: 210px;
	object-fit: cover;
	border-radius: 16px;
}

.hub-list-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	grid-row: 1;
}

.hub-list-info h2 {
	color: var(--color-text);
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 19px;
	line-height: 1;
	margin: 0;
}

.hub-list-address {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0;
	color: #595959;
}

.hub-list-address-separator {
	color: #595959;
	font-size: 16px;
	font-weight: bold;
	margin: 0 6px;
	vertical-align: middle;
}

.hub-list-address-city {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	vertical-align: middle;
}

.hub-list-address-city svg {
	flex-shrink: 0;
}

.hub-list-tags {
	display: flex;
	gap: 8px;
}

.hub-tag {
	display: flex;
	align-items: center;
	gap: 4px;
	border: 1px solid #ccc;
	background-color: #f7fafd;
	padding: 4px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-text-secondary);
	border-radius: 4px;
}

.hub-list-coupon-info {
	font-family: var(--font-family);
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-text);
	border: 1px dashed #12b76a;
	padding: 8px;
	border-radius: 8px;
}

.hub-list-coupon-info i {
	text-transform: capitalize;
	font-weight: bold;
	color: #12b76a;
}

.hub-list-side-coupon {
	display: flex;
	flex-direction: column;
	gap: 8px;
	grid-row: 1;
}

.hub-cta-with-coupon {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #e8fdf3;
	border-radius: 16px;
	padding: 8px;
}

.hub-coupon-applied {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0;
	padding: 8px;
	color: #0e8b51;
}

.hub-price-info {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-text);
	margin-top: 8px;
}

.hub-price-value {
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hub-old-price {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 11px;
	line-height: 100%;
	letter-spacing: 0%;
	text-decoration: line-through;
	color: #999999;
}

.hub-new-price {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 19px;
	line-height: 100%;
	letter-spacing: 0%;
	color: var(--color-text-secondary);
}

.hub-cta {
	display: block;
	background-color: var(--color-cta);
	padding: 8px;
	border-top: 1px solid var(--color-cta);
	border-radius: 8px;
	text-decoration: none;
	color: var(--color-cta-contrast);
	text-align: center;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	transition: all 0.3s ease;
	transform: translateY(0);
}

.hub-cta:hover {
	background-color: var(--color-cta-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hub-cta.planne-widget,
.hub-cta.planne-widget-product-adder {
	all: unset !important;
	display: block !important;
	width: 100% !important;
	box-sizing: border-box !important;
	cursor: pointer !important;
}

.hub-cta.planne-widget div,
.hub-cta.planne-widget-product-adder div {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.hub-cta.planne-widget button,
.hub-cta.planne-widget-product-adder button {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	background: var(--color-cta) !important;
	padding: 8px !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	color: var(--color-cta-contrast) !important;
	text-align: center !important;
	font-family: var(--font-family) !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	font-style: normal !important;
	line-height: 100% !important;
	letter-spacing: 0 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
}

.hub-cta.planne-widget button:hover,
.hub-cta.planne-widget-product-adder button:hover {
	background: var(--color-cta-hover) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.hub-preview-offer {
	display: flex;
	border: 1px solid #595959;
	border-radius: 8px;
	padding: 8px;
	justify-content: space-between;
	align-items: center;
}

.hub-preview-offer p {
	padding: 4px;
	margin: 0;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 11px;
	line-height: 100%;
	letter-spacing: 0%;
}

.hub-cta-offer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	background-color: transparent;
	border: 1px solid #595959;
	border-radius: 8px;
	font-family: var(--font-family);
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	color: var(--color-text);
}

.hub-list-offers h4 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	padding: 0;
	margin: 0;
}

.hub-offer {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: white;
	padding: 16px;
	border-radius: 8px;
	gap: 16px;
	border: 1px solid #b3b3b3;
}

.hub-offer-info {
	display: flex;
	gap: 8px;
	flex-direction: column;
	flex: 1;
	align-items: flex-start;
	text-align: left;
}

.hub-offer-info h5 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-text);
	margin: 0;
	padding: 0;
}

.hub-offer-info p {
	display: flex;
	gap: 4px;
	align-items: center;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-text-muted);
	margin: 0;
	padding: 0;
}

.hub-offer-attributes {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hub-offer-attr {
	display: flex;
	gap: 4px;
	align-items: center;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--color-text-muted);
	margin: 0;
	padding: 0;
}

.hub-offer-attr-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.hub-offer-attr-icon svg {
	width: 16px;
	height: 16px;
}

.hub-tag-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.hub-tag-icon svg {
	width: 14px;
	height: 14px;
}

.hub-offer-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--color-cta);
	border: none;
	padding: 8px 12px;
	border-radius: 8px;
	text-decoration: none;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0;
	cursor: pointer;
	border: 1px solid var(--color-cta);
	width: 100%;
	max-width: 200px;
	box-sizing: border-box;
	white-space: nowrap;
	transition: all 0.3s ease;
	transform: translateY(0);
}

.hub-offer-cta:hover {
	background-color: var(--color-cta);
	color: var(--color-cta-contrast);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hub-offer-cta svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.hub-list.hidden {
	display: none;
}

/* ── Destination products grid (shares the home product card) ── */
.hub-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

@media (max-width: 1024px) {
	.hub-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.hub-products-grid {
		grid-template-columns: 1fr;
	}
}

.home-product-card.hidden {
	display: none;
}

.hub-see-all {
	display: block;
	max-width: 150px;
	width: 100%;
	margin: 16px auto;
	padding: 12px 24px;
	background-color: #fff;
	color: var(--color-cta);
	border: 1px solid var(--color-cta);
	border-radius: 8px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.hub-see-all:hover {
	background-color: var(--color-cta);
	color: var(--color-cta-contrast);
}

.hub-see-all.hidden {
	display: none;
}

.hub-empty-state {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 64px 16px;
	text-align: center;
	color: var(--color-text-muted);
}

.hub-empty-state svg {
	opacity: 0.4;
	flex-shrink: 0;
}

.hub-empty-state-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text-secondary);
	margin: 0;
}

.hub-empty-state-subtitle {
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 0;
}

.hub-list-offers {
	display: none;
	grid-column: 1 / -1;
	flex-direction: column;
	border-radius: 8px;
	gap: 8px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-height 0.5s ease,
		opacity 0.5s ease,
		transform 0.5s ease;
	transform: translateY(-20px);
}

.hub-list-offers.expanded {
	display: flex;
	max-height: 2000px;
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 767px) {
	.hub-list-offers.expanded {
		padding: 16px;
	}
}

.hub-cta-offer svg {
	transition: transform 0.3s ease;
}

.hub-cta-offer.expanded svg {
	transform: rotate(180deg);
}

/* Modal Styles */
.hub-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hub-modal-overlay.active {
	display: flex;
	opacity: 1;
}

.hub-modal-content {
	background: #fff;
	border-radius: 16px;
	max-width: 575px;
	width: 100%;
	position: relative;
	transform: scale(0.8) translateY(20px);
	transition: transform 0.3s ease;
}

.hub-modal-overlay.active .hub-modal-content {
	transform: scale(1) translateY(0);
}

.hub-modal-header {
	padding: 24px;
	text-align: center;
}

.hub-modal-header .separator {
	width: 100%;
	height: 2px;
	background-color: #e8e8e8;
	margin: 16px 0;
}

.hub-modal-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-bottom: 24px;
}

.hub-modal-logos img {
	height: 40px;
	max-width: 120px;
	object-fit: contain;
}

.hub-modal-message h3,
.hub-modal-message p {
	color: var(--color-text);
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 19px;
	line-height: 1.2;
	text-align: center;
}

.hub-modal-arrow {
	width: 24px;
	height: 24px;
	color: #999;
}

.hub-modal-product-name {
	font-weight: 700;
	margin: 0 0 16px 0;
	line-height: 1.4;
}

.hub-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
	justify-content: center;
}

.hub-modal-btn {
	width: 200px;
	box-sizing: border-box;
	padding: 12px 0;
	border-radius: 8px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	border: none;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.hub-modal-btn-primary {
	background-color: var(--color-cta);
	color: var(--color-cta-contrast);
}

.hub-modal-btn-primary:hover {
	background-color: var(--color-cta-hover);
}

.hub-modal-btn-secondary {
	background-color: transparent;
	color: var(--color-cta);
	border: 1px solid var(--color-cta);
}

.hub-modal-btn-secondary:hover {
	background-color: var(--color-bg-light);
}

.hub-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: none;
	font-size: 24px;
	color: var(--color-text-muted);
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.hub-modal-close:hover {
	background-color: var(--color-bg-light);
}

@media (max-width: 767px) {
	body {
		padding: 0;
	}

	.hub-list {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0;
		overflow: hidden;
	}

	.hub-list-image-link {
		grid-row: auto;
	}

	.hub-list picture {
		grid-row: auto;
	}

	.hub-list picture img {
		width: 100%;
		height: 220px;
		border-radius: 16px 16px 0 0;
	}

	.hub-list-info {
		grid-row: auto;
		padding: 16px;
		gap: 12px;
	}

	.hub-list-info h2 {
		font-size: 17px;
	}

	.hub-list-tags {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.hub-list-side-coupon {
		grid-row: auto;
		padding: 0 16px 16px;
	}

	.hub-cta-with-coupon {
		padding: 12px;
	}

	.hub-price-info {
		margin-top: 0;
	}

	.hub-cta {
		width: 100%;
		box-sizing: border-box;
	}

	.hub-preview-offer {
		flex-direction: row;
		align-items: center;
	}

	.hub-cta-offer {
		white-space: nowrap;
	}

	.hub-list-offers {
		grid-column: 1;
		padding: 0 16px 16px;
	}

	.hub-offer {
		flex-direction: column;
	}

	.hub-offer-cta {
		width: 100%;
		max-width: 100%;
	}

	.hub-title-config h1 {
		font-size: 20px;
		line-height: 28px;
	}

	/* Bottom Sheet on mobile */
	.hub-modal-overlay {
		align-items: flex-end;
		padding: 0;
	}

	.hub-modal-content {
		width: 100%;
		max-width: 100%;
		border-radius: 20px 20px 0 0;
		transform: translateY(100%);
		padding-bottom: env(safe-area-inset-bottom);
	}

	.hub-modal-content::before {
		content: '';
		display: block;
		width: 40px;
		height: 4px;
		background: #ddd;
		border-radius: 2px;
		margin: 12px auto 0;
	}

	.hub-modal-overlay.active .hub-modal-content {
		transform: translateY(0);
	}

	.hub-modal-header {
		padding: 16px;
	}

	.hub-modal-body {
		padding: 16px;
	}

	.hub-modal-actions {
		flex-direction: column-reverse;
		align-items: center;
		align-self: stretch;
		gap: 8px;
		margin-bottom: 0;
	}

	.hub-modal-btn {
		width: 100%;
		padding: 10px 8px;
		font-size: 14px;
	}
}

/* Animações de entrada */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hub-config {
	animation: fadeInUp 0.8s ease;
}

.hub-list {
	animation: fadeInUp 0.8s ease;
	animation-fill-mode: both;
}

.hub-list:nth-child(2) {
	animation-delay: 0.1s;
}
.hub-list:nth-child(3) {
	animation-delay: 0.2s;
}
.hub-list:nth-child(4) {
	animation-delay: 0.3s;
}
.hub-list:nth-child(5) {
	animation-delay: 0.4s;
}
.hub-list:nth-child(6) {
	animation-delay: 0.5s;
}

.hub-navbar-logo {
	display: flex;
	gap: 32px;
	align-items: center;
	flex: 0 0 auto;
	color: var(--color-main-contrast);
}

.hub-navbar-logo img {
	max-height: 60px;
	width: auto;
	height: auto;
	display: block;
}

.hub-searcher {
	display: flex;
	align-items: center;
	flex: 1;
	margin: 0 24px;
	border: 1px solid #d2d2d2;
	border-radius: 32px;
	padding: 4px 16px;
	gap: 10px;
	color: var(--color-main-contrast);
	background-color: transparent;
	position: relative;
}

.hub-searcher-input {
	display: flex;
	align-items: center;
	flex: 1;
	gap: 8px;
}

.hub-searcher-input svg {
	flex-shrink: 0;
}

.hub-searcher-input input:focus,
.hub-searcher-input input:focus-visible {
	outline: none;
	box-shadow: none;
	border: none;
}

.hub-searcher-input input {
	width: 100%;
	border: none;
	color: var(--color-main-contrast);
	background-color: transparent;
	font-size: 16px;
	padding: 8px;
}

.hub-searcher-input input::placeholder {
	color: var(--color-main-contrast);
	opacity: 0.7;
}

.hub-searcher button {
	background-color: var(--color-cta);
	color: var(--color-cta-contrast);
	border: none;
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}

.hub-search-autocomplete {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	z-index: 1001;
	padding: 6px;
	max-height: 400px;
	overflow-y: auto;
}

.hub-searcher-mobile {
	position: relative;
}

.hub-search-ac-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 8px 12px 4px;
}

.hub-search-ac-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 8px;
	color: #222;
	text-decoration: none;
	font-size: 14px;
	font-family: var(--font-family-secondary);
	transition: background-color 0.15s ease;
}

.hub-search-ac-item:hover {
	background-color: #f5f5f5;
	color: var(--color-cta);
}

.hub-search-ac-thumb {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	object-fit: cover;
	flex-shrink: 0;
}

.hub-search-ac-empty {
	padding: 12px;
	font-size: 14px;
	color: #888;
	text-align: center;
	font-family: var(--font-family-secondary);
}

.hub-search-responsive-wrapper {
	display: none;
}

.hub-search-responsive {
	display: none;
	cursor: pointer;
}

.hub-search-mobile-expanded {
	display: none;
}

.hub-cart-responsive {
	display: none;
	cursor: pointer;
}

.hub-hamburger-responsive {
	display: none;
	cursor: pointer;
}

.hub-nav-menu {
	display: none;
}

.hub-nav-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-family: var(--font-family-secondary);
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
	transition: background-color 0.2s ease;
}

.hub-nav-menu-item:hover {
	background-color: hsla(0, 0%, 100%, 0.05);
}

.hub-nav-menu-item svg {
	flex-shrink: 0;
}

.hub-navbar-logo svg,
.navbar_content_right-wrapper svg {
	color: inherit;
}

.navbar_content_right-wrapper,
.navbar_content_right-wrapper .navbar_content_right-box_links_item {
	color: var(--color-main-contrast);
}

@media (max-width: 991px) {
	.hub-searcher {
		display: none;
	}

	.hub-search-responsive-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		color: var(--color-main-contrast);
	}

	.hub-search-responsive {
		display: flex;
		padding: 16px;
	}

	.hub-cart-responsive {
		display: flex;
		padding: 16px;
		color: var(--color-main-contrast);
	}

	.hub-hamburger-responsive {
		display: flex;
		padding: 16px;
	}

	.hub-nav-menu {
		background-color: #151515;
	}

	.navbar_content {
		position: relative;
	}

	.hub-search-mobile-expanded.active {
		display: flex;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--color-navbar-bg);
		z-index: 100;
		padding: 0 16px;
	}

	.hub-searcher-mobile {
		display: flex;
		align-items: center;
		flex: 1;
		border: 1px solid #d2d2d2;
		border-radius: 32px;
		padding: 8px 16px;
		gap: 8px;
	}

	.hub-searcher-mobile input {
		flex: 1;
		border: none;
		outline: none;
		font-size: 16px;
		color: var(--color-main-contrast);
		background: transparent;
		min-width: 0;
		padding: 8px;
	}

	.hub-searcher-mobile input::placeholder {
		color: var(--color-main-contrast);
		opacity: 0.7;
	}

	.hub-searcher-mobile input:focus,
	.hub-searcher-mobile input:focus-visible {
		outline: none;
		box-shadow: none;
		border: none;
	}

	.hub-search-mobile-close {
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		background-color: transparent;
		color: var(--color-main-contrast);
	}
}

/* ===================== Desktop nav dropdowns ===================== */

.hub-nav-desktop {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 16px;
}

.hub-dropdown {
	position: relative;
}

.hub-dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: none;
	color: var(--color-main-contrast);
	font-size: 15px;
	font-weight: 600;
	font-family: var(--font-family-secondary);
	padding: 8px 12px;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.15s ease;
}

.hub-dropdown-trigger:hover {
	background-color: hsla(0, 0%, 100%, 0.1);
}

.hub-dropdown-trigger svg {
	transition: transform 0.2s ease;
	flex-shrink: 0;
	color: var(--color-main-contrast);
}

.hub-dropdown.is-open .hub-dropdown-trigger svg:last-child {
	transform: rotate(180deg);
}

.hub-dropdown-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: auto;
	min-width: 220px;
	max-height: 400px;
	overflow-y: auto;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	z-index: 1000;
	padding: 6px;
}

.hub-dropdown.is-open .hub-dropdown-menu {
	display: block;
}

.hub-dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: #222;
	text-decoration: none;
	font-size: 14px;
	font-family: var(--font-family-secondary);
	border-radius: 8px;
	transition: background-color 0.15s ease;
	white-space: nowrap;
}

.hub-dropdown-item:hover {
	background-color: #f5f5f5;
	color: var(--color-cta);
}

.hub-dropdown-item-img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.hub-dropdown-item-social-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hub-dropdown-item-social-icon svg {
	width: 20px;
	height: 20px;
}

/* ===================== Mobile accordion ===================== */

.hub-nav-menu-accordion {
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
}

.hub-nav-menu-accordion-trigger {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 16px 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 16px;
	font-family: var(--font-family-secondary);
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s ease;
}

.hub-nav-menu-accordion-trigger:hover {
	background-color: hsla(0, 0%, 100%, 0.05);
}

.hub-nav-menu-accordion-icon {
	margin-left: auto;
	transition: transform 0.2s ease;
}

.hub-nav-menu-accordion-trigger.is-open .hub-nav-menu-accordion-icon {
	transform: rotate(180deg);
}

.hub-nav-menu-sub-item {
	display: block;
	padding: 12px 20px 12px 56px;
	color: hsla(0, 0%, 100%, 0.75);
	text-decoration: none;
	font-size: 14px;
	font-family: var(--font-family-secondary);
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.03);
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hub-nav-menu-sub-item:hover {
	background-color: hsla(0, 0%, 100%, 0.05);
	color: #fff;
}

@media (max-width: 991px) {
	.hub-nav-desktop {
		display: none;
	}
}

/* ===================== end nav dropdowns ===================== */

.hub-categories {
	display: flex;
	gap: 16px;
	margin: 24px auto 0;

	max-width: 1200px;
}

.hub-category-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	border-radius: 9999px;
	border: 1px solid #d2d2d2;
	background-color: #fff;
	color: #393939;
	font-weight: 500;
	font-size: 16px;
	font-family: var(--font-family-secondary);
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.hub-category-link.hub-active {
	background-color: #e8e8e8;
}

@media (max-width: 767px) {
	.hub-categories {
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}

	.hub-categories::-webkit-scrollbar {
		display: none;
	}
}

/* =====================================================
   HOME PAGE — BLOCOS DINÂMICOS
   ===================================================== */

.home-page {
	min-height: 60vh;
}

/* --- Banner Swiper --- */
.home-banners {
	width: 100%;
	padding-top: 24px;
}

.home-banners .container {
	padding: 0;
}

.home-swiper {
	width: 100%;
	height: 248px;
	border-radius: 12px;
	overflow: hidden;
}

.home-swiper-slide {
	position: relative;
	overflow: hidden;
}

.home-swiper-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-swiper-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
	display: flex;
	align-items: center;
}

.home-swiper-content {
	padding: 0 48px;
	max-width: 600px;
	color: #fff;
}

.home-swiper-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.2;
	color: #fff;
}

.home-swiper-subtitle {
	font-size: 1rem;
	margin: 0 0 16px;
	line-height: 1.4;
	color: #fff;
}

.home-swiper-cta {
	display: inline-block;
	background: var(--color-cta);
	color: var(--color-cta-contrast);
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: background 0.2s;
}

.home-swiper-cta:hover {
	background: var(--color-cta-hover);
}

.home-swiper .swiper-button-next,
.home-swiper .swiper-button-prev {
	color: #fff;
}

.home-swiper .swiper-pagination-bullet-active {
	background: var(--color-cta);
}

/* --- Static Banners --- */
.home-static-banners {
	width: 100%;
	padding-top: 24px;
}

.home-static-banners .container {
	padding: 0;
}

.home-static-banners-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	gap: 12px;
}

.home-static-banner-item {
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
	position: relative;
}

.home-static-banner-link {
	display: block;
	position: relative;
}

.home-static-banner-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

.home-static-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
	display: flex;
	align-items: center;
	border-radius: 12px;
}

.home-static-banner-content {
	padding: 0 32px;
	max-width: 70%;
	color: #fff;
}

.home-static-banner-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 6px;
	line-height: 1.2;
	color: #fff;
}

.home-static-banner-subtitle {
	font-size: 0.9rem;
	margin: 0 0 14px;
	line-height: 1.4;
	color: #fff;
}

.home-static-banner-cta {
	display: inline-block;
	background: var(--color-cta);
	color: var(--color-cta-contrast);
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	transition: background 0.2s;
	line-height: 1;
}

.home-static-banner-item:hover .home-static-banner-cta {
	background: var(--color-cta-hover);
}

/* --- Section title --- */
.home-section-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--color-text);
}

/* --- Destinations --- */
.home-destinations {
	padding: 32px 0 8px;
}

.home-destinations > .container {
	position: relative;
}

.home-destinations .home-section-title {
	padding-right: 88px;
}

.home-destinations-nav {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	gap: 8px;
}

.home-destinations-nav button {
	width: 32px;
	height: 32px;
	border: 1px solid var(--color-cta);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-cta);
	transition: background 0.15s;
}

.home-destinations-nav button:hover {
	background: #f5f5f5;
}

.home-destinations-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.home-destinations-scroll::-webkit-scrollbar {
	display: none;
}

.home-dest-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	flex-shrink: 0;
	text-decoration: none;
	color: inherit;
}

.home-dest-img {
	width: 96px;
	height: 96px;
	border-radius: 12px;
	object-fit: cover;
	border: 2px solid var(--color-border);
	transition: border-color 0.2s;
}

.home-dest-img--placeholder {
	background: var(--color-bg-light);
}

.home-dest-chip:hover .home-dest-img {
	border-color: var(--color-cta);
}

.home-dest-name {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-text);
	text-align: center;
	max-width: 96px;
	white-space: normal;
	word-break: break-word;
	line-height: 1.3;
}

/* --- Compare Modal (home) --- */
.home-compare-modal {
	max-width: 680px;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
}

.home-compare-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px 16px;
	border-bottom: 1px solid var(--color-border);
}

.home-compare-modal-header h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.home-compare-modal-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.25rem;
	color: var(--color-text-muted);
	line-height: 1;
	padding: 4px;
}

.home-compare-modal-body {
	overflow-y: auto;
	padding: 16px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-compare-offer-card {
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.home-compare-offer-info {
	flex: 1;
	min-width: 0;
}

.home-compare-offer-info h5 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.home-compare-offer-attrs {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.home-compare-offer-attr {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--color-text-secondary);
}

@media (max-width: 600px) {
	.home-compare-modal {
		max-height: 90vh;
	}

	.home-compare-offer-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-compare-offer-card .hub-modal-btn {
		width: 100%;
		text-align: center;
	}
}

/* --- Product Section --- */
.home-product-section {
	padding: 32px 0;
}

.home-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
}

@media (max-width: 1024px) {
	.home-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* --- Product Card (vertical) --- */
.home-product-card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--color-border);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.home-product-card-image-link {
	display: block;
	text-decoration: none;
}

.home-product-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.home-product-card-name a {
	color: inherit;
	text-decoration: none;
}

.home-product-card-name a:hover {
	text-decoration: underline;
}

.home-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-product-card-body {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.home-product-card-name {
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.35;
	color: var(--color-text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-product-card-seller {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	color: var(--color-text-secondary);
	flex-wrap: wrap;
}

.home-product-card-seller-sep {
	color: var(--color-border);
}

.home-product-card-city {
	display: flex;
	align-items: center;
	gap: 2px;
}

.home-product-card-attrs {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.home-product-card-attr {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	color: var(--color-text-secondary);
}

.home-product-card-attr-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.home-product-card-coupon {
	font-size: 0.7rem;
	color: var(--color-text-secondary);
	border: 1.5px dashed var(--color-success);
	border-radius: 6px;
	padding: 6px 8px;
	line-height: 1.4;
}

.home-product-card-coupon i {
	font-style: normal;
	font-weight: 700;
	color: var(--color-success);
}

.home-product-card-footer {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
}

.home-product-card-price {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.home-product-card-price-label {
	font-size: 0.7rem;
	color: var(--color-text-muted);
}

.home-product-card-price-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-text);
}

.home-product-card-installment {
	font-size: 0.7rem;
	color: var(--color-text-muted);
}

.home-product-card-cta {
	display: block;
	width: 100%;
	background: var(--color-cta);
	color: var(--color-cta-contrast);
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-weight: 700;
	font-size: 0.875rem;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
	box-sizing: border-box;
}

.home-product-card-cta:hover {
	background: var(--color-cta-hover);
}

.home-product-card .planne-widget button.planne-button {
	width: 100%;
	border-radius: 8px;
	padding: 10px;
	font-weight: 700;
	font-size: 0.875rem;
	background-color: var(--color-cta);
	color: var(--color-cta-contrast);
}

.home-product-card .planne-widget button.planne-button:hover {
	background-color: var(--color-cta-hover);
}


@media (max-width: 600px) {
	.navbar {
		border-radius: 0;
	}

	.home-banners {
		padding-top: 0;
	}

	.home-swiper {
		height: 200px;
		border-radius: 0;
	}

	.home-swiper-content {
		padding: 0 20px;
	}

	.home-swiper-title {
		font-size: 1.3rem;
	}

	.home-product-grid {
		display: flex;
		grid-template-columns: unset;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding-bottom: 12px;
	}

	.home-product-card {
		flex: 0 0 82%;
		scroll-snap-align: start;
		min-width: 0;
	}

	.home-static-banners-inner {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.home-static-banner-img {
		height: 160px;
	}

	.home-static-banner-title {
		font-size: 1.1rem;
	}

	.home-static-banner-subtitle {
		font-size: 0.8rem;
	}

	.home-static-banner-item:nth-child(2) {
		display: none;
	}
}

/* --- Content Cards --- */
.home-content-cards {
	padding: 32px 0;
}

.home-content-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.home-content-card {
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.home-content-card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.home-content-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-content-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.home-content-card-title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	color: var(--color-text);
}

.home-content-card-desc {
	font-size: 0.875rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.home-content-cards-grid {
		display: flex;
		overflow-x: auto;
		gap: 16px;
		padding-bottom: 8px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.home-content-cards-grid::-webkit-scrollbar {
		display: none;
	}

	.home-content-card {
		width: 240px;
		flex-shrink: 0;
	}
}

/* ── Destination chips ───────────────────────────── */
.hub-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.hub-chip {
	padding: 8px 18px;
	border-radius: 999px;
	border: 2px solid var(--color-primary, #e8a020);
	background: transparent;
	color: var(--color-primary, #e8a020);
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
	white-space: nowrap;
}

.hub-chip:hover,
.hub-chip.active {
	background: var(--color-primary, #e8a020);
	color: #fff;
}

/* ── Filter layout ───────────────────────────────── */
.hub-filter-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	align-items: start;
}

.hub-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 24px;
}

.hub-filter-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 0 0 1px #e5e5e5, 0 2px 6px rgba(0,0,0,.06);
}

.hub-filter-title {
	margin: 0;
	font-family: var(--font-family);
	font-size: 15px;
	font-weight: 700;
	color: var(--color-text);
	padding-bottom: 8px;
	border-bottom: 1px solid #f0f0f0;
}

/* Price range inputs */
.hub-price-range-inputs {
	display: flex;
	gap: 8px;
}

.hub-price-input-wrap {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 6px 10px;
	font-size: 13px;
	color: var(--color-text-secondary);
}

.hub-price-input {
	border: none;
	outline: none;
	width: 100%;
	font-size: 13px;
	font-family: var(--font-family);
	color: var(--color-text);
	background: transparent;
	-moz-appearance: textfield;
}

.hub-price-input::-webkit-outer-spin-button,
.hub-price-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* Dual range slider */
.hub-price-slider-track {
	position: relative;
	height: 4px;
	background: #e5e5e5;
	border-radius: 4px;
	margin: 8px 0 4px;
}

.hub-price-slider-fill {
	position: absolute;
	height: 100%;
	background: var(--color-primary, #e8a020);
	border-radius: 4px;
	pointer-events: none;
}

.hub-range-input {
	position: absolute;
	width: 100%;
	height: 4px;
	top: 0;
	left: 0;
	background: transparent;
	-webkit-appearance: none;
	pointer-events: none;
}

.hub-range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--color-primary, #e8a020);
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
	pointer-events: all;
	cursor: pointer;
}

.hub-range-input::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--color-primary, #e8a020);
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
	pointer-events: all;
	cursor: pointer;
}

/* Category checkboxes */
.hub-category-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	font-family: var(--font-family);
	color: var(--color-text);
	user-select: none;
}

.hub-category-cb,
.hub-subcategory-cb {
	width: 16px;
	height: 16px;
	accent-color: var(--color-primary, #e8a020);
	cursor: pointer;
	flex-shrink: 0;
}

/* Price bucket radios */
.hub-price-radios {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 4px;
	border-top: 1px solid #f0f0f0;
	margin-top: 4px;
}

.hub-price-radio-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	font-family: var(--font-family);
	color: var(--color-text);
	user-select: none;
}

.hub-price-radio-label input[type="radio"] {
	width: 16px;
	height: 16px;
	accent-color: var(--color-primary, #e8a020);
	cursor: pointer;
	flex-shrink: 0;
}

/* Category groups with subcategories */
.hub-category-group {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hub-subcategory-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-height: 0;
	overflow: hidden;
	padding: 0 0 0 24px;
	transition: max-height 0.25s ease, padding 0.25s ease;
}

.hub-subcategory-list.visible {
	max-height: 600px;
	padding: 6px 0 4px 24px;
}

.hub-category-label--sub {
	font-size: 13px;
	color: var(--color-text-secondary, #666);
}

.hub-list-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ── Responsive filters ──────────────────────────── */
@media (max-width: 991px) {
	.hub-filter-layout {
		grid-template-columns: 1fr;
	}

	.hub-sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px;
	}

	.hub-filter-section {
		flex: 1 1 calc(50% - 6px);
		min-width: 220px;
	}
}

@media (max-width: 767px) {
	.hub-chips {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.hub-chips::-webkit-scrollbar {
		display: none;
	}

	.hub-sidebar {
		flex-direction: column;
	}

	.hub-filter-section {
		flex: 1 1 100%;
	}
}

/* ── Mobile filter button & bottom sheet ──────────── */
.hub-filter-mobile-bar {
	display: none;
}

.hub-filter-sheet-header,
.hub-filter-sheet-footer {
	display: none;
}

.hub-filter-sheet-body {
	display: contents;
}

@media (max-width: 767px) {
	/* Trigger button */
	.hub-filter-mobile-bar {
		display: flex;
		justify-content: flex-end;
		margin-bottom: 12px;
	}

	.hub-filter-mobile-btn {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 9px 18px;
		background: #fff;
		border: 1px solid var(--color-cta);
		border-radius: 6px;
		font-size: 14px;
		font-family: var(--font-family);
		font-weight: bold;
		color: var(--color-cta);
		cursor: pointer;
		transition: background 0.15s;
	}

	.hub-filter-mobile-btn:hover {
		background: #f5f5f5;
	}

	.hub-filter-mobile-count {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		background: var(--color-primary, #e8a020);
		color: #fff;
		border-radius: 9px;
		font-size: 11px;
		font-weight: 700;
		line-height: 1;
	}

	.hub-filter-mobile-count:empty {
		display: none;
	}

	/* Backdrop — managed via JS (display toggled inline, opacity animated) */
	.hub-filter-backdrop {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		z-index: 999;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.hub-filter-backdrop.active {
		opacity: 1;
	}

	/* Bottom sheet sidebar */
	.hub-filter-layout {
		grid-template-columns: 1fr !important;
	}

	.hub-sidebar {
		display: none; /* JS sets display:flex on open, clears on close */
		position: fixed !important;
		top: auto !important;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		max-height: 90dvh;
		max-height: 90svh;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		gap: 0 !important;
		background: #fff;
		border-radius: 20px 20px 0 0;
		transform: translateY(100%);
		transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
		padding: 0 !important;
		box-shadow: 0 -4px 24px rgba(0,0,0,.12);
	}

	.hub-sidebar::before {
		content: '';
		display: block;
		flex-shrink: 0;
		width: 40px;
		height: 4px;
		background: #ddd;
		border-radius: 2px;
		margin: 12px auto 0;
	}

	.hub-sidebar.active {
		transform: translateY(0);
	}

	/* Scrollable body */
	.hub-filter-sheet-body {
		display: flex;
		flex-direction: column;
		gap: 0;
		overflow-y: auto;
		flex: 1;
		overscroll-behavior: contain;
	}

	/* Sheet header */
	.hub-filter-sheet-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-shrink: 0;
		padding: 14px 20px 12px;
		border-bottom: 1px solid #f0f0f0;
		background: #fff;
	}

	.hub-filter-sheet-title {
		font-family: var(--font-family);
		font-size: 17px;
		font-weight: 700;
		color: var(--color-text);
	}

	.hub-filter-sheet-close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		background: #f5f5f5;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		color: var(--color-text);
		padding: 0;
	}

	.hub-filter-section {
		border-radius: 0 !important;
		box-shadow: none !important;
		border-bottom: 1px solid #f0f0f0;
	}

	/* Sheet footer */
	.hub-filter-sheet-footer {
		display: flex;
		flex-direction: column;
		gap: 10px;
		flex-shrink: 0;
		padding: 16px 20px;
		padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
		background: #fff;
		border-top: 1px solid #f0f0f0;
	}

	.hub-filter-sheet-apply {
		width: 100%;
		padding: 14px;
		background: var(--color-primary, #e8a020);
		color: #fff;
		border: none;
		border-radius: 12px;
		font-family: var(--font-family);
		font-size: 15px;
		font-weight: 600;
		cursor: pointer;
		transition: opacity 0.15s;
	}

	.hub-filter-sheet-apply:active {
		opacity: 0.85;
	}

	.hub-filter-sheet-clear {
		width: 100%;
		padding: 13px;
		background: transparent;
		color: var(--color-primary, #e8a020);
		border: 1.5px solid var(--color-primary, #e8a020);
		border-radius: 12px;
		font-family: var(--font-family);
		font-size: 15px;
		font-weight: 600;
		cursor: pointer;
		transition: opacity 0.15s;
	}

	.hub-filter-sheet-clear:active {
		opacity: 0.75;
	}
}
