/**
 * Theme override fixes (loaded last).
 *
 * The marketing pages were cloned from a site that used the paid "Unlimited
 * Elements" Elementor add-on. Those widgets ship their own CSS, which we don't
 * have, so their containers rendered as unstyled sky-blue boxes. These rules
 * restyle them with the site's own brand colours so they look like the
 * original, plus clean up stray markup that WordPress' auto-formatter left
 * behind inside the widgets.
 *
 * Brand palette (from the cloned Elementor kit):
 *   primary  #ae8f60 (gold)   secondary #d1b693   dark #000   accent #fff
 */

/* ----- Unlimited Elements: button groups (blox_btn_group) ----- */
.blox_btn_group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

/* hide the empty <p>/<br> that the content auto-formatter injects mid-widget */
.blox_btn_group br,
.blox_btn_group > p:empty,
.ue-dual-color-heading br + br {
	display: none;
}

.blox_btn_group a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 30px;
	border-radius: 4px;
	border: 1.5px solid #ae8f60;
	background-color: #ae8f60;
	color: #ffffff !important;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.blox_btn_group a:hover {
	background-color: #000000;
	border-color: #000000;
	color: #ffffff !important;
}

/* second and later buttons use the outline (secondary) style */
.blox_btn_group a:not(:first-of-type) {
	background-color: transparent;
	border-color: #ae8f60;
	color: #ae8f60 !important;
}

.blox_btn_group a:not(:first-of-type):hover {
	background-color: #000000;
	border-color: #000000;
	color: #ffffff !important;
}

.blox_btn_group .blox_btn_group_inner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.blox_btn_group .ue-btn-icon {
	display: inline-flex;
	align-items: center;
}

.blox_btn_group .ue-btn-icon i,
.blox_btn_group .ue-btn-icon svg {
	font-size: 16px;
	width: 1em;
	height: 1em;
}

/* ----- Category carousel (replaces the premium overlay carousel) ----- */
/* Force the whole section + widget to full width so the category carousel can
   span the row like the original, regardless of the boxed flex container the
   shortcode lives in. */
.lar-cat-carousel,
.elementor-widget-container:has(> .lar-cat-carousel),
.elementor-widget:has(.lar-cat-carousel) {
	width: 100% !important;
	max-width: 100% !important;
	flex: 1 1 100% !important;
}

.lar-cat-carousel {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}
.lar-cat-viewport {
	overflow: hidden;
	width: 100%;
}
.lar-cat-track {
	display: flex;
	flex-wrap: nowrap;
}

/* tall portrait cards like the original overlay carousel */
.lar-cat-slide.lar-category-card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
}
.lar-cat-slide.lar-category-card img {
	width: 100%;
	aspect-ratio: 2 / 3;
	height: auto;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.lar-cat-slide.lar-category-card:hover img {
	transform: scale(1.06);
}
/* dark overlay + centred category name, hidden until hover (matches original) */
.lar-category-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.35s ease;
}
.lar-cat-slide.lar-category-card:hover .lar-category-card__overlay {
	opacity: 1;
}
.lar-category-card__name {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	text-align: center;
	transform: translateY(8px);
	transition: transform 0.35s ease;
	border: 2px solid #ae8f60;
	padding: 12px 20px;
	border-radius: 4px;
}
.lar-cat-slide.lar-category-card:hover .lar-category-card__name {
	transform: translateY(0);
}

/* ----- Animated cleaver/knife image (asset-3.png) below the hero -----
 * The original gives this decorative cleaver image a subtle motion effect; we
 * give it a gentle continuous float so it's visibly animated everywhere. */
img[src*="asset-3"] {
	animation: larKnifeFloat 4.5s ease-in-out infinite;
	transform-origin: center;
	will-change: transform;
}
@keyframes larKnifeFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-18px) rotate(-2.5deg); }
}
@media (prefers-reduced-motion: reduce) {
	img[src*="asset-3"] { animation: none; }
}

/* arrows removed per design — navigation is autoplay + dots only */
.lar-cat-prev,
.lar-cat-next { display: none !important; }
.lar-cat-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 22px;
}
.lar-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #d8d2c6;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.lar-dot.is-active {
	background: #ae8f60;
	transform: scale(1.25);
}


/* ----- Unlimited Elements: material bullets (feature list rows) ----- */
.elementor-widget-ucaddon_uc_material_bullets .uc_material_bullets_row {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #f6f4ef !important;
	border: 1px solid #ece6da;
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 10px;
	color: #4c4c4c;
}

.elementor-widget-ucaddon_uc_material_bullets .uc_material_bullets_icon,
.elementor-widget-ucaddon_uc_material_bullets .ue-bullet-icon {
	color: #ae8f60;
	display: inline-flex;
	align-items: center;
}

/* ----- Page-title banner (shop / category / single product) ----- */
/* Full-width dark meat banner with the page title, matching the original. The
   transparent header overlays its top, so it carries its own top padding. */
.lar-page-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 135px 20px 55px;
	text-align: center;
}
.lar-page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.lar-page-banner__inner { position: relative; z-index: 1; }
.lar-page-banner__title {
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
/* The shop archive's own WooCommerce title is redundant now the banner shows
   it (the single-product page keeps its title in the summary column). */
body.post-type-archive-product .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header__title {
	display: none;
}

/* Solid header only on the truly hero-less templates (search / 404). */
body.search    .elementor-location-header .she-header-yes,
body.error404  .elementor-location-header .she-header-yes {
	background-color: #020101 !important;
}
body.search #content.site-content,
body.error404 #content.site-content {
	padding-top: 120px;
}

/* ----- Brand global colours -----
 * The active Elementor kit (#15) was emitting Elementor's default teal/green
 * palette, overriding the cloned gold/white brand colours and turning every
 * heading green and icon blue. Pin them to the brand values as a safety net. */
:root,
body,
.elementor-kit-15,
.elementor-kit-391 {
	--e-global-color-primary: #ae8f60;
	--e-global-color-secondary: #d1b693;
	--e-global-color-text: #4c4c4c;
	--e-global-color-accent: #ffffff;
}

/* ----- Testimonials / Reviews carousel (revived by lar-carousel.js) ----- */
/* The original Swiper never initialises here (no live _elementor_data), so
   lar-carousel.js drives a transform-based slider. These styles lay the track
   out horizontally, clip the viewport, and restyle the arrows/dots the script
   uses. autoplay + loop + responsive per-view live in the JS. */
/* Constrain the whole testimonials column to a centred, boxed width so the
   left-aligned heading block ("Testimonials / What People Say… / Read some…")
   and the full-width cards line up — and it no longer stretches edge-to-edge. */
.e-con-inner:has(.elementor-widget-reviews) {
	max-width: 1200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.elementor-widget-reviews,
.elementor-widget-reviews .elementor-swiper,
.elementor-widget-reviews .swiper,
.elementor-widget-reviews .elementor-main-swiper {
	width: 100% !important;
	max-width: 100% !important;
}
.elementor-widget-reviews .swiper-pagination { width: 100% !important; }
.elementor-widget-reviews .swiper,
.elementor-widget-reviews .elementor-main-swiper {
	position: relative;
	overflow: hidden;
	padding: 0;
	box-sizing: border-box;
}
.elementor-widget-reviews .swiper-wrapper {
	display: flex !important;
	flex-wrap: nowrap !important;
	height: auto !important;
	align-items: stretch;
}
.elementor-widget-reviews .swiper-slide {
	margin: 0 !important;
	height: auto !important;
	flex-shrink: 0;
}

/* arrows removed per design — navigation is autoplay + dots only */
.elementor-widget-reviews .elementor-swiper-button,
.elementor-widget-reviews .swiper-button-next,
.elementor-widget-reviews .swiper-button-prev {
	display: none !important;
}

/* dots the JS builds inside the pagination element */
.elementor-widget-reviews .swiper-pagination {
	position: static;
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 22px;
}
.elementor-widget-reviews .swiper-pagination .lar-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #d8d2c6;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.elementor-widget-reviews .swiper-pagination .lar-dot.is-active {
	background: #ae8f60;
	transform: scale(1.25);
}


/* ----- WooCommerce shop: match original gold "Details" buttons ----- */
.woocommerce a.button,
.woocommerce ul.products li.product .button,
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce-page a.button {
	background-color: #ae8f60 !important;
	color: #ffffff !important;
	border-radius: 4px;
	font-weight: 600;
	text-transform: none;
}

.woocommerce a.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce-page a.button:hover {
	background-color: #000000 !important;
	color: #ffffff !important;
}

.woocommerce ul.products li.product .price {
	color: #ae8f60;
}

/* ----- Product grid: force an aligned 4-up CSS grid (original layout) -----
   WooCommerce's default float layout left the first row with 3 cards and the
   rest with 4 (uneven title heights break the float clears). A CSS grid lays
   every row out identically and aligns the cards regardless of title length. */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 28px !important;
	margin: 0 0 30px !important;
	padding: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none !important; display: none !important; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	display: flex !important;
	flex-direction: column;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: box-shadow .25s ease, transform .25s ease;
}
.woocommerce ul.products li.product:hover {
	box-shadow: 0 10px 26px rgba(0,0,0,0.12);
	transform: translateY(-4px);
}
/* bigger product image filling the wider card */
.woocommerce ul.products li.product a img {
	width: 100% !important;
	height: 240px !important;
	object-fit: cover;
	border-radius: 4px;
	margin: 0 0 14px !important;
}
/* push the Details button to the bottom so every card aligns */
.woocommerce ul.products li.product .button {
	margin-top: auto !important;
	align-self: stretch;
}

/* Related-products grid: 4 across to match the original. Narrower cards with
   shorter images so all four fit cleanly inside the boxed single page. */
.single-product .related.products ul.products,
.single-product .upsells.products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
}
.single-product .related.products li.product a img,
.single-product .upsells.products li.product a img {
	height: 190px !important;
}
.single-product .related.products li.product .woocommerce-loop-product__title,
.single-product .upsells.products li.product .woocommerce-loop-product__title {
	font-size: 16px;
}
.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	color: #4c4c4c;
	margin: 40px 0 26px;
}

@media (max-width: 1024px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.single-product .related.products ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 640px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* ----- Shop filter bar (search + category tabs) ----- */
.lar-shop-filter {
	max-width: 1200px;
	margin: 0 auto 30px;
	padding: 0 15px;
}
.lar-shop-search {
	display: flex;
	max-width: 520px;
	margin: 0 auto 22px;
	border: 1px solid #e0d8c9;
	border-radius: 6px;
	overflow: hidden;
}
.lar-shop-search input[type="search"] {
	flex: 1;
	border: 0;
	padding: 12px 16px;
	outline: none;
	font-size: 15px;
}
.lar-shop-search button {
	background: #ae8f60;
	color: #fff;
	border: 0;
	padding: 0 22px;
	cursor: pointer;
}
.lar-shop-search button:hover { background: #000; }
.lar-shop-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.lar-shop-cats__label { font-weight: 600; color: #4c4c4c; margin-right: 4px; }
.lar-shop-cat {
	display: inline-block;
	padding: 8px 18px;
	border: 1px solid #ae8f60;
	border-radius: 4px;
	color: #ae8f60;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	transition: all .2s ease;
}
.lar-shop-cat:hover,
.lar-shop-cat.is-active {
	background: #ae8f60;
	color: #fff;
}
/* ----- Box the WooCommerce single-product content (wide, so the image +
   title/summary columns are large like the original) ----- */
.lar-shop-boxed {
	max-width: 1320px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 40px 20px !important;
}
.lar-shop-boxed .lar-shop-filter { max-width: 100%; padding: 0; }

/* The shop/category archive runs full width with bigger cards (the original
   product grid spans the content width, not the narrow 1140px box). */
.lar-shop-full {
	max-width: 1600px !important;
	padding: 40px 50px !important;
}

/* full-width search box (matches the original) */
.lar-shop-search { max-width: 100% !important; }

/* Product cards: let WooCommerce's 4-column grid size them, just give the
   title room to display fully and keep the image filling the card. */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	min-height: 40px;
	padding: 10px 4px 6px;
	text-transform: uppercase;
	color: #4c4c4c;
	line-height: 1.3;
}
.woocommerce ul.products li.product a img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

/* numbered pagination */
.woocommerce nav.woocommerce-pagination { margin-top: 30px; text-align: center; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0 3px;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	border: 1px solid #e0d8c9;
	border-radius: 4px;
	padding: 8px 14px;
	color: #4c4c4c;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: #ae8f60;
	color: #fff;
	border-color: #ae8f60;
}

/* ----- Single product summary: beige panel + gold title (original look) ----- */
.single-product div.product .summary.entry-summary {
	background: #f5f5f5;
	padding: 30px;
	border-radius: 6px;
}
.single-product div.product .product_title {
	color: #ae8f60;
	font-weight: 700;
}
.single-product div.product .summary .price,
.single-product div.product .summary .woocommerce-product-details__short-description {
	color: #4c4c4c;
}
.single-product div.product div.images { padding-right: 10px; }

/* ----- Animated "Send Inquiry" button (replaces add-to-cart) -----
   Mirrors the original's gold Elementor button: it slides in from the top on
   load, glows with a soft pulse so it reads as interactive, and sweeps a shine
   across on hover. Links through to the contact form. */
.lar-inquiry-wrap { margin: 18px 0 16px; }

.lar-inquiry-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 26px;
	background: #ae8f60;
	color: #fff !important;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 5px 14px rgba(174, 143, 96, 0.32);
	animation: larSlideInDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both,
	           larInquiryPulse 2.4s ease-in-out 0.7s infinite;
	transition: background-color 0.25s ease, transform 0.2s ease;
}
.lar-inquiry-btn::after {
	content: "\f1d8"; /* paper-plane (Font Awesome) */
	font-family: "Font Awesome 6 Free", "FontAwesome", sans-serif;
	font-weight: 900;
	font-size: 13px;
	transition: transform 0.25s ease;
}
/* shine sweep */
.lar-inquiry-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: skewX(-20deg);
}
.lar-inquiry-btn:hover {
	background: #000;
	transform: translateY(-2px);
	animation-play-state: paused;
}
.lar-inquiry-btn:hover::after { transform: translateX(4px); }
.lar-inquiry-btn:hover::before { animation: larInquiryShine 0.8s ease; }

@keyframes larSlideInDown {
	from { opacity: 0; transform: translateY(-32px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes larInquiryPulse {
	0%, 100% { box-shadow: 0 6px 18px rgba(174, 143, 96, 0.35); }
	50%      { box-shadow: 0 6px 26px rgba(174, 143, 96, 0.65); }
}
@keyframes larInquiryShine {
	from { left: -120%; }
	to   { left: 140%; }
}

/* ----- Single product layout (match the original) -----
   Use a wrapping flexbox so the beige summary panel STRETCHES to the image's
   height (the original keeps both columns the same height even when the product
   has few specs). flex-wrap means the 100%-wide tabs + related each drop to
   their own full-width row below — no float/clear needed. align-items:stretch
   (default) is what gives the equal-height column. */
body.single-product div.product {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
}
body.single-product div.product div.images,
body.single-product div.product .woocommerce-product-gallery {
	float: none !important;
	width: 54% !important;
	margin: 0 0 2em !important;
}
body.single-product div.product .summary.entry-summary {
	float: none !important;
	width: 43% !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}
/* the meta/category block sits at the bottom of the stretched panel */
body.single-product div.product .summary.entry-summary .product_meta { margin-top: auto !important; }
/* description tabs + related each take their own full-width row underneath */
body.single-product div.product .woocommerce-tabs,
body.single-product div.product .related.products,
body.single-product div.product .upsells.products {
	flex: 0 0 100% !important;
	width: 100% !important;
	margin-top: 40px !important;
}
body.single-product div.product .woocommerce-tabs .panel { max-width: 100%; }

@media (max-width: 768px) {
	body.single-product div.product div.images,
	body.single-product div.product .woocommerce-product-gallery,
	body.single-product div.product .summary.entry-summary {
		width: 100% !important;
	}
	body.single-product div.product .summary.entry-summary { margin-top: 24px !important; }
}

/* clean spec bullet list in the summary (replaces the broken pasted markup) */
.single-product .summary .lar-spec-list {
	list-style: none;
	margin: 0 0 6px;
	padding: 0;
}
.single-product .summary .lar-spec-list li {
	position: relative;
	padding: 4px 0 4px 22px;
	color: #4c4c4c;
	font-size: 15px;
	line-height: 1.5;
}
.single-product .summary .lar-spec-list li::before {
	content: "\f00c"; /* check */
	font-family: "Font Awesome 6 Free", "FontAwesome", sans-serif;
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 5px;
	color: #ae8f60;
	font-size: 12px;
}

/* ----- Inquiry modal ----- */
.lar-modal[hidden] { display: none; }
.lar-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.lar-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	animation: larModalFade 0.25s ease both;
}
.lar-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 540px;
	max-height: 92vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 8px;
	padding: 34px 34px 30px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	border-top: 4px solid #ae8f60;
	animation: larModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lar-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: 0;
	font-size: 28px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	transition: color 0.2s ease;
}
.lar-modal__close:hover { color: #000; }
.lar-modal__title {
	margin: 0 0 6px;
	color: #ae8f60;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
}
.lar-modal__sub { margin: 0 0 20px; color: #777; font-size: 14px; }

.lar-inquiry-form label {
	display: block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 600;
	color: #4c4c4c;
}
.lar-field-row { display: flex; gap: 14px; }
.lar-field-row label { flex: 1; }
.lar-inquiry-form input,
.lar-inquiry-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 11px 13px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 400;
	font-family: inherit;
	background: #fafafa;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lar-inquiry-form input:focus,
.lar-inquiry-form textarea:focus {
	outline: none;
	border-color: #ae8f60;
	box-shadow: 0 0 0 3px rgba(174, 143, 96, 0.15);
}
.lar-inquiry-form input[readonly] { background: #f1ece3; color: #8a7a5e; }

/* ----- Contact Form 7 inside the inquiry modal ----- */
.lar-inquiry-cf7 .lar-cf7-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.lar-inquiry-cf7 .lar-cf7-grid > p {
	flex: 0 0 100%;
	margin: 0;
}
.lar-inquiry-cf7 .lar-cf7-half {
	flex: 0 0 calc(50% - 7px) !important;
}
.lar-inquiry-cf7 label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #4c4c4c;
}
.lar-inquiry-cf7 .wpcf7-form-control-wrap { display: block; }
.lar-inquiry-cf7 input.wpcf7-form-control,
.lar-inquiry-cf7 textarea.wpcf7-form-control {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 11px 13px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	font-family: inherit;
	background: #fafafa;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lar-inquiry-cf7 textarea.wpcf7-form-control { min-height: 96px; }
.lar-inquiry-cf7 input.wpcf7-form-control:focus,
.lar-inquiry-cf7 textarea.wpcf7-form-control:focus {
	outline: none;
	border-color: #ae8f60;
	box-shadow: 0 0 0 3px rgba(174, 143, 96, 0.15);
}
.lar-inquiry-cf7 input[readonly] { background: #f1ece3; color: #8a7a5e; }
.lar-inquiry-cf7 .lar-cf7-submit { text-align: center; }
.lar-inquiry-cf7 input.wpcf7-submit {
	width: 100%;
	margin-top: 4px;
	padding: 13px;
	border: none;
	border-radius: 5px;
	background: #ae8f60;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}
.lar-inquiry-cf7 input.wpcf7-submit:hover { background: #000; }
.lar-inquiry-cf7 .wpcf7-spinner { margin: 10px auto 0; display: block; }
.lar-inquiry-cf7 .wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 12px 14px !important;
	border-radius: 6px;
	font-size: 14px;
}
.lar-inquiry-cf7 form.sent .wpcf7-response-output {
	border-color: #cfe6c0 !important;
	background: #f3f8ef;
	color: #3c7a2c;
}
.lar-inquiry-cf7 .wpcf7-not-valid-tip { font-size: 12px; }

@media (max-width: 520px) {
	.lar-inquiry-cf7 .lar-cf7-half { flex: 0 0 100% !important; }
}
.lar-inquiry-btn--submit {
	width: 100%;
	margin-top: 6px;
	padding: 13px;
	font-size: 14px;
	animation: none;
}
.lar-inquiry-success {
	margin: 18px 0 0;
	padding: 16px;
	background: #f3f8ef;
	border: 1px solid #cfe6c0;
	border-radius: 6px;
	color: #3c7a2c;
	font-weight: 600;
	text-align: center;
}

@keyframes larModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes larModalPop {
	from { opacity: 0; transform: translateY(24px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 520px) {
	.lar-field-row { flex-direction: column; gap: 0; }
	.lar-modal__dialog { padding: 28px 20px 24px; }
}

/* ----- "Our Products" dropdown menu -----
 * The submenu + Astra dropdown-toggle markup lives in header.php but had no
 * styling, so the down-arrow caret and the flyout never showed. Render the
 * caret and reveal the sub-menu on hover/focus, matching the original. */
.elementor-nav-menu .menu-item-has-children {
	position: relative;
}

/* the down-arrow caret beside "Our Products" */
.ast-header-navigation-arrow {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 7px;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.2s ease;
	cursor: pointer;
}
.elementor-nav-menu .menu-item-has-children:hover .ast-header-navigation-arrow {
	transform: rotate(180deg);
}

/* the flyout itself — note the frozen Elementor CSS hides it two ways on
   desktop: `.elementor-nav-menu ul{display:none}` and a (min-width:1025px)
   `.elementor-nav-menu--dropdown{display:none}` rule (our submenu has that
   class). Force it back to a positioned block; opacity/visibility do the
   hover reveal so there's no layout shift. */
.elementor-nav-menu .menu-item-has-children > .sub-menu {
	display: block !important;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #020101;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
	border-top: 3px solid #ae8f60;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 9999;
}
.elementor-nav-menu .menu-item-has-children:hover > .sub-menu,
.elementor-nav-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* don't let the header/nav containers clip the flyout */
.elementor-nav-menu,
.elementor-nav-menu--main,
.elementor-nav-menu__container,
.menu-navigation-container {
	overflow: visible !important;
}
.elementor-nav-menu .sub-menu li {
	margin: 0;
	list-style: none;
}
.elementor-nav-menu .sub-menu .menu-link,
.elementor-nav-menu .sub-menu .elementor-sub-item {
	display: block;
	padding: 11px 20px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}
.elementor-nav-menu .sub-menu .menu-link:hover,
.elementor-nav-menu .sub-menu .elementor-sub-item:hover {
	background: rgba(174, 143, 96, 0.16);
	color: #ae8f60;
}

/* ===== Mobile navigation drawer =====
 * The mobile menu relied on a premium "UE side menu" widget whose CSS/JS we
 * don't have, so its contents dumped inline and there were no nav links and no
 * working trigger. We added a hamburger + nav links in header.php and style
 * the whole thing here as a proper off-canvas drawer. */

/* hamburger button (lives inside the UE side-menu widget, which is
   elementor-hidden-desktop, so it only appears on tablet/mobile) */
.lar-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 10px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.lar-burger span {
	display: block;
	width: 100%;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
body.lar-menu-open .lar-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.lar-menu-open .lar-burger span:nth-child(2) { opacity: 0; }
body.lar-menu-open .lar-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* dark overlay behind the drawer */
.ue_side_menu_overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 99998;
}
body.lar-menu-open .ue_side_menu_overlay { opacity: 1; visibility: visible; }

/* the sliding drawer panel — hidden by default (visibility guarantees it stays
   off-screen even if an ancestor transform breaks position:fixed), shown only
   when body.lar-menu-open is toggled by the hamburger. */
.side-menu-holder {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 320px;
	max-width: 86vw;
	background: #0b0b0b;
	transform: translateX(100%);
	visibility: hidden;
	pointer-events: none;
	transition: transform 0.32s ease, visibility 0.32s ease;
	z-index: 99999;
	overflow-y: auto;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
	padding: 18px 0 40px;
}
body.lar-menu-open .side-menu-holder {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}
.uc-close-side-menu {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}
.side-menu-holder .ue_logo { padding: 10px 22px 16px; }
.side-menu-holder .ue_logo img { width: 170px; height: auto; }

.lar-mobile-menu,
.lar-mobile-submenu { list-style: none; margin: 0; padding: 0; }
.lar-mobile-menu > li > a {
	display: block;
	padding: 14px 22px;
	color: #fff;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lar-mobile-menu a:hover { color: #ae8f60; background: rgba(174, 143, 96, 0.1); }
.lar-mobile-submenu { background: rgba(255, 255, 255, 0.03); }
.lar-mobile-submenu a {
	display: block;
	padding: 11px 22px 11px 38px;
	color: #cfcfcf;
	text-decoration: none;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-menu-holder .side-menu-search { padding: 16px 22px; }
.side-menu-holder .side-menu-search-holder { display: flex; }
.side-menu-holder .side-menu-search-input {
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
	border: none;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
}
.side-menu-holder .side-menu-search-button-search {
	background: #ae8f60;
	color: #fff;
	border: none;
	padding: 0 16px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}
.side-menu-holder .side-menu-buttons { display: flex; gap: 10px; padding: 4px 22px 0; }
.side-menu-holder .side-menu-button {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.side-menu-holder .side-menu-button-icon { color: #ae8f60; font-size: 18px; }

/* show the burger + lay out logo|burger on tablet & mobile */
@media (max-width: 1024px) {
	.lar-burger { display: flex; }
	.elementor-element-8324288 > .e-con-inner {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
	}
	.elementor-element-6ed4c86 { margin-right: auto; }
	.elementor-element-6ed4c86 img { max-width: 150px; height: auto; }
	.elementor-element-a81d9f3 { width: auto; }
}

/* ===== Footer bottom bar (copyright + social icons) =====
 * Keep the row vertically centred and the social icons aligned to the right,
 * rounded + evenly spaced like the original (they were square + edge-jammed). */
.elementor-element-9822d75 {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	flex-wrap: wrap;
	gap: 14px;
}
.elementor-element-9822d75 .elementor-social-icons-wrapper {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 10px;
	justify-content: flex-end;
	margin: 0;
}
.elementor-element-9822d75 .elementor-grid-item { margin: 0 !important; }
.elementor-element-9822d75 .elementor-social-icon {
	width: 36px !important;
	height: 36px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background-color: #000 !important;
	border-radius: 7px;
	padding: 0 !important;
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.elementor-element-9822d75 .elementor-social-icon:hover {
	background-color: #ae8f60 !important;
	transform: translateY(-2px);
}
.elementor-element-9822d75 .elementor-social-icon svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

@media (max-width: 767px) {
	.elementor-element-9822d75 { justify-content: center !important; text-align: center; }
}

/* Hero "Contact Us" CTA (2nd button in the hero blox_btn_group): white text so
   it reads on the dark hero (was dark/black). Scoped to the hero button only. */
#uc_blox_btn_group_elementor_254c5e6_item2,
#uc_blox_btn_group_elementor_254c5e6_item2 .ue-btn-txt,
#uc_blox_btn_group_elementor_254c5e6_item2 .ue-btn-icon,
#uc_blox_btn_group_elementor_254c5e6_item2 .ue-btn-icon i {
	color: #ffffff !important;
}
