/*
Theme Name: SanByte Theme
Theme URI: https://sanbyte.studio/
Author: SanByte Studio
Author URI: https://sanbyte.studio/
Description: A modern, high-performance travel agency theme.
Version: 1.0.0
Text Domain: sanbyte-theme
*/

:root {
	/* --primary-color: #FF4F00;
	--primary-hover: #E64700; */
	--primary-color: #3F6744;
	--primary-hover: #8DC07D;
	--secondary-color: #1A1A1A;
	--text-color: #333333;
	--bg-color: #FFFFFF;
	--light-grey: #F8F9FA;
	--border-color: #EEEEEE;
	/* --shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--rounded: 12px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-color);
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	padding: 20px 0;
	background: transparent;
	/* box-shadow: var(--shadow); */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2000;
}

/* Header shadow for non-hero pages */
body:not(.home):not(.archive) header {
	background: var(--bg-color);
	box-shadow: var(--shadow);
}

main {
	padding-top: 90px;
}

/* On pages with hero slider, remove the padding top of main so header overlays it */
body.home main,
body.archive main {
	padding-top: 0;
}

.header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary-color);
}

.site-logo img,
.custom-logo {
	display: block;
	max-height: 50px;
	width: auto;
	transition: transform 0.3s ease;
}

.site-logo:hover img {
	transform: scale(1.05);
}

.nav-menu ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.nav-menu li a {
	font-weight: 600;
	font-size: 15px;
	color: var(--secondary-color);
	transition: all 0.3s ease;
	position: relative;
	padding: 5px 0;
}

/* Light text for hero overlays */
body.home .nav-menu li a,
body.archive .nav-menu li a {
	color: white;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
	color: var(--primary-color);
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
	width: 100%;
}

.header-actions {
	margin-left: 20px;
}

.menu-toggle {
	display: none;
}

.cart-btn {
	position: relative;
	padding: 10px 20px !important;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mobile-cart-icon {
	display: none;
}

/* Hero Slider */
.hero-slider {
	position: relative;
	width: 100%;
	height: 85vh;
	min-height: 600px;
	overflow: hidden;
	background: #000;
}

.hero-swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.swiper-slide .container {
	width: 100%;
}

.hero-content {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	z-index: 50;
	color: white;
	text-align: center;
	opacity: 1;
	transform: none;
	transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Animate only if Swiper is successfully initialized */
.hero-swiper.swiper-initialized .swiper-slide .hero-content {
	opacity: 0;
	transform: translateY(30px);
}

.hero-swiper.swiper-initialized .swiper-slide-active .hero-content {
	opacity: 1;
	transform: translateY(0);
}

.hero-subtitle {
	display: block;
	font-family: 'Yellowtail', cursive;
	font-size: 32px;
	color: var(--primary-hover);
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
	font-size: 64px;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 25px;
	color: #fff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-description {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn {
	/* padding: 18px 40px; */
	font-size: 16px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 10px 25px rgba(0, 255, 72, 0.3);
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
	color: white !important;
	width: 48px !important;
	height: 48px !important;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px !important;
	font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--primary-color);
	transform: scale(1.1);
}

.swiper-pagination {
	bottom: 30px !important;
	z-index: 30 !important;
}

.swiper-pagination-bullet {
	width: 12px !important;
	height: 12px !important;
	background: rgba(255, 255, 255, 0.6) !important;
	opacity: 1 !important;
	margin: 0 6px !important;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: var(--primary-color) !important;
	width: 32px !important;
	border-radius: 6px !important;
}

@media (max-width: 768px) {
	.hero-slider {
		height: 100dvh;
	}

	.hero-title {
		font-size: 42px;
	}

	.hero-subtitle {
		font-size: 24px;
	}

	.hero-description {
		font-size: 16px;
	}

	/* .swiper-button-next,
	.swiper-button-prev {
		display: none !important;
	} */
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--rounded);
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-hover);
	transform: translateY(-2px);
}

/* Grid Listing */
.product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 30px 0;
}

@media (min-width: 600px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding: 20px 0;
	}

	.product-image {
		height: 150px;
	}

	.product-content,
	.product-info {
		padding: 12px;
	}

	.product-title {
		font-size: 14px;
		line-height: 1.3;
		margin-bottom: 8px;
		/* height: 36px;
		overflow: hidden; */
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.product-header {
		font-size: 8px;
		letter-spacing: 0.5px;
		margin-bottom: 5px;
	}

	.product-footer {
		/* flex-direction: column; */
		align-items: flex-start;
		gap: 4px;
	}

	.product-duration {
		font-size: 10px;
	}

	.product-price {
		font-size: 14px;
	}

	.product-unit {
		font-size: 12px;
	}
}

@media (min-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 30px;
		padding: 40px 0;
	}

	.product-image {
		height: 240px;
	}

	.product-content,
	.product-info {
		padding: 20px;
	}

	.product-title {
		font-size: 18px;
		height: auto;
		margin-bottom: 10px;
	}

	.product-header {
		font-size: 10px;
		margin-bottom: 0;
	}

	.product-footer {
		flex-direction: row;
		align-items: center;
	}

	.product-duration {
		font-size: 12px;
	}

	.product-price {
		font-size: 16px;
	}

	.product-unit {
		font-size: 16px;
	}
}

.product-card {
	background: white;
	border-radius: var(--rounded);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

/* Footer Styles */
footer a {
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--primary-color) !important;
}

footer ul {
	list-style: none !important;
	padding: 0;
	margin: 0;
}

footer ul li {
	margin-bottom: 10px;
}

footer .contact-link {
	color: inherit;
	text-decoration: none;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 2px;
	transition: all 0.3s ease;
}

footer .contact-link:hover {
	background: rgba(255, 122, 69, 0.1);
	border-bottom-color: var(--primary-hover);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	transition: all 0.3s ease;
}

.social-icon:hover {
	transform: translateY(-3px);
	background: var(--primary-color);
	color: white !important;
}

.social-icon.wa:hover {
	background: #25D366;
}

.social-icon.ig:hover {
	background: #E1306C;
}

.social-icon.tt:hover {
	background: #000000;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-card {
	background: white;
	/* border-radius: 24px; */
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
	height: 240px;
	background-color: var(--light-grey);
	background-size: cover;
	background-position: center;
	border-radius: 12px 12px 0 0;
}

.product-content {
	padding: 20px;
}

.product-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 10px;
	font-weight: 300;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.product-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-duration {
	font-size: 12px;
	font-weight: 300;
}

.product-price-wrap {
	display: flex;
	align-items: baseline;
	gap: 2px;
}

.product-price {
	font-size: 16px;
	font-weight: 700;
}

.product-unit {
	font-size: 16px;
	color: #999;
}

/* Category Cards */
.category-card {
	background: white !important;
	border: 1px solid var(--border-color) !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color) !important;
	box-shadow: 0 15px 30px rgba(255, 79, 0, 0.1);
	background: #fff !important;
}

.category-icon {
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover .category-icon {
	transform: scale(1.15) rotate(5deg);
}

.category-name {
	transition: color 0.3s ease;
}

.category-card:hover .category-name {
	color: var(--primary-color) !important;
}

/* Product Highlights Accordion */
.sb-accordion {
	border: 1px solid var(--border-color);
	border-radius: var(--rounded);
	overflow: hidden;
	background: white;
}

.sb-accordion-item {
	border-bottom: 1px solid var(--border-color);
}

.sb-accordion-item:last-child {
	border-bottom: none;
}

.sb-accordion-header {
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	transition: background 0.3s ease;
	font-weight: 600;
	font-size: 16px;
	color: var(--secondary-color);
}

.sb-accordion-header:hover {
	background: #fdfdfd;
}

.sb-accordion-item.active .sb-accordion-header {
	background: var(--light-grey);
	color: var(--primary-color);
}

.sb-accordion-header::after {
	content: '\f347';
	font-family: dashicons;
	transition: transform 0.3s ease;
}

.sb-accordion-item.active .sb-accordion-header::after {
	transform: rotate(180deg);
}

.sb-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease;
	padding: 0 20px;
	background: white;
}

.sb-accordion-item.active .sb-accordion-content {
	max-height: 1000px;
	padding: 20px;
}

.sb-highlight-image-wrap {
	margin-top: 15px;
	border-radius: 8px;
	overflow: hidden;
	cursor: zoom-in;
}

.sb-highlight-image-wrap img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.sb-highlight-image-wrap:hover img {
	transform: scale(1.02);
}

.time-slot.disabled {
	opacity: 0.4;
	cursor: not-allowed !important;
	background: #f1f1f1 !important;
	pointer-events: none;
}

.time-slot.disabled input {
	display: none;
}

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	z-index: 1500;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

.nav-close {
	display: none;
}

/* Responsive Menu */
@media (max-width: 900px) {
	/* header {
		box-shadow: none !important;
		border-bottom: none !important;
	} */

	.menu-toggle {
		display: block !important;
		/* color: var(--primary-color) !important; */
		color: var(--primary-hover) !important;
		font-size: 32px !important;
		width: 32px !important;
		height: 32px !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		padding: 0 !important;
	}

	.menu-toggle span {
		font-size: 32px !important;
		width: 32px !important;
		height: 32px !important;
		line-height: 1 !important;
	}

	body.home .menu-toggle,
	body.archive .menu-toggle {
		color: var(--primary-hover) !important;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -320px;
		width: 320px;
		max-width: 85%;
		height: 100vh;
		background: white;
		padding: 80px 30px 40px;
		z-index: 2100;
		transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		border-top: none;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu ul {
		flex-direction: column;
		gap: 0;
		padding: 20px;
	}

	.nav-menu li a {
		display: block;
		padding: 15px 0;
		border-bottom: 1px solid var(--light-grey);
		color: var(--primary-color) !important;
		font-size: 18px;
		font-weight: 700;
	}

	.nav-menu li:last-child a {
		border-bottom: none;
	}

	.nav-close {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		font-size: 32px;
		color: var(--primary-color);
		cursor: pointer;
		padding: 5px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Product Details Responsive */
	.product-details-page .container {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	.booking-widget {
		position: static !important;
		margin-top: 40px;
	}

	/* Cart & Checkout Responsive */
	.cart-page .container,
	.checkout-page .container {
		display: block !important;
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	.checkout-summary-container {
		position: static !important;
		margin-top: 30px;
	}

	/* Adjust cart page for pinned bar */
	/* .cart-page {
		padding-bottom: 120px !important;
	} */
}

/* Toast Summary Styles */
.sb-toast-summary {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pinned to bottom (Cart Page) - Now Sticky within parent */
.cart-page .sb-toast-summary {
	position: sticky;
	/* position: fixed; */
	bottom: 20px;
	left: 0;
	z-index: 10;
	max-width: 800px;
	width: 100%;
	margin: 50px auto 0;
	transform: translateY(1px);
	/* Fix fine line subpixel gaps */
}

.sb-toast-header {
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.sb-toast-details {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	padding: 0 30px;
}

.sb-toast-summary.is-expanded .sb-toast-details {
	max-height: 1000px;
	opacity: 1;
	padding: 20px 30px;
	border-top: 1px solid var(--border-color);
}

.sb-toast-toggle-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-color);
	background: none;
	border: none;
	padding: 0;
}

.sb-toast-toggle-btn .dashicons {
	transition: transform 0.3s ease;
}

.sb-toast-summary.is-expanded .sb-toast-toggle-btn .dashicons {
	transform: rotate(180deg);
}

.sb-toast-actions {
	padding: 20px 30px;
	display: flex;
	gap: 15px;
}

.sb-toast-actions .btn {
	padding: 12px;
}

/* Small adjustments for Checkout page version (Inline but toast-styled) */
.checkout-page .sb-toast-summary {
	border-radius: 20px;
	margin-top: 0;
}

/* Cart Specific Styles */
.cart-item-card {
	background: white;
	padding: 25px;
	border-radius: var(--rounded);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cic-details {
	display: flex;
	gap: 20px;
	align-items: center;
}

.item-icon {
	width: 60px;
	height: 60px;
	background: var(--light-grey);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.transport-badge {
	display: inline-block;
	padding: 2px 8px;
	background: #E6F4EA;
	color: #1E8E3E;
	border-radius: 4px;
	font-size: 11px;
	margin-left: 5px;
	font-weight: 700;
}

.cic-price-action {
	text-align: right;
}

.remove-cart-item {
	background: none;
	border: none;
	color: #ff4444;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

@media (max-width: 600px) {
	.cart-item-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.cic-price-action {
		text-align: left;
		width: 100%;
		border-top: 1px solid var(--border-color);
		padding-top: 15px;
	}
}

/* Mobile Booking Bar */
.mobile-booking-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	padding: 15px 20px;
	box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-color);
}

.mbb-info .mbb-price-wrap {
	display: flex;
	flex-direction: column;
}

.mbb-label {
	font-size: 11px;
	color: #666;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mbb-price {
	font-size: 20px;
	font-weight: 800;
	color: var(--secondary-color);
}

.mbb-deposit {
	font-size: 11px;
	color: var(--primary-color);
	font-weight: 700;
	margin-top: -2px;
}

@media (max-width: 900px) {
	.mobile-booking-bar {
		display: flex;
	}

	.product-details-page {
		padding: 40px 0 100px 0 !important;
	}

	/* Footer Padding Adjustments (Mobile Only) */
	/* body.single-activity footer, */
	/* body.page-template-page-cart footer, */
	/* body.page-template-page-checkout footer, */
	/* body.page-id-28 footer  */
	/* {
		padding-bottom: 120px !important;
	} */

	/* Mobile Floating Cart Button */
	.header-cart-wrapper {
		position: fixed;
		bottom: 25px;
		right: 20px;
		z-index: 10;
		transition: bottom 0.3s ease;
	}

	/* Move it higher if the mobile booking bar is active */
	body.single-activity .header-cart-wrapper {
		bottom: 115px;
	}

	.cart-btn {
		width: 54px;
		height: 54px;
		border-radius: 50% !important;
		padding: 0 !important;
		display: flex;
		justify-content: center;
		align-items: center;
		/* box-shadow: 0 10px 25px rgba(0, 255, 72, 0.3); */
		/* box-shadow: 0 4px 15px rgba(255, 122, 69, 0.4); */
		background: var(--primary-color) !important;
	}

	.cart-btn .btn-text {
		display: none;
	}

	.cart-btn .mobile-cart-icon {
		display: inline-block !important;
		font-size: 24px;
		width: 24px;
		height: 24px;
	}

	/* WhatsApp (Joinchat) Repositioning and Resizing */
	.joinchat {
		bottom: 25px !important;
		right: 90px !important;
		z-index: 1100 !important;
		transition: bottom 0.3s ease, right 0.3s ease;
	}

	.joinchat__button {
		width: 54px !important;
		height: 54px !important;
		line-height: 54px !important;
		bottom: 0 !important;
		right: 0 !important;
	}

	.joinchat__button img,
	.joinchat__button svg {
		width: 30px !important;
		height: 30px !important;
		margin-top: 12px !important;
	}

	body.single-activity .joinchat {
		bottom: 115px !important;
		right: 90px !important;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 32px;
	}

	.product-details-page h1 {
		font-size: 24px !important;
		line-height: 32px;
	}

	.product-meta-summary {
		grid-template-columns: 1fr !important;
		padding: 20px !important;
	}
}

/* Skeleton Loader (Lofi Wireframe) */
.skeleton-card {
	background: white;
	border-radius: var(--rounded);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}

.skeleton-image {
	height: 200px;
	background: #f0f0f0;
	position: relative;
	overflow: hidden;
}

.skeleton-info {
	padding: 20px;
}

.skeleton-title {
	height: 20px;
	background: #f0f0f0;
	margin-bottom: 15px;
	width: 85%;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.skeleton-price {
	height: 16px;
	background: #f0f0f0;
	width: 45%;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.shimmer::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
	animation: sb-shimmer 1.8s infinite;
}

@keyframes sb-shimmer {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

/* Activities Grouping Styles */
.sb-category-main-title {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 40px;
	color: var(--secondary-color);
	border-left: 5px solid var(--primary-color);
	padding-left: 20px;
	line-height: 1.2;
}

.sb-category-subtitle {
	font-size: 22px;
	font-weight: 700;
	margin: 60px 0 25px 0;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 15px;
}

.sb-category-subtitle::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--border-color);
}

#activities-grid {
	min-height: 400px;
}

/* --- Premium Cart Side-Drawer --- */
.sb-drawer-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	visibility: hidden;
	transition: visibility 0.4s;
}

.sb-drawer-container.active {
	visibility: visible;
}

.sb-drawer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.sb-drawer-container.active .sb-drawer-overlay {
	opacity: 1;
}

.sb-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 450px;
	height: 100%;
	background: white;
	box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.sb-drawer-container.active .sb-drawer-panel {
	transform: translateX(0);
}

.sb-cart-drawer-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.sb-cart-drawer-header {
	padding: 25px 30px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sb-cart-drawer-header h2 {
	font-size: 22px;
	font-weight: 800;
	margin: 0;
}

.sb-close-drawer {
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #999;
	transition: color 0.3s;
}

.sb-close-drawer:hover {
	color: var(--primary-color);
}

.sb-cart-drawer-content {
	flex: 1;
	overflow-y: auto;
	padding: 30px;
}

.sb-drawer-footer {
	padding: 30px;
	background: white;
	border-top: 1px solid var(--border-color);
	box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.02);
}

.sb-drawer-totals {
	margin-bottom: 25px;
}

.total-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 15px;
	color: #666;
}

.total-row.deposit {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dashed var(--border-color);
	color: var(--secondary-color);
	font-weight: 800;
	font-size: 18px;
}

.total-row.deposit .price {
	color: var(--primary-color);
}

.sb-drawer-actions .btn {
	width: 100%;
	text-align: center;
	padding: 16px;
	font-size: 16px;
}

.sb-cart-drawer-content .cart-item-card {
	padding: 15px 0;
	box-shadow: none;
	border-bottom: 1px solid var(--border-color);
	border-radius: 0;
	align-items: flex-start;
}

.sb-cart-drawer-content .cart-item-card:last-child {
	border-bottom: none;
}

.sb-cart-drawer-content .item-icon {
	width: 50px;
	height: 50px;
	font-size: 20px;
}

.sb-cart-drawer-content .cic-details h3 {
	font-size: 15px;
	margin-bottom: 4px;
}

.sb-cart-drawer-content .item-meta {
	font-size: 12px;
	color: #777;
}

.sb-cart-drawer-content .item-price {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 5px;
}

/* Shimmer Loader inside Drawer */
.sb-drawer-loading {
	padding: 30px;
}

.sb-shimmer {
	height: 80px;
	background: #f0f0f0;
	margin-bottom: 20px;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}

.sb-shimmer::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
	animation: sb-shimmer 1.8s infinite;
}

.empty-cart-message {
	text-align: center;
	padding: 40px 0;
}

.empty-icon {
	font-size: 60px;
	margin-bottom: 20px;
	opacity: 0.3;
}

.empty-cart-message p {
	color: #666;
	margin-bottom: 25px;
}

/* Premium Form Validation Styles */
.sb-error-text {
	color: #d93025;
	font-size: 12px;
	font-weight: 500;
	margin-top: 5px;
	display: none;
	animation: sbFadeIn 0.3s ease;
}

.sb-input-error {
	border-color: #d93025 !important;
	background-color: #fff8f8 !important;
}

@keyframes sbFadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sbShake {

	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-5px);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(5px);
	}
}

.sb-shake {
	animation: sbShake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

/* Contact Page */
.contact-hero {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
}

.contact-hero .container {
	position: relative;
	z-index: 10;
}

.contact-hero h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.contact-section {
	padding: 80px 0;
	background: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
}

@media (max-width: 991px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.contact-info-card {
	background: var(--light-grey);
	padding: 40px;
	border-radius: var(--rounded);
	height: 100%;
}

.contact-info-card h3 {
	font-size: 24px;
	margin-bottom: 30px;
	color: var(--secondary-color);
}

.contact-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-text h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: #666;
	font-weight: 500;
}

.contact-text p, 
.contact-text a {
	font-size: 18px;
	font-weight: 700;
	color: var(--secondary-color);
	line-height: 1.4;
}

.contact-text a:hover {
	color: var(--primary-color);
}

.contact-socials {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}

.contact-socials h4 {
	margin-bottom: 20px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

.contact-social-flex {
	display: flex;
	gap: 15px;
}

.contact-info-card .social-icon {
	background: white;
	color: var(--secondary-color);
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info-card .social-icon:hover {
	background: var(--primary-color);
	color: white;
}

/* Contact Form */
.contact-form-wrap h3 {
	font-size: 32px;
	margin-bottom: 40px;
}

.sb-form-group {
	margin-bottom: 25px;
}

.sb-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
	color: var(--secondary-color);
}

.sb-form-input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid var(--border-color);
	border-radius: var(--rounded);
	font-family: inherit;
	font-size: 16px;
	transition: all 0.3s ease;
}

.sb-form-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(255, 79, 0, 0.1);
}

textarea.sb-form-input {
	min-height: 150px;
	resize: vertical;
}

.sb-contact-submit {
	width: 100%;
	padding: 18px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 10px;
}

/* Form Response Messages */
.form-response {
	margin-top: 20px;
	padding: 15px 20px;
	border-radius: var(--rounded);
	display: none;
}

.form-response.success {
	display: block;
	background: #E7F9ED;
	color: #1A8B47;
	border: 1px solid #B7EBC9;
}

.form-response.error {
	display: block;
	background: #FFF0F0;
	color: #D63031;
	border: 1px solid #FFD1D1;
}

/* Map Section */
.map-section {
	height: 500px;
	width: 100%;
	background: #eee;
}

.map-section iframe {
	width: 100%;
	height: 100%;
	border: none;
}


/* Product Gallery Slider */
.product-details-page {
	padding: 40px 0 80px;
}

.sb-activity-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.sb-activity-main {
	min-width: 0;
	width: 100%;
}

.sb-activity-grid > div {
	min-width: 0;
}

@media (max-width: 1200px) {
	.sb-activity-grid {
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.sb-activity-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}
}

.product-gallery {
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	background: #f0f0f0;
	aspect-ratio: 16 / 9;
	height: auto;
	max-height: 600px;
	width: 100%;
}

.product-gallery-slider {
	height: 100%;
	width: 100%;
}

.product-gallery-slider .swiper-slide {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-gallery-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery-slider .swiper-button-next,
.product-gallery-slider .swiper-button-prev {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50%;
	color: white;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-gallery-slider .swiper-button-next:hover,
.product-gallery-slider .swiper-button-prev:hover {
	background: var(--primary-color);
	transform: scale(1.1);
}

.product-gallery-slider .swiper-button-next::after,
.product-gallery-slider .swiper-button-prev::after {
	font-size: 20px;
	font-weight: 900;
}

.product-gallery-slider .swiper-pagination-bullet {
	background: white;
	opacity: 0.6;
	width: 8px;
	height: 8px;
	transition: all 0.3s ease;
}

.product-gallery-slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--primary-color);
	width: 24px;
	border-radius: 4px;
}

@media (max-width: 991px) {
	.product-gallery {
		height: 400px;
	}
}

@media (max-width: 576px) {
	.product-gallery {
		height: 300px;
		margin-bottom: 25px;
		border-radius: 12px;
	}
	.product-gallery-slider .swiper-button-next,
	.product-gallery-slider .swiper-button-prev {
		width: 40px;
		height: 40px;
		/* display: none; Hide arrows on mobile for cleaner look */
	}
}

@media (max-width: 768px) {
	.contact-hero h1 {
		font-size: 36px;
	}
	
	.contact-section {
		padding: 60px 0;
	}
	
	.contact-info-card {
		padding: 30px 20px;
	}
	
	.contact-text p, 
	.contact-text a {
		font-size: 16px;
	}
	
	.map-section {
		height: 350px;
	}

	.product-gallery {
		height: 300px !important;
		margin: 0 -20px 30px;
		border-radius: 0 !important;
		width: calc(100% + 40px);
	}

	/* Swiper Navigation Customization */
	.swiper-button-next,
	.swiper-button-prev {
		color: white !important;
		width: 32px !important;
		height: 32px !important;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(5px);
		border-radius: 50%;
		transition: all 0.3s ease;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 16px !important;
		font-weight: 900;
	}
}

/* Flatpickr Custom Styling */
input.flatpickr-input {
	background-color: white !important;
	/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important; */
	/* background-repeat: no-repeat !important;
	background-position: 15px center !important; */
	/* text-align: center !important; */
	padding: 10px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	width: 100%;
}
/* Booking Status page */
.page-id-122 #post-122{
	padding: 0 20px;
}