/* ===== HEADER LIKE REFERENCE IMAGE ===== */
.rl-header {
	background: #fff;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
}

.rl-header__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 86px;
}

.rl-header__left {
	display: flex;
	align-items: center;
	gap: 42px;
	min-width: 0;
}

.rl-header__logo a,
.rl-header__logo .custom-logo-link {
	display: block;
	line-height: 0;
}

/* THIS is what fixes the giant logo */
.rl-header__logo img,
.rl-header__logo .custom-logo {
	width: auto !important;
	max-width: 125px !important;
	max-height: 60px !important;
	height: auto !important;
	display: block;
}

/* menu */
.site-logo{
	width: 35% !important;
}

.rl-header__nav {
	display: flex;
	align-items: center;
}

.rl-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
}

.rl-menu li {
	margin: 0;
	padding: 0;
}

.rl-menu a {
	text-decoration: none;
	color: #222;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	padding: 4px 0;
	transition: all 0.2s ease;
}

.rl-menu a:hover {
	color: #000;
}

.rl-menu .current-menu-item > a,
.rl-menu .current_page_item > a {
	border-bottom: 2px solid #222;
	padding-bottom: 6px;
}

/* right icons */
.rl-header__icons {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}

.rl-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #222;
	text-decoration: none;
}

.rl-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.rl-icon:hover {
	color: #000;
}

.rl-cart-count {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
}

/* remove extra weird spacing from default hello pieces if they still appear */
.site-header,
header.site-header,
.page-header {
	margin: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* mobile */
@media (max-width: 900px) {
	.rl-header__inner {
		padding: 14px 18px;
		min-height: 72px;
	}

	.rl-header__left {
		gap: 22px;
	}

	.rl-menu {
		gap: 18px;
	}

	.rl-menu a {
		font-size: 14px;
	}

	.rl-header__logo img,
	.rl-header__logo .custom-logo {
		max-width: 100px !important;
		max-height: 48px !important;
	}
}

@media (max-width: 680px) {
	.rl-header__inner {
		flex-wrap: wrap;
		row-gap: 14px;
	}

	.rl-header__left {
		width: 100%;
		justify-content: space-between;
	}

	.rl-header__nav {
		width: 100%;
		order: 3;
	}

	.rl-menu {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 14px 18px;
	}

	.rl-header__icons {
		margin-left: auto;
	}
}

/* ===== GLOBAL THEME STYLES ===== */
body, .site-main {
	background-color: #fff !important;
	color: #000 !important;
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title {
	color: #000 !important;
}

p, span, div, li {
	color: #000;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #333;
}

/* ===== WOOCOMMERCE CATALOG STYLES ===== */

/* Make images align evenly by enforcing an aspect ratio */
.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain; /* Keep the whole image visible without cropping */
	background-color: #fff;
	margin-bottom: 15px;
	border-radius: 4px;
}

/* Center product contents and push price to bottom */
.woocommerce ul.products li.product {
	text-align: center;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.woocommerce ul.products li.product > a {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* Title alignment & font */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 16px !important;
	color: #000 !important;
	font-weight: 500;
	margin-bottom: 8px;
	flex-grow: 1; /* Pushes the price to the bottom if titles vary in lines */
}

/* Price styling */
.woocommerce ul.products li.product .price {
	color: #000 !important;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}

/* Hide Add to Cart buttons for Catalog Mode */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button.ajax_add_to_cart,
.woocommerce div.product form.cart {
	display: none !important;
}

/* Hide Cart icon from Header */
.rl-icon--cart {
	display: none !important;
}

/* ===== LOGO OVERRIDES ===== */
.rl-header__logo img,
.custom-logo,
.site-logo img,
.elementor-widget-theme-site-logo img {
    max-width: 150px !important;
    max-height: 80px !important;
    height: auto !important;
    width: auto !important;
}

/* ===== HIDE STOCK ===== */
.stock {
    display: none !important;
}

/* ===== WHATSAPP BUTTON ===== */
.button.get-quote-btn {
    background-color: #25d366 !important;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

.button.get-quote-btn:hover {
    background-color: #1ea849 !important;
}

/* ===== FOOTER STYLES ===== */
.rl-footer {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #e9e9e9;
    margin-top: 50px;
}

.rl-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.rl-footer__copyright {
    color: #000;
    font-size: 14px;
}

.rl-footer__socials {
    display: flex;
    gap: 15px;
}

.rl-footer__socials a {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e9e9e9;
    transition: all 0.2s;
}

.rl-footer__socials a:hover {
    background: #000;
    color: #fff;
}