/**
 * Theme Custom CSS
 *
 * Styles for hardcoded components (footer, navbar extras)
 * that replace Elementor-built sections.
 *
 * @package MIT BoatripSplit
 */

/* ==========================================================================
   0. Missing Utility Classes
   ========================================================================== */

/* Bootstrap text-center utility (missing from bootstrap-grid.css) */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Clearfix (used by Bootstrap rows) */
.clearfix:before,
.clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
.row:before,
.row:after { content: " "; display: table; }
.row:after { clear: both; }

/* ==========================================================================
   1. Footer Widget Area — Explicit Dark Background
   ========================================================================== */

/* Force dark background + pattern texture on the entire footer wrapper (including copyright) */
.lte-footer-wrapper {
	background-color: var(--black, #00162c) !important;
	background-image: url('../images/pattern.png');
	background-repeat: repeat;
}

/* Disable the original :before pseudo that can interfere */
.lte-footer-wrapper:before {
	display: none !important;
}

/* .footer-wrapper is our custom wrapper inside .lte-footer-wrapper */
.lte-footer-wrapper .footer-wrapper {
	padding: 80px 0 50px;
	background-color: var(--black, #00162c);
	background-image: url('../images/pattern.png');
	background-repeat: repeat;
	color: rgba(255, 255, 255, 0.7);
}

/* No overlay needed — pattern.png already includes the dark navy + wave texture */
.lte-footer-wrapper .footer-wrapper::before {
	display: none;
}

/* Decorative pattern strip between footer and copyright */
.lte-footer-wrapper .lte-footer-divider {
	height: 3px;
	background-image: url('../images/top_pattern.png');
	background-position: bottom center;
	background-repeat: repeat-x;
	margin-bottom: -1px;
}

/* Footer widget columns */
.lte-footer-wrapper .widget {
	background-color: transparent;
	margin-bottom: 30px;
}

/* Footer widget titles — gold color, matching demo's h6 heading style */
.lte-footer-wrapper .widget-title {
	font-family: var(--font-headers, 'Outfit'), sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--main, #d0a249);
	margin: 0 0 25px;
	padding-bottom: 0;
	position: relative;
	line-height: 1.2em;
}

.lte-footer-wrapper .widget-title:after {
	display: none;
}

/* Footer text */
.lte-footer-wrapper .widget p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Footer strong/bold */
.lte-footer-wrapper .widget strong {
	color: #ffffff;
	font-weight: 600;
}

/* ==========================================================================
   2. Footer Logo
   ========================================================================== */
.lte-footer-logo {
	margin-bottom: 20px;
}

.lte-footer-logo .lte-logo img {
	max-height: 45px;
	width: auto;
}

/* ==========================================================================
   3. Footer Social Icons
   ========================================================================== */
.lte-social-icons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.lte-social-icons a {
	display: inline;
	color: var(--main, #d0a249);
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lte-social-icons a:hover {
	color: #ffffff;
}

/* ==========================================================================
   4. Footer Navigation Menu
   ========================================================================== */
.lte-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lte-footer-menu li {
	margin-bottom: 12px;
}

.lte-footer-menu li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.lte-footer-menu li a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	color: var(--main, #d0a249);
	font-size: 10px;
	margin-right: 10px;
	position: relative;
	top: -1px;
}

.lte-footer-menu li a:hover {
	color: var(--main, #d0a249);
	padding-left: 5px;
}

/* ==========================================================================
   5. Footer Contact Info
   ========================================================================== */
.lte-footer-contacts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lte-footer-contacts li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.6;
}

.lte-footer-contacts li:last-child {
	margin-bottom: 0;
}

.lte-footer-contacts li i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 50%;
	background-color: var(--main, #d0a249);
	color: var(--black, #002c3f);
	font-size: 14px;
	flex-shrink: 0;
}

.lte-footer-contacts li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lte-footer-contacts li a:hover {
	color: var(--main, #d0a249);
}

/* ==========================================================================
   6. Copyright Bar (extends theme-main.css .copyright-block)
   ========================================================================== */
.copyright-block.copyright-layout-default {
	background-color: transparent;
}

.copyright-block.copyright-layout-default .container {
	text-align: left;
}

.copyright-block p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.copyright-block a {
	color: var(--main, #d0a249);
}

.copyright-block a:hover {
	color: #ffffff;
}

/* ==========================================================================
   7. Go-to-top Button
   ========================================================================== */
.lte-go-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 74px;
	height: 74px;
	background-color: #ffffff;
	color: var(--black, #00162c);
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lte-go-top .go-top-icon-v2 {
	font-size: 36px;
	color: var(--black, #00162c);
	display: block;
	text-align: center;
	transition: all 0.2s ease;
}

.lte-go-top:hover {
	background-color: var(--black, #00162c);
}

.lte-go-top:hover .go-top-icon-v2 {
	color: #ffffff;
}

.lte-go-top.visible,
.lte-go-top.show {
	display: flex;
}

/* ==========================================================================
   8. Footer Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.lte-footer-wrapper .footer-wrapper {
		padding: 60px 0 30px;
	}
}

@media (max-width: 767px) {
	.lte-footer-wrapper .footer-wrapper {
		padding: 50px 0 20px;
	}

	.lte-footer-wrapper .widget-title:after {
		left: 50%;
		transform: translateX(-50%);
	}

	.lte-footer-wrapper .widget {
		text-align: center;
	}

	.lte-social-icons {
		justify-content: center;
	}

	.lte-footer-contacts li {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
@media (min-width: 576px) and (max-width: 992px) {
	.lte-footer-widget-area .col-md-6 {
		width: 50%;

	}
}
@media (max-width: 576px) {
	.lte-footer-widget-area .col-sm-12 {
		width: 100%;
	}
}
/* ==========================================================================
   9. Navbar Extras (profile icon, cart badge styling)
   ========================================================================== */

/* Profile icon */
.lte-navbar-icons .lte-nav-profile a {
	font-size: 18px;
	transition: all 0.2s ease;
}

.lte-navbar-icons .lte-nav-profile a:hover {
	color: var(--main, #d0a249);
}

/* Cart icon wrapper */
.lte-navbar-icons .lte-nav-cart .cart-navbar {
	text-decoration: none;
}

.lte-navbar-icons .lte-nav-cart .lte-cart {
	position: relative;
	display: inline-block;
}

.lte-navbar-icons .lte-nav-cart .lte-cart > i {
	font-size: 18px;
	transition: all 0.2s ease;
}

.lte-navbar-icons .lte-nav-cart .lte-cart:hover > i {
	color: var(--main, #d0a249);
}

.lte-navbar-icons .lte-nav-cart .lte-count {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	background-color: var(--main, #d0a249);
	color: var(--black, #002c3f);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	position: absolute;
	right: -10px;
	top: -6px;
}

/* Navbar icon colors for white scheme (transparent nav) */
#lte-nav-wrapper.lte-nav-color-white .lte-navbar-icons .lte-nav-profile a,
#lte-nav-wrapper.lte-nav-color-white .lte-navbar-icons .lte-nav-cart .lte-cart > i {
	color: #ffffff;
}

/* Navbar icon colors for black scheme (solid nav) */
#lte-nav-wrapper.lte-nav-color-black .lte-navbar-icons .lte-nav-profile a,
#lte-nav-wrapper.lte-nav-color-black .lte-navbar-icons .lte-nav-cart .lte-cart > i {
	color: var(--black, #002c3f);
}

/* When affixed, keep icons readable */
.lte-navbar.affix .lte-navbar-icons .lte-nav-profile a,
.lte-navbar.affix .lte-navbar-icons .lte-nav-cart .lte-cart > i,
.lte-navbar.affix .lte-top-search-ico {
	color: var(--black, #002c3f);
}

#lte-nav-wrapper.lte-nav-color-white .lte-navbar.affix .lte-navbar-icons .lte-nav-profile a,
#lte-nav-wrapper.lte-nav-color-white .lte-navbar.affix .lte-navbar-icons .lte-nav-cart .lte-cart > i,
#lte-nav-wrapper.lte-nav-color-white .lte-navbar.affix .lte-top-search-ico {
	color: #ffffff;
}

/* ==========================================================================
   10. Header Bar — Flex layout (replaces Elementor header)
   Matches demo: Nav (left) | Logo (center) | Icons (right)
   ========================================================================== */

#lte-nav-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

#lte-nav-wrapper.lte-layout-default {
	position: relative;
}

/* Inner pages: white navbar, no pattern, dark text */
.lte-layout-default .lte-header-bar {
	background-color: #ffffff;
	background-image: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
/* Desktop nav links — dark text (scoped to the desktop nav container) */
.lte-layout-default .lte-header-bar-nav > nav.lte-navbar-custom .lte-ul-nav > li > a {
	color: var(--black) !important;
}
.lte-layout-default .lte-header-bar-nav > nav.lte-navbar-custom .lte-ul-nav > li > a:hover {
	color: var(--main) !important;
}

/* Mobile nav panel — white text on dark background (scoped to mobile wrapper, class-independent) */
.lte-navbar-custom-mobile-wrapper .lte-navbar-items-custom .lte-ul-nav > li > a {
	color: var(--white, #ffffff) !important;
}
.lte-navbar-custom-mobile-wrapper .lte-navbar-items-custom .lte-ul-nav > li > a:hover {
	color: var(--main, #d0a249) !important;
}

/* Mobile panel logo — constrain size, prevent covering close button */
.lte-navbar-custom-mobile-wrapper .lte-navbar-header .lte-logo {
	max-width: calc(100% - 80px);
}
.lte-navbar-custom-mobile-wrapper .lte-navbar-header .lte-logo img {
	max-height: 50px;
	max-width: 100%;
	width: auto;
	height: auto;
}

/* Close button — always above logo */
.lte-navbar-custom-mobile-wrapper .lte-navbar-close {
	position: relative;
	z-index: 20;
}

.lte-header-bar {
	display: flex;
	align-items: center;
	padding: 6px 45px 0;
	min-height: 101px;
	gap: 20px;
	position: relative;
	z-index: 100;
	transition: background 0.2s linear;
	background-image: url('../images/top_pattern.png');
	background-repeat: repeat-x;
	background-position: top center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Affix: all pages → white bg, dark text on scroll */
.lte-header-bar.affix {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.99);
	background-image: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
/* Affix dark text — desktop nav only, never the mobile panel */
.lte-header-bar.affix .lte-header-bar-nav > nav.lte-navbar-custom .lte-ul-nav > li > a {
	color: var(--black) !important;
}
.lte-header-bar.affix .lte-header-bar-nav > nav.lte-navbar-custom .lte-ul-nav > li > a:hover {
	color: var(--main) !important;
}
.lte-header-bar.affix .lte-navbar-icons .lte-list li a,
.lte-header-bar.affix .lte-navbar-icons .lte-list li a span {
	color: var(--black);
}
.lte-header-bar.affix .lte-navbar-icons .lte-list li a span.lte-count {
	color: var(--white);
}
.admin-bar .lte-header-bar.affix {
	top: 32px;
}

/* Left: Nav area */
.lte-header-bar-nav {
	flex: 1;
	display: flex;
	align-items: center;
}

/* Center: Logo */
.lte-header-bar-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lte-header-bar-logo .lte-logo img {
	max-height: 50px;
	width: auto;
}

/* Right: Icons */
.lte-header-bar-icons {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* Desktop nav visible, mobile wrapper hidden on desktop */
.lte-header-bar-nav > .lte-navbar-custom-mobile-wrapper {
	display: none;
}

.lte-header-bar-nav > nav.lte-navbar-custom {
	display: block;
}

/* Force horizontal nav items (works for both menu-item and page_item) */
.lte-header-bar .lte-navbar-items-custom.navbar-desktop .lte-ul-nav > li {
	float: left;
	font-size: 12px;
	padding: 0;
	position: relative;
}
.lte-header-bar .lte-navbar-items-custom.navbar-desktop .lte-ul-nav > li > a {
	font-family: var(--font-main), sans-serif;
	font-size: 16px;
	font-weight: 500;
	padding: 0 18px;
	color: var(--black);
	text-decoration: none;
	cursor: pointer;
	transition: color 0.4s ease;
}
.lte-header-bar .lte-navbar-items-custom.navbar-desktop .lte-ul-nav > li > a:hover {
	color: var(--main);
}

/* Icons area — hide on mobile */
.lte-header-bar-icons .lte-navbar-icons .lte-list {
	display: inline-flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 5px;
}

.lte-header-bar-icons .lte-navbar-icons .lte-list li {
	list-style: none;
}

.lte-header-bar-icons .lte-navbar-icons .lte-list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 18px;
	text-decoration: none;
	transition: color 0.3s;
}

/* White scheme icon colors */
.lte-scheme-white .lte-navbar-icons .lte-list li a,
.lte-scheme-white .lte-navbar-icons .lte-list li a span {
	color: var(--white, #ffffff);
}

.lte-scheme-dark .lte-navbar-icons .lte-list li a,
.lte-scheme-dark .lte-navbar-icons .lte-list li a span {
	color: var(--black, #002c3f);
}
.lte-scheme-dark .lte-navbar-icons .lte-list li a span.lte-count {
	color: var(--white, #ffffff);
}

/* Cart icon (lte-font) */
.lte-cart.lte-cart-type-1 {
	position: relative;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.lte-cart.lte-cart-type-1 .lte-icon-cart {
	font-size: 18px;
}

.lte-cart.lte-cart-type-1 .lte-count {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	background-color: var(--main, #d0a249);
	color: var(--black, #002c3f);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	position: absolute;
	right: -10px;
	top: -6px;
}

/* Transparent layout (front page): white hamburger icon */
.lte-layout-transparent .lte-header-bar:not(.affix) .lte-navbar-toggle-custom .icon-bar {
	background-color: var(--white, #ffffff);
}

/* Affix state: hamburger icon dark on scroll */
.lte-header-bar.affix .lte-navbar-toggle-custom .icon-bar, 
.lte-layout-transparent .lte-header-bar.affix-top .lte-navbar-toggle-custom .icon-bar {
	background-color: var(--black);
}

/* ==========================================================================
   10b. Desktop Dropdown Submenu (ul.sub-menu)
   Restored here because PurgeCSS removed these from theme-main.css
   (sub-menu class is generated dynamically by wp_nav_menu, not in PHP templates)
   ========================================================================== */

/* Default: hidden, animated in on hover */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu {
	width: 250px;
	margin: 15px 0 0 0;
	padding: 8px 0;
	display: block;
	opacity: 0;
	position: absolute;
	transform: translateY(10%);
	transition: all 0.3s linear;
	z-index: 0;
	pointer-events: none;
	text-align: left;
	list-style: none;
	border-radius: 0;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
	background: #fff;
}

/* Show on parent hover */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav > li.menu-item-has-children:hover > ul.sub-menu {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.3s linear;
	z-index: 100;
	pointer-events: auto;
}

/* Sub-menu list items */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu li {
	padding: 0;
	position: relative;
	transition: all 0.3s linear;
	text-align: start;
}

.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu li:last-child {
	border-bottom: none;
}

/* Sub-menu links */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu li a {
	font-family: var(--font-main), sans-serif;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0;
	padding: 4px 14px 6px 14px;
	margin: 0 10px;
	display: block;
	position: relative;
	text-transform: none;
	transition: color 0.2s ease, background 0.2s ease;
	color: var(--black);
	text-decoration: none;
	border-radius: 0;
}

.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu li a span {
	vertical-align: middle;
}

/* Sub-menu link hover */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu li:hover > a {
	background-color: var(--main);
	color: var(--black);
}

/* Nested sub-menu show on hover */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav ul.sub-menu li:hover > ul {
	opacity: 1;
	transform: translateY(0);
	z-index: 100;
	pointer-events: auto;
}

/* Parent li hover: transparent overlay bridge to prevent gap closing submenu */
.lte-navbar-custom .lte-navbar-items-custom.navbar-desktop .lte-ul-nav > li.menu-item-has-children:hover:after {
	content: "";
	z-index: 50;
	position: absolute;
	height: 30px;
	min-width: 250px;
	bottom: -30px;
	left: 0;
	right: 0;
	display: block;
	background: transparent;
	pointer-events: auto;
}

/* ==========================================================================
   10c. Header Bar — Responsive
   ========================================================================== */

@media (max-width: 1198px) {
	/* Show hamburger, hide desktop nav on mobile */
	.lte-header-bar-nav > .lte-navbar-custom-mobile-wrapper {
		display: block;
	}

	.lte-header-bar-nav > nav.lte-navbar-custom {
		display: none;
	}

	.lte-header-bar {
		padding: 10px 20px;
		min-height: 90px;
		position: relative;
	}

	/* Hamburger stays above the centered logo.
	   pointer-events: none on the wrapper so the absolutely-positioned logo
	   behind it remains clickable; restore pointer events on actual children. */
	.lte-header-bar-nav {
		position: relative;
		z-index: 2;
		pointer-events: none;
	}

	.lte-header-bar-nav > *,
	.lte-navbar-custom-mobile-wrapper {
		pointer-events: auto;
	}

	/* Logo: absolute center on mobile */
	.lte-header-bar-logo {
		position: absolute !important;
		left: 50% !important;
		top: 50% !important;
		transform: translate(-50%, -50%) !important;
		right: auto !important;
		z-index: 1;
		flex: none;
	}

	.lte-header-bar-logo .lte-logo img {
		max-height: 55px;
	}

	/* Show icons on mobile */
	.lte-header-bar-icons {
		display: flex;
	}

	.lte-style-grid .lte-navbar-icons li {
		min-height: unset;
		height: unset;
	}

	.lte-style-grid .lte-navbar-icons li {
		width: 35px;
	}
	.lte-style-grid .lte-navbar-icons li.lte-nav-search {
		display: none;
	}
}

@media (max-width: 767px) {
	.lte-header-bar {
		padding: 8px 15px;
		min-height: 80px;
	}

	.lte-header-bar-logo .lte-logo img {
		max-height: 50px;
	}
}

/* ==========================================================================
   10b. Page Header (inner pages)
   ========================================================================== */

.lte-page-header {
	background-size: 100%;
	background-position: center;
}
body.admin-bar .lte-page-header {
	background-position: center;
}
.lte-page-header .breadcrumbs a {
	color: #ffffff;
	color: var(--white);
}
.lte-page-header > .container {
	padding-top: 190px;
	padding-bottom: 190px;
}
@media (max-width: 991px) {
	.lte-page-header > .container {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.lte-nav-languages .wpml-ls-legacy-list-horizontal {
		padding: 0;
	}
}
@media (max-width: 767px) {
	.lte-page-header {
		background-size: cover;
	}
	.lte-page-header > .container {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.lte-discovery-section .row [class*="col-"] {
		width: 100%;
	}
}
@media (max-width: 480px) {
	.lte-header-bar-logo .lte-logo img {
		max-width: 30vw;
	}
}
/* Collapse the empty content-wrapper re-opened for footer on full-width pages */
.lte-about-testimonials + .lte-content-wrapper {
	min-height: 0;
}

.home .lte-events-sc.lte-layout-table .lte-item .lte-item-wrapper {
	display: flex;
	align-items: center;
}
.home .lte-events-sc .lte-item-wrapper .lte-event-date {
	width: 30%;
}
@media (max-width: 991px) {
	.home .lte-events-section .lte-events-col-right {
		margin: auto;
	}
	.home .lte-events-sc.lte-layout-table .lte-item .lte-item-wrapper {
		display: block;
	}
	.home .lte-events-sc .lte-item-wrapper .lte-event-date {
		width: 100%;
		margin-bottom: 15px;
	}
	.home .lte-events-section .lte-events-sc.lte-layout-table .lte-item .lte-img {
		margin: auto;
		padding: 0;
	}
	.home .lte-events-section .lte-event-venue {
		max-width: 100%;
	}
	
}

/* ==========================================================================
   11. About Us Page
   ========================================================================== */

/* --- Section 1: Intro + Stats --- */
.lte-about-intro {
	padding: 80px 0 60px;
}

.lte-about-intro-heading {
	font-family: var(--font-main), sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.5;
	color: var(--black, #002c3f);
	margin-bottom: 50px;
}

.lte-about-stats {
	margin-bottom: 40px;
}

.lte-about-stat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.lte-about-stat-number h2 {
	font-family: var(--font-main), sans-serif;
	font-size: 80px;
	font-weight: 600;
	color: var(--black, #002c3f);
	line-height: 1;
	margin: 0;
	display: inline;
}

.lte-counter-suffix {
	font-family: var(--font-main), sans-serif;
	font-size: 80px;
	font-weight: 600;
	color: var(--black, #002c3f);
	line-height: 1;
}

.lte-counter-label {
	font-family: var(--font-main), sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--main, #d0a249);
	text-transform: none;
	letter-spacing: 0.5px;
	margin: 5px 0 0;
}

.lte-about-stat-thumb img {
	width: 160px;
	height: 80px;
	object-fit: cover;
	border-radius: 40px;
}

.lte-about-stat-divider {
	border-top: 1px dashed rgba(0, 44, 63, 0.15);
}

.lte-about-intro-image {
	height: 100%;
}

.lte-about-intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* --- Section 2: Services (block-icon) --- */
.lte-about-services {
	padding: 60px 0 80px;
}

.lte-about-services .lte-block-icon {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lte-about-services .lte-item {
	list-style: none;
}

.lte-about-services .lte-inner {
	padding: 30px;
	border-right: 1px dashed rgba(0, 44, 63, 0.15);
	height: 100%;
}

.lte-about-services .lte-item:last-child .lte-inner {
	border-right: none;
}

.lte-about-services .lte-inner i.icon {
	font-size: 60px;
	color: var(--main, #d0a249);
	display: block;
	margin-bottom: 25px;
	line-height: 1;
}

.lte-about-services .lte-icon-content {
	display: block;
}

.lte-about-services .lte-header {
	display: block;
	font-family: var(--font-main), sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--black, #002c3f);
	margin-bottom: 12px;
}

.lte-about-services .lte-descr {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}

.lte-about-services .lte-btn-wrap {
	display: block;
}

.lte-about-services .lte-btn.btn-transparent {
	color: var(--main, #d0a249);
	padding: 0;
	font-size: 0;
}

.lte-about-services .lte-btn.btn-transparent .lte-btn-after::after {
	font-size: 20px;
	color: var(--main, #d0a249);
}

/* --- Section 3: CTA Banner --- */
.lte-about-cta {
	position: relative;
	padding: 120px 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
}

.lte-about-cta .lte-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 22, 44, 0.55);
}

.lte-about-cta-inner {
	position: relative;
	z-index: 2;
}

.lte-about-cta h2 {
	font-family: var(--font-main), sans-serif;
	font-size: 60px;
	font-weight: 600;
	color: var(--white, #ffffff);
	line-height: 1.2;
	margin-bottom: 40px;
}

.lte-about-cta .lte-btn.btn-main.btn-lg {
	padding: 18px 50px;
	font-size: 16px;
}

/* --- Section 4: Gallery --- */
.lte-about-gallery {
	padding: 80px 0;
	background-color: var(--gray, #f1f0ec);
}

.lte-about-gallery-header {
	margin-bottom: 50px;
	align-items: flex-end;
}

.lte-about-gallery-title {
	font-family: var(--font-main), sans-serif;
	font-size: 50px;
	font-weight: 600;
	color: var(--black, #002c3f);
	line-height: 1.15;
	margin: 0;
}

.lte-about-gallery-text {
	font-family: var(--font-main), sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.lte-about-gallery-masonry {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 240px 240px 240px;
	gap: 14px;
}

/* Explicit placement — guaranteed layout, no auto-flow surprises
   Row 1: [1] [2] [3]
   Row 2: [4] [5——5]
   Row 3: [6——6] [7]
*/
.lte-about-gallery-masonry a:nth-child(1) { grid-column: 1; grid-row: 1; }
.lte-about-gallery-masonry a:nth-child(2) { grid-column: 2; grid-row: 1; }
.lte-about-gallery-masonry a:nth-child(3) { grid-column: 3; grid-row: 1; }
.lte-about-gallery-masonry a:nth-child(4) { grid-column: 1; grid-row: 2; }
.lte-about-gallery-masonry a:nth-child(5) { grid-column: 2 / 4; grid-row: 2; }
.lte-about-gallery-masonry a:nth-child(6) { grid-column: 1 / 3; grid-row: 3; }
.lte-about-gallery-masonry a:nth-child(7) { grid-column: 3; grid-row: 3; }

.lte-about-gallery-masonry a {
	display: block;
	overflow: hidden;
	height: 100%;
}

.lte-about-gallery-masonry img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.lte-about-gallery-masonry a:hover img {
	transform: scale(1.06);
}

/* --- Section 5: Testimonials --- */
.lte-about-testimonials {
	padding: 80px 0 100px;
}

.lte-about-testimonials-header {
	text-align: center;
	margin-bottom: 50px;
}

.lte-about-testimonials-header .lte-subtitle {
	font-family: var(--font-main), sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #999;
	margin-bottom: 15px;
}

.lte-about-testimonials-header .lte-section-title {
	font-family: var(--font-cursive, 'aAutoSignature'), cursive;
	font-size: 50px;
	font-weight: 400;
	color: var(--black, #002c3f);
	margin: 0;
}

.lte-testimonials-sc .swiper-wrapper {
	display: flex;
}

.lte-testimonials-sc .swiper-slide {
	flex: 0 0 33.333%;
	max-width: 33.333%;
	padding: 0 15px;
}

.lte-testimonials-sc .lte-item {
	height: 100%;
}

.lte-testimonials-sc .lte-inner {
	border: 1px dashed rgba(0, 44, 63, 0.15);
	border-radius: 0;
	padding: 40px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.lte-quote-icon {
	font-family: var(--font-cursive, 'aAutoSignature'), cursive;
	font-size: 60px;
	line-height: 1;
	color: var(--main, #d0a249);
	display: block;
	margin-bottom: 20px;
}

.lte-testimonials-sc .lte-descr {
	font-size: 16px;
	font-weight: 300;
	color: #555;
	line-height: 1.7;
	flex: 1;
	margin-bottom: 30px;
}

.lte-testimonials-sc .lte-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.lte-testimonials-sc .lte-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.lte-testimonials-sc .lte-author-info {
	display: flex;
	flex-direction: column;
}

.lte-testimonials-sc .lte-header {
	font-family: var(--font-main), sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--black, #002c3f);
}

.lte-testimonials-sc .lte-position {
	font-size: 13px;
	font-weight: 400;
	color: #999;
}

.lte-testimonials-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.lte-testimonials-nav .lte-swiper-prev,
.lte-testimonials-nav .lte-swiper-next {
	width: 50px;
	height: 50px;
	border: 1px solid rgba(0, 44, 63, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 18px;
	color: var(--black, #002c3f);
}

.lte-testimonials-nav .lte-swiper-prev:hover,
.lte-testimonials-nav .lte-swiper-next:hover {
	border-color: var(--main, #d0a249);
	color: var(--main, #d0a249);
}

/* --- About Us Responsive --- */
@media (max-width: 991px) {
	.lte-about-intro-heading {
		font-size: 22px;
	}

	.lte-about-stat-number h2,
	.lte-counter-suffix {
		font-size: 50px;
	}

	.lte-about-cta h2 {
		font-size: 36px;
	}

	.lte-about-gallery-title {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.lte-about-gallery-masonry {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, 200px);
	}

	.lte-about-gallery-masonry a:nth-child(1) { grid-column: 1; grid-row: 1; }
	.lte-about-gallery-masonry a:nth-child(2) { grid-column: 2; grid-row: 1; }
	.lte-about-gallery-masonry a:nth-child(3) { grid-column: 1; grid-row: 2; }
	.lte-about-gallery-masonry a:nth-child(4) { grid-column: 2; grid-row: 2; }
	.lte-about-gallery-masonry a:nth-child(5) { grid-column: 1; grid-row: 3; }
	.lte-about-gallery-masonry a:nth-child(6) { grid-column: 2; grid-row: 3; }
	.lte-about-gallery-masonry a:nth-child(7) { grid-column: 1 / 3; grid-row: 4; }

	.lte-testimonials-sc .swiper-slide {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.lte-about-services .lte-inner {
		border-right: none;
		border-bottom: 1px dashed rgba(0, 44, 63, 0.15);
	}
}

@media (max-width: 767px) {
	.lte-about-intro {
		padding: 40px 0;
	}

	.lte-about-cta {
		padding: 60px 0;
	}

	.lte-about-cta h2 {
		font-size: 28px;
	}

	.lte-about-gallery-title {
		font-size: 28px;
	}

	.lte-about-gallery-text {
		font-size: 15px;
	}

	.lte-about-gallery-masonry {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(7, 180px);
	}

	.lte-about-gallery-masonry a:nth-child(1) { grid-column: 1; grid-row: 1; }
	.lte-about-gallery-masonry a:nth-child(2) { grid-column: 1; grid-row: 2; }
	.lte-about-gallery-masonry a:nth-child(3) { grid-column: 1; grid-row: 3; }
	.lte-about-gallery-masonry a:nth-child(4) { grid-column: 1; grid-row: 4; }
	.lte-about-gallery-masonry a:nth-child(5) { grid-column: 1; grid-row: 5; }
	.lte-about-gallery-masonry a:nth-child(6) { grid-column: 1; grid-row: 6; }
	.lte-about-gallery-masonry a:nth-child(7) { grid-column: 1; grid-row: 7; }

	.lte-testimonials-sc .swiper-slide {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.lte-about-testimonials-header .lte-section-title {
		font-size: 36px;
	}
}

/* ==========================================================================
   12. Blog Single - Share Buttons
   ========================================================================== */

.lte-share-inline {
	display: inline-block;
	text-align: right;
}

.lte-share-inline .lte-share-header {
	font-family: var(--font-headers), serif;
	letter-spacing: -0.5px;
	font-weight: 400;
	font-size: 14px;
	margin-right: 12px;
	color: var(--black);
}

.lte-share-inline a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: var(--black);
	font-size: 14px;
	margin-left: 4px;
	border-radius: 50%;
	background-color: var(--gray);
	transition: all 0.3s ease;
}

.lte-share-inline a:hover {
	background-color: var(--main);
	color: #fff;
}

/* Comment form submit button */
.comments-area .form-submit input[type="submit"],
.comments-area #send_comment {
	background-color: var(--main);
	color: #fff;
	border: 2px solid var(--main);
	padding: 16px 50px;
	font-family: var(--font-headers), serif;
	letter-spacing: -0.5px;
	font-weight: 400;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: none;
	min-width: 200px;
}

.comments-area .form-submit input[type="submit"]:hover,
.comments-area #send_comment:hover {
	background-color: transparent;
	color: var(--main);
}

/* ==========================================================================
   13. Contact Page
   ========================================================================== */

.lte-contact-section {
	padding: 70px 0;
}

.lte-contact-intro {
	padding-right: 40px;
}

.lte-contact-intro .lte-sub-header {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--main);
	margin-bottom: 14px;
	display: block;
}

.lte-contact-intro h2.lte-header,
.lte-contact-intro h4.lte-header {
	font-size: 42px;
	font-weight: 400;
	line-height: 1.15;
	color: var(--black);
	margin-top: 0;
	margin-bottom: 20px;
}

.lte-contact-intro .lte-descr {
	font-size: 15px;
	line-height: 1.7;
	color: #777;
	margin-bottom: 36px;
}

/* Contact Info List */
.lte-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lte-contact-list li {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.lte-contact-list-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid var(--main);
	color: var(--main);
	font-size: 15px;
	margin-right: 16px;
}

.lte-contact-list-text {
	font-size: 15px;
	color: var(--black);
	line-height: 1.4;
}

.lte-contact-list-text a {
	color: inherit;
	text-decoration: none;
}

.lte-contact-list-text a:hover {
	color: var(--main);
}

/* Form field with icon */
.lte-cf-field {
	position: relative;
	margin-bottom: 28px;
}

.lte-cf-field .lte-cf-icon {
	position: absolute;
	left: 0;
	top: 20px;
	color: var(--main);
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
}

.lte-cf-field--textarea .lte-cf-icon {
	top: 4px;
	transform: none;
}

.lte-fallback-contact-form input[type="text"],
.lte-fallback-contact-form input[type="email"],
.lte-fallback-contact-form input[type="tel"] {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ddd;
	padding: 8px 0 8px 34px !important;
	font-size: 15px;
	color: #333;
	background: transparent;
	outline: none;
	transition: border-color .2s;
}

.lte-fallback-contact-form input[type="text"]:focus,
.lte-fallback-contact-form input[type="email"]:focus {
	border-bottom-color: var(--main);
}

.lte-fallback-contact-form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ddd;
	padding: 8px 0 8px 0;
	font-size: 15px;
	color: #333;
	background: transparent;
	outline: none;
	resize: vertical;
	min-height: 120px;
	transition: border-color .2s;
}

.lte-fallback-contact-form textarea:focus {
	border-bottom-color: var(--main);
}

.lte-fallback-contact-form input::placeholder,
.lte-fallback-contact-form textarea::placeholder {
	color: #aaa;
}

.lte-btn-wrap--right {
	text-align: right;
	margin-top: 32px;

}
.wpcf7-form .lte-btn-wrap--right {
	display: flex;
    justify-content: flex-end;
}
@media (max-width: 1198px) {
	.wpcf7-form .lte-btn-wrap--right {
		justify-content: center;
	}
}
.wpcf7-form .lte-cf-field:has(.lte-cf-icon) input:not([type="submit"]):not([type="button"]):not([type="radio"]):not([type="checkbox"]) {
	padding-left: 30px !important;
}
.wpcf7-form .lte-btn-wrap--right .wpcf7-submit {
	color: #fff !important;
}
/* ==========================================================================
   14. WooCommerce Additions
   ========================================================================== */

/* Single product: gallery + summary side-by-side layout */
.woocommerce div.product div.images,
.woocommerce div.product div.images.woocommerce-product-gallery {
	float: left;
	width: 48%;
}

.woocommerce div.product div.summary {
	float: right;
	width: 48%;
}

.woocommerce div.product::after {
	content: "";
	display: table;
	clear: both;
}

@media (max-width: 1199px) {
	.woocommerce div.product div.images,
	.woocommerce div.product div.images.woocommerce-product-gallery,
	.woocommerce div.product div.summary {
		float: none;
		width: 100%;
	}
}

/* Remove top gap left by notices wrapper when result count/sorting are hidden */
.woocommerce .woocommerce-notices-wrapper:empty {
	display: none;
}
.woocommerce .woocommerce-notices-wrapper {
	margin: 0;
	padding: 0;
}

/* Stack multiple error/notice <li> items vertically */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
	flex-direction: column;
	align-items: flex-start;
}

/* Hide empty ordering bar (result count + sorting are disabled) */
.lte-wc-order:empty {
	display: none;
}

/* Product grid: flex layout for product cards */
.woocommerce ul.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	list-style: none;
	padding: 0;
}
.woocommerce ul.products[class*="columns-"] {
	margin: 0 -15px;
}
.woocommerce ul.products[class*="columns-"] li.product {
	margin: 0 0 30px 0;
	padding: 0 15px;
	position: relative;
}

/* View product button on product card overlay */
.woocommerce ul.products li.product .lte-image .lte-wc-view {
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--main);
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-left: 8px;
}

.woocommerce ul.products li.product .lte-image .lte-wc-view:before {
	content: "\f06e";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	color: var(--white);
	transition: all 0.3s ease;
}

.woocommerce ul.products li.product .lte-image .lte-wc-view:hover {
	background-color: var(--main);
}

.woocommerce ul.products li.product .lte-image .lte-wc-view:hover:before {
	color: var(--white);
}

/* Add to cart button in product card overlay — match lte-wc-view size and show cart icon */
.woocommerce ul.products li.product .lte-image .lte-buttons-wrapper .lte-btn-wrap .lte-btn {
	width: 42px;
	height: 42px;
}

.woocommerce ul.products li.product .lte-image .lte-buttons-wrapper .lte-btn .lte-btn-after:after {
	font-family: 'lte-font';
	font-weight: 400 !important;
	font-style: normal;
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\E85D";
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
}

.woocommerce ul.products li.product .lte-image .lte-buttons-wrapper .lte-btn .lte-btn-inner:before,
.woocommerce ul.products li.product .lte-image .lte-buttons-wrapper .lte-btn .lte-btn-inner:after {
	display: none;
}

/* Checkout textarea border-radius fix */
.woocommerce form .form-row textarea {
	border-radius: 8px !important;
}

/* Cart coupon - match demo: input left, apply button overlapping right */
.woocommerce table.shop_table td.actions .coupon {
	display: flex;
	flex-direction: row;
	align-items: center;
	float: left;
}
.woocommerce table.shop_table td.actions .coupon input#coupon_code,
.woocommerce table.shop_table td.actions .coupon .input-text {
	background-color: var(--gray) !important;
	border: 1px solid transparent !important;
	border-radius: 48px;
	padding: 12px 24px !important;
	font-size: 12px;
	height: 45px;
	width: 200px;
	outline: none;
	box-shadow: none;
	order: -1;
}
.woocommerce table.shop_table td.actions .coupon .button {
	order: 2;
	margin-left: -40px;
	border-radius: 48px;
	height: 45px;
	line-height: 30px;
	font-size: 14px;
	min-width: initial;
	padding: 7px 35px 11px !important;
	background-color: var(--main);
	color: var(--white);
	border: none;
	cursor: pointer;
	white-space: nowrap;
}
.woocommerce table.shop_table td.actions .coupon .button:hover {
	background-color: var(--black);
	color: var(--white);
}

/* Update Cart button */
.woocommerce table.shop_table td.actions > .button[name="update_cart"] {
	float: right;
	border-radius: 48px;
	height: 45px;
	line-height: 30px;
	font-size: 14px;
	padding: 7px 35px 11px !important;
	background-color: var(--gray);
	color: var(--black);
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.woocommerce table.shop_table td.actions > .button[name="update_cart"]:hover {
	background-color: var(--main);
	color: var(--black);
}

/* Cart page layout fixes (theme-main.css rules not applying) */
.woocommerce table.shop_table td.actions {
	text-align: right;
}
.cart-collaterals .cart_totals {
	float: right;
	width: auto !important;
}
.cart-collaterals .cart_totals h2 {
	display: none;
}
.cart-collaterals .cart_totals table {
	text-align: right;
	border-collapse: collapse !important;
}
.cart-collaterals .cart_totals tr th,
.cart-collaterals .cart_totals tr td {
	background-color: transparent !important;
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
	vertical-align: middle;
	padding: 20px 24px !important;
}
.cart-collaterals .cart_totals tr th {
	text-align: right;
	font-weight: 700 !important;
	font-size: 16px !important;
}
.cart-collaterals .cart_totals tr td {
	font-size: 16px !important;
}
.wc-proceed-to-checkout {
	padding: 18px 0;
	text-align: center;
}
.wc-proceed-to-checkout .checkout-button {
	width: 100%;
}
.woocommerce table.shop_table {
	margin: 0 -1px 24px 0;
	padding: 15px 0 0;
}

@media (max-width: 767px) {
    .cart.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item.cart_item {
        display: flex;
        flex-direction: column;
		align-items: center;
    }
	.cart.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item.cart_item td {
		width: 100%;
		text-align: center;
		padding: 10px 24px;
	}
	.cart.woocommerce-cart-form__contents .product-remove {
		margin: 0;
		padding: 0;
	}
	.cart.woocommerce-cart-form__contents .product-remove .remove {
		float: none;
		margin: auto;
	}
	.woocommerce-cart dl.variation {
		width: max-content;
    	margin: auto !important;
	}
	.woocommerce table.shop_table .product-quantity {
		height: 80px;
	}
	.woocommerce table.shop_table .product-quantity .quantity {
		float: none;
		margin: 10px auto;
	}
	.woocommerce-cart .actions .lte-btn-wrap {
		display: block;
		text-align: center;
	}
	.woocommerce table.shop_table td.actions button[name="update_cart"] {
		float: none !important;
		margin: 24px auto 0;
	}
	.woocommerce-cart table.shop_table {
		margin-bottom: 0;
	}
}

/* ==========================================================================
   15. Responsive Overrides
   ========================================================================== */

@media (max-width: 991px) {
	.lte-contact-intro h2.lte-header,
	.lte-contact-intro h4.lte-header {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.lte-contact-intro {
		padding-right: 0;
		margin-bottom: 30px;
	}
}

/* ==========================================================================
   16. Shop Sidebar — Widget Area & Widgets
   ========================================================================== */

/* Sidebar wrapper */
.content-sidebar.widget-area {
	background-color: var(--gray);
	background-image: url('../images/anchor_sidebar.png');
	background-repeat: no-repeat;
	background-position: center 60px;
	background-size: 180px auto;
	padding: 60px 30px 40px;
	overflow: hidden;
	position: relative;
}

/* Each widget block */
.content-sidebar.widget-area aside {
	padding: 30px 0 20px;
	position: relative;
}
.content-sidebar.widget-area aside:first-child {
	padding-top: 0;
}

/* Links in sidebar */
.content-sidebar.widget-area a {
	color: var(--black);
	text-decoration: none;
	transition: color 0.2s ease;
}
.content-sidebar.widget-area a:hover {
	color: var(--main);
}

/* Widget title */
.content-sidebar.widget-area .lte-header-widget {
	font-family: var(--font-main), sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--black);
	margin: 0 0 20px 0;
	padding: 0;
	display: block;
	line-height: 1.27em;
}
.content-sidebar.widget-area .lte-sidebar-header {
	margin-bottom: 15px;
}

/* Unordered lists inside sidebar widgets */
.content-sidebar.widget-area aside > ul,
.content-sidebar.widget-area aside ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.content-sidebar.widget-area aside > ul li {
	margin-bottom: 10px;
	font-size: 14px;
	position: relative;
	vertical-align: middle;
}
.content-sidebar.widget-area aside > ul li a {
	display: inline-block;
	line-height: 1.4em;
	color: var(--black);
}
.content-sidebar.widget-area aside > ul li a:hover {
	color: var(--main);
}

/* ── Product Search Widget ───────────────────────────────────── */
.content-sidebar.widget-area .widget_product_search form {
	display: flex;
	align-items: center;
	background: var(--white);
	border-radius: 48px;
	padding: 4px 4px 4px 16px;
	overflow: hidden;
	min-height: 48px;
}
.content-sidebar.widget-area .widget_product_search input[type="search"] {
	flex: 1;
	border: none;
	background: transparent;
	outline: none;
	font-family: var(--font-main), sans-serif;
	font-size: 14px;
	color: var(--black);
	padding: 0;
	height: 38px;
	line-height: 38px;
}
.content-sidebar.widget-area .widget_product_search input[type="search"]::placeholder {
	color: #aaa;
}
.content-sidebar.widget-area .widget_product_search button[type="submit"] {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: var(--main);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease;
	font-size: 0;
	padding: 0;
	color: transparent;
	min-width: 38px;
}
.content-sidebar.widget-area .widget_product_search button[type="submit"]::before {
	content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 16px;
	color: var(--black);
}
.content-sidebar.widget-area .widget_product_search button[type="submit"]:hover {
	background-color: var(--black);
}
.content-sidebar.widget-area .widget_product_search button[type="submit"]:hover::before {
	color: var(--white);
}

/* ── Product Categories Widget ───────────────────────────────── */
.content-sidebar.widget-area .widget_product_categories ul li {
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 0;
	color: rgba(0, 0, 0, 0.4);
}
.content-sidebar.widget-area .widget_product_categories ul li:last-child {
	padding-bottom: 0;
	border: none;
}
.content-sidebar.widget-area .widget_product_categories ul li::before {
	content: "\E852";
	font-family: lte-font;
	font-size: 8px;
	color: var(--main);
	margin-right: 6px;
	line-height: 1;
	vertical-align: middle;
}
.content-sidebar.widget-area .widget_product_categories ul li a {
	font-family: var(--font-main), sans-serif;
	font-weight: 700;
	color: var(--black);
	font-size: 14px;
}
.content-sidebar.widget-area .widget_product_categories ul li a:hover {
	color: var(--main);
}

/* ── Shopping Cart Widget ────────────────────────────────────── */
.content-sidebar.widget-area .widget_shopping_cart p.empty {
	font-size: 14px;
	color: var(--black);
	margin: 0;
}
.content-sidebar.widget-area .woocommerce-mini-cart__total {
	text-align: center;
	font-size: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font-family: var(--font-main), sans-serif;
}
.content-sidebar.widget-area .woocommerce-mini-cart__buttons {
	text-align: center;
	margin-top: 10px;
}
.content-sidebar.widget-area .woocommerce-mini-cart__buttons .button {
	display: inline-block;
	background-color: var(--main);
	color: #ffffff;
	border-radius: 48px;
	padding: 10px 24px;
	font-size: 14px;
	font-family: var(--font-main), sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	transition: background-color 0.2s, color 0.2s;
}
.content-sidebar.widget-area .woocommerce-mini-cart__buttons .button:hover {
	background-color: var(--black);
	color: #ffffff;
}

/* Mini cart variation: dt + dd side by side */
.content-sidebar.widget-area dl.variation {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2px 8px;
	margin: 0;
}
.content-sidebar.widget-area dl.variation dt,
.content-sidebar.widget-area dl.variation dd {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}
.content-sidebar.widget-area dl.variation dd p {
	margin: 0;
}

/* On screens < 1200px, keep sidebar in document flow inside .div-sidebar.
   Reset the off-canvas transform from theme-main.css so it doesn't shift left. */
@media (max-width: 1200px) {
	.div-sidebar #content-sidebar.content-sidebar.widget-area {
		position: relative;
		z-index: 1;
		transform: none;
		top: auto;
		left: auto;
		bottom: auto;
		max-width: 100%;
		overflow: hidden;
	}
}

/* Price filter — jQuery UI slider */
.woocommerce.widget_price_filter {
	padding-bottom: 0 !important;
}
.woocommerce.widget_price_filter .price_slider_wrapper {
	margin-top: 20px;
	margin-right: 8px;
}
.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background-color: rgba(0, 0, 0, 0.15);
}
.woocommerce.widget_price_filter .ui-slider-horizontal {
	height: 3px;
}
.woocommerce.widget_price_filter .ui-slider .ui-slider-range {
	background-color: var(--main);
}
.woocommerce.widget_price_filter .ui-slider .ui-slider-handle {
	top: -6px;
	left: 0;
	background-color: var(--white) !important;
	background-image: none !important;
	border: 3px solid var(--main) !important;
	width: 14px !important;
	height: 14px !important;
	border-radius: 50% !important;
	cursor: pointer;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	margin-left: 0;
}
.woocommerce.widget_price_filter .ui-slider .ui-slider-handle::before,
.woocommerce.widget_price_filter .ui-slider .ui-slider-handle::after {
	display: none !important;
	content: "" !important;
	width: 0 !important;
	height: 0 !important;
}

/* Price amount block — flex column so label appears above button */
.woocommerce.widget_price_filter .price_slider_amount {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 20px;
}

/* Price label — order 1 (appears above button) */
.woocommerce.widget_price_filter .price_slider_amount .price_label {
	order: 1;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	font-family: var(--font-main), sans-serif;
	margin: 0 0 16px;
	padding: 0;
	display: block;
}

/* Button wrapper — order 2 (appears below price label) */
.woocommerce.widget_price_filter .price_slider_amount .lte-btn-wrap {
	order: 2;
}

/* Filter button — WC renders as .lte-btn.btn-black, override to gold */
.woocommerce.widget_price_filter .price_slider_amount button[type="submit"],
.woocommerce.widget_price_filter .price_slider_amount .lte-btn,
.woocommerce.widget_price_filter .price_slider_amount .button {
	display: block !important;
	width: 100% !important;
	background-color: #d0a249 !important;
	color: #002c3f !important;
	font-size: 14px !important;
	font-family: var(--font-main), sans-serif;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	padding: 14px 30px !important;
	border: none !important;
	border-radius: 48px !important;
	cursor: pointer !important;
	transition: background-color 0.3s, color 0.3s;
	position: static !important;
	float: none !important;
	text-align: center !important;
	min-width: 0 !important;
	box-shadow: none !important;
}
.woocommerce.widget_price_filter .price_slider_amount button[type="submit"]:hover,
.woocommerce.widget_price_filter .price_slider_amount .lte-btn:hover,
.woocommerce.widget_price_filter .price_slider_amount .button:hover {
	background-color: #002c3f !important;
	color: #ffffff !important;
}

/* ==========================================================================
   17. WooCommerce Fixes (PurgeCSS restored)
   ========================================================================== */

/* Quantity input — styled +/- pill (removed by PurgeCSS) */
.woocommerce .quantity input.qty {
	width: 140px;
	height: 56px;
	font-size: 14px;
	padding: 0 38px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 48px;
	text-align: center;
	background-color: #fff;
}

/* +/- button icons (removed by PurgeCSS) */
.woocommerce .lte-more:after,
.woocommerce .lte-less:after {
	content: "+";
	display: block;
	font-size: 18px;
	font-weight: 300;
	line-height: 1;
}
.woocommerce .lte-more.lte-less:after,
.woocommerce .lte-less.lte-less:after {
	content: "−";
}

/* Cart table: keep quantity wrapper compact */
.woocommerce table.shop_table .product-quantity div.quantity {
	width: 140px;
}

/* Cart coupon input + button */
.woocommerce table.shop_table td.actions .coupon .input-text {
	padding: 12px 24px !important;
	font-size: 12px;
	width: 200px;
	height: 45px;
	border: 1px solid rgba(0, 0, 0, 0.3) !important;
	border-radius: 48px;
	background-color: var(--gray);
}
@media (max-width: 767px) {
	.woocommerce table.shop_table td.actions .coupon .input-text {
		width: 100% !important;
	}
}
.woocommerce table.shop_table td.actions .coupon .lte-btn,
.woocommerce table.shop_table td.actions .coupon button[name="apply_coupon"] {
	margin-top: 0;
	font-size: 14px;
	height: 45px;
	line-height: 45px;
	padding: 0 35px !important;
	background-color: var(--main);
	color: var(--white);
	border-radius: 48px;
	min-width: initial;
}
.woocommerce table.shop_table td.actions .coupon .lte-btn:hover,
.woocommerce table.shop_table td.actions .coupon button[name="apply_coupon"]:hover {
	background-color: var(--black);
	color: var(--white);
}
@media (max-width: 767px) {
	.woocommerce table.shop_table .product-thumbnail img  {
		margin-top: 10px;
	}
	.woocommerce table.shop_table td.actions .coupon .lte-btn,
	.woocommerce table.shop_table td.actions .coupon button[name="apply_coupon"] {
		width: 100% !important;
		margin-top: 8px;
	}
}
@media (max-width: 600px) {
	.woocommerce table.shop_table.woocommerce-checkout-review-order-table,
	.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody {
		display: block;
		width: 100%;
	}
	.woocommerce-checkout-review-order-table .cart_item {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}
	.woocommerce-checkout-review-order-table .cart_item td {
		display: block;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}
}
/* Single product: gap between image and summary */
.woocommerce div.product div.summary {
	padding-left: 40px;
}
@media (max-width: 767px) {
	.woocommerce div.product div.summary {
		padding-left: 0;
	}
}

/* Checkout: two-column layout (billing left, order review right) */
@media (min-width: 992px) {
	.woocommerce-checkout form .col2-set {
		width: 50%;
		float: left;
		padding-right: 1.5vw;
	}
	.woocommerce-checkout form .col2-set .col-1,
	.woocommerce-checkout form .col2-set .col-2 {
		float: none;
		width: 100%;
	}
	.woocommerce-checkout form #order_review_heading,
	.woocommerce-checkout form #order_review {
		width: 50%;
		padding-left: 1.5vw;
		float: right;
		clear: right;
		margin-top: 0;
	}
}
@media (max-width: 991px) {
	.woocommerce-checkout form .col2-set .col-1,
	.woocommerce-checkout form .col2-set .col-2 {
		width: 100%;
		clear: both;
	}
}

/* Cart table column header alignment */
.woocommerce-cart table.cart th.product-name {
	text-align: left;
}
.woocommerce table.shop_table th.product-quantity,
.woocommerce table.shop_table th.product-subtotal,
.woocommerce table.shop_table th.product-price {
	text-align: center;
}

/* Checkout "Your order" table — match demo */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
	border-collapse: collapse !important;
	border: none;
}

/* thead: navy bg, white text */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead th {
	background-color: var(--black);
	color: var(--white);
	padding: 24px;
	font-size: 16px;
	font-weight: 300;
	font-family: var(--font-main), sans-serif;
	letter-spacing: var(--font-main-letterspacing);
	border: none;
	text-transform: uppercase;
}

/* tbody cells */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
	padding: 20px 24px;
	font-size: 18px;
	color: var(--black);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-top: none;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table th {
	padding: 20px 24px;
	font-size: 18px;
	font-weight: 300;
	color: var(--black);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name {
	text-align: left;
	width: 65%;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-total {
	text-align: right;
	width: 35%;
}

/* tfoot: subtotal / total rows */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot th {
	text-align: left;
	font-weight: 300;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody {
	border-top: none;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	font-size: 18px;
	font-weight: 600;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 20px;
}

/* Place order button — match demo */
.woocommerce #place_order {
	background-color: var(--main);
	color: var(--white);
	border-radius: 48px;
	padding: 22px 30px;
	font-size: 18px;
	font-weight: 300;
	width: 240px;
	border: none;
	cursor: pointer;
	text-transform: none;
	transition: all 0.2s ease;
	display: block;
	margin: 20px auto 0;
}

.woocommerce #place_order:hover {
	background-color: var(--black);
	color: var(--white);
}

/* Checkout form labels — match demo */
.woocommerce-checkout label {
	font-size: 14px !important;
	font-weight: 300 !important;
	color: var(--black);
}

/* Checkout form headings */
.woocommerce-checkout h3 {
	font-size: 30px;
	font-weight: 400;
	color: var(--black);
}

/* Payment methods — clean look */
.woocommerce-checkout #payment {
	background: transparent;
	border: none;
	padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
	border: none;
	padding: 0;
	list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 12px;
}
.woocommerce-checkout #payment .payment_method_bacs .woocommerce-additional-fields__field-wrapper {
	margin-top: 15px;
}

/* ==========================================================================
   Tours CPT — Archive Cards
   ========================================================================== */

.lte-tours-archive-section {
	padding: 60px 0 80px;
}

.lte-tour-card {
	background: #fff;
	margin-bottom: 40px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: box-shadow 0.3s ease;
}

.lte-tour-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.lte-tour-card__image-wrap {
	display: block;
	position: relative;
	overflow: hidden;
}

.lte-tour-card__img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.lte-tour-card:hover .lte-tour-card__img {
	transform: scale(1.05);
}

.lte-tour-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 50%, rgba(0,44,63,0.45) 100%);
	transition: opacity 0.3s ease;
}

.lte-tour-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--main);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 12px;
}

.lte-tour-card__body {
	padding: 24px 28px 28px;
}

.lte-tour-time {
	font-size: 13px;
	color: var(--main);
	font-weight: 600;
	margin: 0 0 10px;
	letter-spacing: 0.5px;
}

.lte-tour-time .fa {
	margin-right: 6px;
}

.lte-tour-card__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
}

.lte-tour-card__title a {
	color: var(--black);
	text-decoration: none;
	transition: color 0.2s;
}

.lte-tour-card__title a:hover {
	color: var(--main);
}

.lte-tour-card__excerpt {
	font-size: 14px;
	color: #777;
	line-height: 1.6;
	margin: 0 0 20px;
}

.lte-tour-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.lte-tour-card__price {
	font-size: 22px;
	font-weight: 700;
	color: var(--main);
}

/* ==========================================================================
   Boats CPT — Archive Cards
   ========================================================================== */

.lte-section-subtitle,
.lte-text-page p.lte-section-subtitle,
.comment-text p.lte-section-subtitle {
	margin-bottom: 1rem;
}

.lte-boat-card {
	margin-bottom: 30px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: box-shadow 0.3s ease;
}

.lte-boat-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.lte-boat-card__image-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	height: 380px;
	text-decoration: none;
}

.lte-boat-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.lte-boat-card:hover .lte-boat-card__img {
	transform: scale(1.06);
}

.lte-boat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 35%, rgba(0,20,40,0.72) 100%);
	transition: background 0.35s ease;
}

.lte-boat-card:hover .lte-boat-card__overlay {
	background: linear-gradient(to bottom, transparent 10%, rgba(0,20,40,0.88) 100%);
}

/* Content block — absolute over image, sits at bottom */
.lte-boat-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px 24px 28px;
}

.lte-boat-card__title {
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

/* Hover content: specs + button — collapsed by default so title sits at the bottom */
.lte-boat-card__hover {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease;
	pointer-events: none;
}

.lte-boat-card:hover .lte-boat-card__hover {
	max-height: 240px;
	opacity: 1;
	pointer-events: auto;
}

.lte-boat-card__specs {
	list-style: none;
	margin: 12px 0 18px;
	padding: 0;
}

.lte-boat-card__specs li {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: rgba(255,255,255,0.9);
	padding: 4px 0;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lte-boat-card__specs li:last-child {
	border-bottom: none;
}

.lte-boat-card__spec-label {
	font-weight: 600;
	color: rgba(255,255,255,0.7);
	margin-right: 8px;
}

.lte-boat-card__spec-value {
	color: #fff;
}

/* ==========================================================================
   Tours CPT — Single Page Content
   ========================================================================== */

.lte-tour-content {
	padding: 60px 0 80px;
}

.lte-tour-body .lte-header {
	margin-bottom: 8px;
}

.lte-tour-type-label {
	display: inline-block;
	background: var(--main);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 5px 14px;
	margin-bottom: 24px;
}

.lte-tour-description {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 40px;
}

/* --- Stops Itinerary --- */

.lte-tour-stops {
	margin-top: 10px;
}

.lte-tour-stops__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--main);
	display: inline-block;
}

.lte-tour-stop {
	margin-bottom: 30px;
}

.lte-tour-stop__img-wrap {
	position: relative;
	margin-bottom: 12px;
	overflow: hidden;
}

.lte-tour-stop__img-wrap img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

.lte-tour-stop__num {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--main);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.lte-tour-stop__name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lte-tour-stop__desc {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

/* --- Sidebar --- */

.lte-tour-sidebar {
	background: var(--black);
	color: #fff;
	padding: 32px 28px 36px;
	position: sticky;
	top: 100px;
}

.lte-tour-sidebar__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--main);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0 0 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lte-tour-sidebar__list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.lte-tour-sidebar__list li {
	display: flex;
	align-items: baseline;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	gap: 10px;
}

.lte-tour-sidebar__icon {
	color: var(--main);
	width: 18px;
	flex-shrink: 0;
	font-size: 13px;
}

.lte-tour-sidebar__label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: rgba(255,255,255,0.55);
	flex-shrink: 0;
	width: 70px;
}

.lte-tour-sidebar__value {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	flex: 1;
}

.lte-tour-sidebar__price {
	color: var(--main);
	font-size: 16px;
	font-weight: 700;
}

.lte-tour-sidebar__cta {
	width: 100%;
	text-align: center;
	display: block;
}

/* ==========================================================================
   Tours — Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.lte-tour-content {
		padding: 40px 0 60px;
	}

	.lte-tour-sidebar {
		margin-top: 40px;
		position: static;
	}

	.lte-tour-card__img {
		height: 220px;
	}

	.lte-boat-card__image-wrap {
		height: 280px;
	}
}

/* ==========================================================================
   Section 17: Tour Product Page (WooCommerce single product — tour layout)
   ========================================================================== */

/* Hero gallery — inside left column */
.lte-tour-hero-slider.swiper-container,
.lte-tour-hero-slider.lte-tour-hero-single {
	width: 100%;
	height: 420px;
	margin-bottom: 25px;
	border-radius: 4px;
	overflow: hidden;
}
.lte-tour-slide {
	width: 100%;
	height: 420px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Hide the empty WC image column */
.is-tour-product .woocommerce-product-gallery {
	display: none !important;
}

/* ── .lte-tour-row: explicit flex row wrapping left col + sidebar ── */
.lte-tour-row {
	padding: 36px 0 60px;
}

/* LEFT col — 68% — title, short desc, description, itinerary, etc. */

@media (min-width: 1200px) {
	.lte-tour-row {
		display: flex;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 40px;
	}
	.lte-tour-left-col {
		flex: 0 0 68%;
		max-width: 68%;
		min-width: 0;
	}
}

/* .summary inside left col — no float override needed */
.lte-tour-left-col .summary.entry-summary {
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
}

/* Tour product title */
.is-tour-product .summary.entry-summary h1.product_title {
	font-size: 36px !important;
	line-height: 1.25;
	margin-bottom: 16px;
}

/* Align all left-col content to same left edge */
.lte-tour-left-col .summary.entry-summary,
.lte-tour-left-col .lte-tour-content-sections {
	padding-left: 0;
	margin-left: 0;
}

.lte-tour-left-col .summary.entry-summary .woocommerce-product-details__short-description,
.lte-tour-left-col .summary.entry-summary .product_meta {
	padding-left: 0 !important;
	margin-left: 0 !important;
}

/* Content sections inside left col */
.lte-tour-content-sections {
	padding-top: 16px;
}

/* RIGHT column wrapper — 32% sticky */
@media (min-width: 1200px) {
	.lte-tour-sidebar-col {
		flex: 0 0 calc(32% - 40px);
		max-width: calc(32% - 40px);
		position: sticky;
		top: 80px;
		align-self: flex-start;
	}
}


/* RIGHT — 30% — price + meta + cart */
.lte-tour-booking-sidebar {
	padding: 28px 24px;
	background: var(--gray);
	border-top: 4px solid var(--main);
}

/* Price block inside sidebar */
.lte-tour-sidebar-price {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.lte-tour-price-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #888;
	margin-bottom: 4px;
}
.lte-tour-price-value .amount {
	font-size: 28px;
	font-weight: 700;
	color: var(--main);
}
.lte-tour-price-value .woocommerce-Price-currencySymbol {
	font-size: 18px;
}

/* Meta info list in sidebar */
.lte-tour-booking-sidebar .lte-tour-sidebar__list {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}
.lte-tour-booking-sidebar .lte-tour-sidebar__list li {
	display: flex;
	align-items: flex-start;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0,0,0,.07);
	font-size: 14px;
	gap: 8px;
}
.lte-tour-booking-sidebar .lte-tour-sidebar__list li:last-child {
	border-bottom: none;
}
.lte-tour-sidebar__icon {
	width: 20px;
	color: var(--main);
	flex-shrink: 0;
	padding-top: 2px;
}
.lte-tour-sidebar__label {
	font-weight: 600;
	color: var(--black);
	width: 80px;
	flex-shrink: 0;
}
.single-boats .lte-tour-sidebar__label {
	width: 110px;
}
.lte-tour-sidebar__value {
	color: #555;
	flex: 1;
}

/* Meeting point note in sidebar */
.lte-tour-meeting-point {
	font-size: 13px;
	color: #777;
	margin-bottom: 18px;
	line-height: 1.5;
}
.lte-tour-meeting-point .fa {
	color: var(--main);
	margin-right: 5px;
}

/* Book Tour button in sidebar */
.lte-book-tour-btn {
	display: block;
	width: 100%;
	margin-top: 18px;
	padding: 14px 20px;
	background: var(--main);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1em;
	font-weight: 700;
	letter-spacing: .02em;
	cursor: pointer;
	text-align: center;
	transition: opacity .2s ease;
}
.lte-book-tour-btn:hover {
	opacity: .85;
}

/* Add to cart inside booking modal */
.lte-tour-modal-cart .single_add_to_cart_button {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	color: #fff !important;
}
.lte-tour-modal-cart .quantity {
	display: none !important;
}

/* Section headings */
.lte-tour-stops__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--black);
	margin: 36px 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--main);
}

/* Description */
.lte-tour-description {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 10px;
}

/* Itinerary list */
.lte-tour-itinerary__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.lte-tour-itinerary__item {
	display: flex;
	flex-wrap: nowrap;
	gap: 0 16px;
	padding: 14px 0;
	border-bottom: 1px solid #eee;
	align-items: center;
}
.lte-tour-itinerary__item:last-child {
	border-bottom: none;
}
.lte-tour-itinerary__time {
	background: var(--main);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	white-space: nowrap;
	flex: 0 0 110px;
	text-align: center;
}
.lte-tour-itinerary__location {
	font-weight: 700;
	color: var(--black);
	font-size: 15px;
	flex: 0 0 180px;
}
.lte-tour-itinerary__desc {
	color: #555;
	font-size: 14px;
	flex: 1;
	line-height: 1.6;
}

/* Included / Not Included */
.lte-tour-inc-wrap {
	margin-bottom: 10px;
}
.lte-tour-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.lte-tour-check-list li {
	padding: 7px 0;
	font-size: 15px;
	color: #555;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	gap: 10px;
}
.lte-tour-check-list li:last-child {
	border-bottom: none;
}
.lte-tour-check-list .fa-check {
	color: #27ae60;
	font-size: 14px;
	flex-shrink: 0;
}
.lte-tour-check-list--no .fa-times {
	color: #e74c3c;
	font-size: 14px;
	flex-shrink: 0;
}
.lte-tour-check-list .fa-circle {
	color: var(--main);
	flex-shrink: 0;
}

/* What to Bring — 3-column grid */
.lte-tour-bring .lte-tour-check-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 24px;
}
.lte-tour-bring .lte-tour-check-list li:last-child {
	border-bottom: 1px solid #f0f0f0;
}

/* Not Recommended, Additional Info */
.lte-tour-not-rec,
.lte-tour-add-info {
	margin-top: 10px;
}
.lte-tour-not-rec p,
.lte-tour-add-info p {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
}

/* Photo Gallery */
.lte-tour-gallery-section {
	margin-top: 50px;
}
.lte-tour-gallery-section .lte-tour-gallery-title {
	margin-bottom: 24px;
}
.lte-tour-gallery-grid .lte-tour-thumb {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	display: block;
}
.lte-tour-gallery-grid .lte-tour-thumb img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.lte-tour-gallery-grid .lte-tour-thumb:hover img {
	transform: scale(1.08);
}
.lte-tour-gallery-grid .lte-tour-thumb::before {
	content: '\f065';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 44, 63, 0.5);
	color: #fff;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}
.lte-tour-gallery-grid .lte-tour-thumb:hover::before {
	opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.lte-tour-hero-slider.swiper-container,
	.lte-tour-slide {
		height: 260px;
	}
	.lte-tour-itinerary__item {
		display: block;
	}
	.lte-tour-itinerary__item span {
		display: block;
	}
	.lte-tour-itinerary__time {
		width: 120px;
	}
}

/* ==========================================================================
   Destination Single Page
   ========================================================================== */

/* Gallery slider in left column */
.lte-dest-slider {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	margin-bottom: 30px;
}

.lte-dest-slider .swiper-slide img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.lte-dest-slider .swiper-button-prev,
.lte-dest-slider .swiper-button-next {
	color: #fff;
	width: 44px;
	height: 44px;
	background: rgba(0, 44, 63, 0.5);
	border-radius: 50%;
	transition: background 0.3s ease;
}

.lte-dest-slider .swiper-button-prev:hover,
.lte-dest-slider .swiper-button-next:hover {
	background: var(--main, #d0a249);
}

.lte-dest-slider .swiper-button-prev::after,
.lte-dest-slider .swiper-button-next::after {
	font-size: 18px;
}

.lte-dest-slider .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.6;
}

.lte-dest-slider .swiper-pagination-bullet-active {
	background: var(--main, #d0a249);
	opacity: 1;
}

/* Fallback single image (no gallery) */
.lte-dest-single-image {
	margin-bottom: 30px;
	overflow: hidden;
}

.lte-dest-single-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

/* Content area */
.lte-dest-content {
	padding: 60px 0 80px;
}

.lte-dest-title {
	font-size: 36px;
	margin-bottom: 10px;
}

.lte-dest-intro {
	margin-top: 24px;
	color: var(--text, #555);
	font-size: 16px;
	line-height: 1.8;
}

/* Highlights grid */
.lte-dest-highlights {
	margin-top: 48px;
}

.lte-dest-highlight {
	padding: 20px 0;
	border-top: 1px solid #e8e8e8;
}

.lte-dest-highlight__icon {
	font-size: 22px;
	color: var(--main, #d0a249);
	margin-bottom: 10px;
}

.lte-dest-highlight__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--black, #002c3f);
	margin: 0 0 6px;
}

.lte-dest-highlight__desc {
	font-size: 14px;
	color: var(--text, #555);
	margin: 0;
	line-height: 1.6;
}

/* Sidebar */
.lte-dest-sidebar {
	margin-top: 0;
	position: sticky;
	top: 100px;
}

.lte-dest-sidebar .lte-tour-description,
.lte-dest-sidebar .lte-tour-description p {
	color: #fff;
}

/* Related tours section */
.lte-dest-tours-section {
	background: var(--gray, #f1f0ec);
	padding: 80px 0;
}

.lte-dest-tours-section .lte-heading {
	margin-bottom: 40px;
}

/* Tours sidebar (col-lg-4) */
.lte-dest-tours-sidebar {
	background: var(--black, #00162c);
	padding: 24px 20px;
	margin-top: 24px;
}

.lte-dest-tours-sidebar .lte-tour-sidebar__title {
	color: #fff;
	font-size: 16px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item:after {
	border-color: rgba(255,255,255,0.12);
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-item-wrapper {
	display: block;
	text-align: left;
	padding: 12px 0;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-item-wrapper > div {
	display: block;
	padding: 0;
	overflow: hidden;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-event-date {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 4px;
	width: 100%;
	text-align: left;
	padding-right: 0;
	min-width: 0;
	color: var(--second, #d0a249);
	margin-bottom: 4px;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-event-date .lte-event-d {
	font-size: 13px;
	display: inline;
	line-height: 1.2;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-event-date .lte-event-m {
	font-size: 13px;
	display: inline;
	color: var(--second, #d0a249);
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-img {
	width: 100%;
	min-width: 0;
	margin-bottom: 6px;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-img img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-info {
	width: 100%;
	min-width: 0;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-info .lte-header {
	margin: 4px 0 2px;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-info .lte-header:after {
	display: none;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-info .lte-header a {
	color: #fff;
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-info .lte-header a:hover {
	color: var(--second, #d0a249);
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-info span {
	color: rgba(255,255,255,0.65);
}

.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-event-arrow {
	display: none;
}
.lte-dest-tours-sidebar .lte-events-sc.lte-layout-table .lte-item .lte-img img {
	max-width: 250px;
}

/* Gallery */
.lte-dest-gallery {
	padding: 60px 0 80px;
}

.lte-dest-gallery .swipebox img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	margin-bottom: 24px;
}

@media (max-width: 991px) {
	.lte-dest-slider,
	.lte-dest-slider .swiper-slide img,
	.lte-dest-single-image img {
		height: 320px;
	}

	.lte-dest-content {
		padding: 40px 0 60px;
	}

	.lte-dest-sidebar {
		position: static;
		margin-top: 40px;
	}
}

@media (max-width: 576px) {
	.lte-dest-slider,
	.lte-dest-slider .swiper-slide img,
	.lte-dest-single-image img {
		height: 240px;
	}

	.lte-dest-title {
		font-size: 26px;
	}
}

/* ── Destinations archive: align arrow circles ── */
.lte-services-sc.lte-layout-photos .lte-item .lte-info .lte-header:after {
	top: auto;
	bottom: 0;
}

/* ── Services Cards ── */
.lte-services-sc.lte-layout-grid .lte-item .lte-photo-wrapper img {
	display: block;
	height: 280px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.lte-services-sc.lte-layout-grid .lte-item .lte-info {
	padding: 20px 0 25px;
}
.lte-services-sc.lte-layout-grid .lte-item .lte-info .lte-btn {
	padding-top: 0;
}
.lte-services-section .lte-services-sc .lte-btn-wrap {
	padding-top: 0;
}
.lte-services-sc.lte-layout-grid .lte-item .lte-info .lte-btn .lte-btn-inner {
	transform: translateX(0);
}
.lte-service-desc {
	font-size: 14px;
	color: #555555;
	color: var(--text);
	margin: 8px 0 4px;
	line-height: 1.6;
}


/* Event time/cost icon spacing */
.lte-events-sc.lte-layout-table .lte-item .lte-event-time:before,
.lte-events-sc.lte-layout-table .lte-item .lte-event-cost:before {
	margin-right: 6px;
}

/* ==========================================================================
   18. WooCommerce Cart Page — Match Demo
   ========================================================================== */

/* ── Cart table header: navy background, white text ── */
.woocommerce table.shop_table thead th {
	background-color: #00162c;
	background-color: var(--black);
	color: #ffffff;
	color: var(--white);
	padding: 20px 28px;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--font-main), sans-serif;
	letter-spacing: var(--font-main-letterspacing);
	border: none;
	text-transform: uppercase;
}

/* ── Cart table body rows: subtle separator ── */
.woocommerce table.shop_table tbody td {
	padding: 20px 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-top: none;
	vertical-align: middle;
	font-size: 16px;
	color: #00162c;
	color: var(--black);
}

.woocommerce table.shop_table tbody td.product-thumbnail {
	padding-left: 0;
}

.woocommerce table.shop_table tbody td.product-thumbnail img {
	max-width: 80px;
	height: auto;
}

/* ── Coupon row / Actions ── */
.woocommerce table.shop_table td.actions {
	padding: 20px 0;
	border-bottom: none;
	background: transparent;
}

.woocommerce table.shop_table td.actions .coupon {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.woocommerce table.shop_table td.actions .coupon #coupon_code {
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 48px;
	padding: 12px 24px;
	height: 48px;
	font-size: 14px;
	background-color: #f5f5f5;
	min-width: 200px;
}

.woocommerce table.shop_table td.actions .coupon .button {
	background-color: var(--main);
	color: var(--white);
	border-radius: 48px;
	padding: 12px 30px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	height: 48px;
	cursor: pointer;
	white-space: nowrap;
}

.woocommerce table.shop_table td.actions .coupon .button:hover {
	background-color: var(--black);
	color: var(--white);
}

/* ── Update cart button: text-only link style (demo) ── */
.woocommerce table.shop_table td.actions button[name="update_cart"] {
	background: transparent !important;
	color: var(--black);
	border: none;
	border-radius: 0;
	padding: 6px 0;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	float: right;
}

.woocommerce table.shop_table td.actions button[name="update_cart"]:hover {
	color: var(--main);
}

/* ── Cart totals: float right, clean borders ── */
.cart-collaterals .cart_totals {
	float: right;
}

.cart-collaterals .cart_totals table {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-collapse: collapse !important;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
	padding: 20px 32px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
}

.cart-collaterals .cart_totals table td {
	font-weight: 400;
}

/* ── Proceed to checkout button ── */
.woocommerce-cart .wc-proceed-to-checkout {
	text-align: right;
	padding-top: 20px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	background-color: var(--main);
	color: var(--white);
	border-radius: 48px;
	padding: 18px 55px;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background-color: var(--black);
	color: var(--white) !important;
}

/* ── Responsive cart ── */
@media (max-width: 992px) {
	.cart-collaterals .cart_totals {
		float: none;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.woocommerce table.shop_table thead {
		display: none;
	}

	.woocommerce table.shop_table td.actions .coupon {
		flex-direction: column;
		width: 100%;
	}

	.woocommerce table.shop_table td.actions .coupon #coupon_code {
		min-width: 100%;
	}

	.woocommerce-cart .wc-proceed-to-checkout {
		text-align: center;
	}

	.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
		display: inline-block;
		padding: 16px 50px;
		width: auto;
	}
}

/* ==========================================================================
   Single Boat Page
   ========================================================================== */

/* Main content wrapper */
.lte-boat-single-content {
	padding: 60px 0 80px;
}

/* Specifications section in left column */
.lte-boat-specs-section {
	margin-top: 48px;
}

.lte-boat-specs-table {
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	overflow: hidden;
}

.lte-boat-spec-row {
	display: flex;
	align-items: center;
	padding: 14px 20px;
	border-bottom: 1px solid #e8e8e8;
	transition: background 0.2s ease;
}

.lte-boat-spec-row:last-child {
	border-bottom: none;
}

.lte-boat-spec-row:nth-child(even) {
	background: var(--gray, #f1f0ec);
}

.lte-boat-spec-row:hover {
	background: rgba(208, 162, 73, 0.07);
}

.lte-boat-spec-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--black, #00162c);
	width: 40%;
	flex-shrink: 0;
}

.lte-boat-spec-value {
	font-size: 15px;
	color: #444;
	flex: 1;
}

/* Sidebar tweaks for boat */
.lte-boat-sidebar {
	position: sticky;
	top: 100px;
}

/* Override booking-sidebar dark-text rules that leak in via cascade */
.lte-boat-sidebar .lte-tour-sidebar__label {
	color: rgba(255, 255, 255, 0.65);
}

.lte-boat-sidebar .lte-tour-sidebar__value {
	color: #fff;
}

/* Enquire Now button — btn-main has no compiled styles so we define it here */
.lte-boat-sidebar .lte-tour-sidebar__cta {
	background-color: var(--main, #d0a249);
	color: var(--black, #00162c);
	font-weight: 700;
	padding: 14px 24px;
	border: 2px solid var(--main, #d0a249);
	border-radius: 0;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease;
	margin-top: 8px;
}

.lte-boat-sidebar .lte-tour-sidebar__cta:hover {
	background-color: transparent;
	color: var(--main, #d0a249);
}

/* Gallery section heading */
.lte-boat-gallery__heading {
	margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.lte-boat-single-content {
		padding: 40px 0 60px;
	}

	.lte-boat-sidebar {
		position: static;
		margin-top: 40px;
	}

	.lte-boat-spec-label {
		width: 45%;
	}
}

@media (max-width: 576px) {
	.lte-boat-spec-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 12px 16px;
	}

	.lte-boat-spec-label {
		width: 100%;
		font-size: 11px;
	}

	.lte-boat-spec-value {
		font-size: 14px;
	}
}

/* ==========================================================================
   WooCommerce — Empty Cart
   ========================================================================== */

/* Center the "Your cart is currently empty." notice */
.woocommerce-cart .woocommerce-info {
	text-align: center;
	align-items: center;
}

/* Center and space the "Return to shop" button */
.woocommerce .return-to-shop {
	text-align: center;
	margin-top: 1rem;
}

.woocommerce .return-to-shop .wc-backward {
	display: inline-block;
	color: #ffffff !important;
}

.woocommerce .return-to-shop .wc-backward:hover {
	background-color: var(--black, #002c3f) !important;
	color: #ffffff !important;
}

/* Cart variation: dt + dd side by side, each pair on its own row */
.woocommerce-cart dl.variation,
.woocommerce-checkout dl.variation {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2px 8px;
	margin: 0;
}

.woocommerce-cart dl.variation dt,
.woocommerce-checkout dl.variation dt,
.woocommerce-cart dl.variation dd,
.woocommerce-checkout dl.variation dd {
	margin: 0;
}

/* View Cart button (appears as notice after add-to-cart on single product) */
.woocommerce .woocommerce-message .wc-forward {
	color: #ffffff !important;
}

.woocommerce .woocommerce-message .wc-forward:hover {
	background-color: var(--black, #002c3f) !important;
	color: #ffffff !important;
}

/* Available boats section on single product */
.lte-product-available-boats h2.lte-header {
	font-size: 42px;
}

/* ── Tour Booking Form ─────────────────────────────────── */

.lte-tour-booking-form {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #e5e5e5;
}

.lte-tour-booking-form .lte-tour-stops__title {
	margin-bottom: 20px;
}

.lte-form-group {
	margin-bottom: 16px;
}

.lte-form-group > label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lte-form-group input[type="text"],
.lte-form-group input[type="email"],
.lte-form-group input[type="tel"],
.lte-form-group input[type="date"],
.lte-form-group textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	color: var(--black);
	background: #fff;
	transition: border-color 0.2s;
}

.lte-form-group input:focus,
.lte-form-group textarea:focus {
	border-color: var(--main);
	outline: none;
}

.lte-form-group input.lte-field-error,
.lte-form-group textarea.lte-field-error {
	border-color: #e74c3c;
}

.lte-form-radios {
	display: flex;
	gap: 10px;
}

.lte-radio-label {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid #ddd;
	border-radius: 3px;
	cursor: pointer;
	flex: 1;
	font-size: 13px;
	font-weight: 400 !important;
	text-transform: none !important;
	transition: border-color 0.2s, background 0.2s;
}

.lte-radio-label:has(input:checked) {
	border-color: var(--main);
	background: rgba(208, 162, 73, 0.08);
}

.lte-radio-label.lte-radio-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.lte-radio-label input[type="radio"] {
	accent-color: var(--main);
	margin: 0;
}

.lte-form-price-summary {
	text-align: center;
	padding: 14px;
	background: var(--gray);
	border-radius: 3px;
	margin-bottom: 16px;
	font-size: 16px;
}

.lte-form-price-summary strong {
	font-size: 22px;
	color: var(--main);
}

.lte-form-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lte-book-whatsapp-btn {
	background: #25D366 !important;
	border-color: #25D366 !important;
}

.lte-book-whatsapp-btn:hover {
	background: #1fb855 !important;
	border-color: #1fb855 !important;
}

.lte-book-whatsapp-btn i {
	font-size: 18px;
	margin-right: 6px;
}

.lte-book-email-btn {
	background: var(--main) !important;
	border-color: var(--main) !important;
}

.lte-book-email-btn:hover {
	background: #b8912e !important;
	border-color: #b8912e !important;
}

.lte-book-email-btn i {
	margin-right: 6px;
}

/* ── Tour Sidebar Subtitle (Meeting Point, Book This Tour) ─── */

.lte-tour-sidebar__subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
	margin: 0 0 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--main);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ── Book Now Scroll Button ─────────────────────────────────── */

.lte-book-now-scroll {
	display: block;
	width: 100%;
	padding: 14px 20px;
	background: var(--main);
	color: #fff;
	border: none;
	border-radius: 3px;
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.2s;
	margin-bottom: 20px;
}

.lte-book-now-scroll:hover {
	background: #b8912e;
}

.lte-book-now-scroll i {
	margin-right: 6px;
}

@media (min-width: 1200px) {
	.lte-book-now-scroll {
		display: none;
	}
}

/* ── Form Error Message ─────────────────────────────────────── */

.lte-form-error-msg {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	padding: 10px 14px;
	border-radius: 3px;
	font-size: 13px;
	margin-bottom: 12px;
}

/* ── What to Bring list (suitcase icon color) ────────────── */

.lte-tour-check-list--bring li i {
	color: var(--main);
}

@media (max-width: 480px) {
	.lte-form-radios {
		flex-direction: column;
	}
}
