/* ==========================================================================
   Header V2 - Modern Dynamic Header Styles
   ========================================================================== */

.np-header-v2-container {
	background: #FFFFFF;
	border-bottom: 1px solid #F0EAE1;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	position: relative;
	z-index: 999;
	width: 100%;
}

.np-header-v2-inner {
	max-width: 1380px;
	margin: 0 auto;
	padding: 5px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

/* --- Left: Logo & Subtitle --- */
.np-header-v2-logo-col {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.np-header-v2-logo-link {
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
}

.np-header-v2-brand-name {
	font-family: 'Poppins', 'Inter', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #3B1B10;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

.np-brand-highlight {
	color: #E65100;
}

.np-header-v2-tagline {
	font-family: 'Inter', sans-serif;
	font-size: 9.5px;
	font-weight: 700;
	color: #4A3E38;
	letter-spacing: 0.8px;
	margin-top: 3px;
	text-transform: uppercase;
}

/* Custom logo image styling */
.np-header-v2-logo-col img {
	max-height: 72px;
	width: auto;
	object-fit: contain;
}

/* --- Center: Navigation Menu --- */
.np-header-v2-nav-col {
	display: flex;
	align-items: center;
}

.np-header-v2-menu {
	display: flex;
	align-items: center;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	gap: 30px;
}

.np-header-v2-menu li {
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.np-header-v2-menu li a {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #3E2F28;
	text-decoration: none !important;
	padding: 10px 0;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: color 0.2s ease, border-color 0.2s ease;
	border-bottom: 2.5px solid transparent;
}

.np-header-v2-menu li:hover>a,
.np-header-v2-menu li.current-menu-item>a,
.np-header-v2-menu li.current_page_item>a {
	color: #E65100;
	border-bottom-color: #E65100;
}

/* Submenu dropdown indicator */
.np-header-v2-menu li.menu-item-has-children>a::after {
	content: '▾';
	font-size: 11px;
	margin-left: 5px;
	color: #8C7A70;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
	display: inline-block;
}

.np-header-v2-menu li.menu-item-has-children:hover>a::after {
	transform: rotate(180deg);
	color: #E65100;
}

/* --- Level 1 Dropdown Submenu --- */
.np-header-v2-menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #FFFFFF;
	min-width: 250px;
	border-radius: 12px;
	border-top: 3.5px solid #E65100;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(230, 81, 0, 0.06);
	border-left: 1px solid #F3ECE5;
	border-right: 1px solid #F3ECE5;
	border-bottom: 1px solid #F3ECE5;
	padding: 10px 0;
	margin: 0;
	margin-top: 25px;
	list-style: none !important;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
}

.np-header-v2-menu li:hover>ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Submenu Items */
.np-header-v2-menu ul.sub-menu li {
	width: 100%;
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
}

.np-header-v2-menu ul.sub-menu li a {
	padding: 11px 22px;
	font-size: 13.5px;
	font-weight: 500;
	color: #3B2E27;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: none !important;
	border-left: 3px solid transparent;
	transition: all 0.2s ease;
}

.np-header-v2-menu ul.sub-menu li a:hover,
.np-header-v2-menu ul.sub-menu li.current-menu-item>a {
	background: linear-gradient(90deg, #FFF5ED 0%, #FFFFFF 100%);
	color: #E65100;
	border-left-color: #E65100;
	padding-left: 26px;
}

/* --- Level 2 Nested Sub-Submenu (Flyout Dropdown) --- */
.np-header-v2-menu ul.sub-menu li.menu-item-has-children>a::after {
	content: '▸';
	font-size: 13px;
	color: #A09088;
	margin-left: auto;
	transition: transform 0.2s ease, color 0.2s ease;
}

.np-header-v2-menu ul.sub-menu li.menu-item-has-children:hover>a::after {
	transform: translateX(3px);
	color: #E65100;
}

.np-header-v2-menu ul.sub-menu ul.sub-menu {
	top: -4px;
	left: 98%;
	border-top: 3.5px solid #E65100;
	transform: translateX(10px);
}

.np-header-v2-menu ul.sub-menu li:hover>ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}


/* --- Right: Action Buttons --- */
.np-header-v2-actions-col {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}

.np-header-action-item {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none !important;
	color: inherit;
	transition: transform 0.2s ease;
}

.np-header-action-item:hover {
	transform: translateY(-1px);
}

.np-action-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}

/* Call Icon */
.np-icon-call {
	background: #FFF3EB;
	border: 1px solid #FFE0CC;
	color: #E65100;
}

/* WhatsApp Icon */
.np-icon-whatsapp {
	background: #E8F8EE;
	border: 1px solid #C8F0D6;
	color: #25D366;
}

/* Cart & Alerts Icon */
.np-icon-cart,
.np-icon-alerts {
	background: #FFFBF0;
	border: 1.5px solid #F5C77E;
	color: #D97706;
}

/* Badge count for alerts & cart */
.np-badge,
.np-header-action-item .cart-count,
.np-icon-alerts .cart-count,
.np-icon-cart .cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	background: #E53E3E !important;
	color: #FFFFFF !important;
	font-size: 10px;
	font-weight: 700;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #FFFFFF;
	box-sizing: border-box;
	line-height: 1;
}

.np-action-text {
	display: flex;
	flex-direction: column;
}

.np-action-title {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #2D1A10;
	line-height: 1.2;
}

.np-action-sub {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #7A6B63;
	line-height: 1.2;
}

/* ==========================================================================
   Mobile Responsive Header & Drawer Styles
   ========================================================================== */

/* Hamburger Button (Default hidden on desktop) */
.np-mobile-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	z-index: 1001;
}

.np-hamburger-line {
	width: 24px;
	height: 2.5px;
	background-color: #3B1B10;
	border-radius: 3px;
	transition: all 0.3s ease;
}

/* Mobile Drawer Overlay */
.np-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

/* Mobile Slide-Out Drawer Panel */
.np-mobile-drawer {
	position: fixed;
	top: 0;
	left: -320px;
	width: 300px;
	max-width: 85vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 9999;
	box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
	transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.np-mobile-drawer.active {
	left: 0;
}

body.np-mobile-menu-open {
	overflow: hidden !important;
}

/* Drawer Header */
.np-mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #F0EAE1;
	background: #FFFDF9;
}

.np-mobile-close {
	background: #F3ECE5;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 16px;
	font-weight: bold;
	color: #4A3E38;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.np-mobile-close:hover {
	background: #E65100;
	color: #FFFFFF;
}

/* Drawer Body & Menu */
.np-mobile-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.np-mobile-menu {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.np-mobile-menu li {
	list-style: none !important;
	margin: 0 !important;
	border-bottom: 1px solid #F5EFE8;
}

.np-mobile-menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 6px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #2D1A10;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.np-mobile-menu li a:hover,
.np-mobile-menu li.current-menu-item>a {
	color: #E65100;
}

/* Accordion Submenu in Mobile Drawer */
.np-mobile-menu li.menu-item-has-children>a::after {
	content: '+';
	font-size: 18px;
	font-weight: bold;
	color: #E65100;
	transition: transform 0.2s ease;
}

.np-mobile-menu li.np-submenu-open>a::after {
	content: '−';
	transform: rotate(180deg);
}

.np-mobile-menu .sub-menu {
	display: none;
	list-style: none !important;
	padding: 0 0 10px 15px !important;
	margin: 0 !important;
	background: #FFFDF9;
	border-radius: 6px;
}

.np-mobile-menu li.np-submenu-open>.sub-menu {
	display: block;
}

.np-mobile-menu .sub-menu li a {
	font-size: 13.5px;
	font-weight: 500;
	padding: 9px 10px;
	color: #554433;
}

/* Drawer Footer Quick Action Buttons */
.np-mobile-drawer-actions {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #F0EAE1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.np-mobile-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 0.2s ease;
}

.np-m-call {
	background: #FFF3EB;
	color: #E65100;
	border: 1px solid #FFE0CC;
}

.np-m-whatsapp {
	background: #25D366;
	color: #FFFFFF;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
	.np-header-v2-inner {
		padding: 10px 16px;
	}

	.np-header-v2-menu {
		gap: 14px;
	}

	.np-header-v2-menu li a {
		font-size: 13.5px;
	}

	.np-action-sub {
		display: none;
	}
}

@media (max-width: 900px) {
	.np-header-v2-nav-col {
		display: none;
		/* Mobile Drawer handles navigation */
	}

	.np-mobile-toggle {
		display: flex;
	}

	.np-header-v2-actions-col {
		gap: 12px;
	}
}

@media (max-width: 600px) {
	.np-header-v2-inner {
		padding: 8px 12px;
	}

	.np-header-v2-tagline {
		font-size: 8px;
		letter-spacing: 0.4px;
	}

	.np-header-v2-brand-name {
		font-size: 20px;
	}

	.np-action-title {
		display: none;
		/* Keep clean circular icons on small mobile screens */
	}

	.np-action-icon {
		width: 36px;
		height: 36px;
	}

	.np-header-action-item {
		gap: 0;
	}

	.np-header-v2-actions-col {
		gap: 8px;
	}
}












/* Container Override to Blend into Pill Design */
.np-banner-search-wrapper {
	/* max-width: 980px; */
	/* margin: -30px auto 35px auto; */
	padding: 0 15px;
	position: relative;
	z-index: 99;
}

.np-banner-search-wrapper .aws-container {
	width: 100%;
}

.np-banner-search-form {
	background: #FFFFFF !important;
	border: 1px solid #c58e5a !important;
	border-radius: 10px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
	display: flex !important;
	align-items: center !important;
	padding: 6px 6px 6px 20px !important;
	transition: all 0.3s ease !important;
}

.np-banner-search-form:focus-within,
.np-banner-search-form:hover {
	border-color: #E65100 !important;
	box-shadow: 0 12px 35px rgba(230, 81, 0, 0.12) !important;
}

/* 1. Search Input Group */
.np-search-input-group {
	display: flex;
	align-items: center;
	flex: 1;
	gap: 12px;
}

.np-search-icon {
	flex-shrink: 0;
}

.np-search-input {
	width: 100% !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	background: transparent !important;
	font-family: 'Poppins', sans-serif !important;
	font-size: 14.5px !important;
	color: #333333 !important;
	padding: 10px 0 !important;
}

.np-search-input::placeholder {
	color: #888888;
	font-weight: 400;
}

/* Vertical Divider */
.np-search-divider {
	width: 1px;
	height: 30px;
	background-color: #E2D9D0;
	margin: 0 16px;
	flex-shrink: 0;
}

/* 2. City Dropdown Group */
.np-search-city-group {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	min-width: 150px;
	margin-right: 20px;
}

.np-city-icon {
	flex-shrink: 0;
}

.np-city-select {
	border: none !important;
	outline: none !important;
	background: transparent !important;
	font-family: 'Poppins', sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #333333 !important;
	cursor: pointer;
	width: 100%;
	padding-right: 22px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 4px center !important;
}

/* 3. Action Button */
.np-search-btn {
	/* background: linear-gradient(135deg, #FF6F00 0%, #E65100 100%);
	color: #FFFFFF;
	border: none;
	border-radius: 40px;
	padding: 12px 32px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
	margin-left: 8px; */

	display: inline-block;
	padding: 12px 32px;
	background: linear-gradient(to bottom, #ffb347 0%, #ff8c00 50%, #f36c00 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 40px;
	border: 1px solid #d96a00;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		0 2px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-align: center;
	white-space: nowrap;
}

.np-search-btn:hover {
	/* background: linear-gradient(135deg, #E65100 0%, #BF360C 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4); */

	background: linear-gradient(to bottom, #ffc466 0%, #ff9800 50%, #ff7300 100%);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		0 4px 8px rgba(0, 0, 0, 0.25);
}

/* AWS Live Auto-Suggest Popup Formatting */
.np-banner-search-wrapper .aws-search-result,
.aws-search-result {
	border-radius: 14px !important;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
	margin-top: 12px !important;
	border: 1px solid #F3ECE5 !important;
	overflow: hidden !important;
}

/* Hide Sale Badge in Search Results */
.aws-search-result .aws_result_sale {
	display: none !important;
}

/* Hide Price in Search Results */
.aws-search-result .aws_result_price {
	display: none !important;
}


/* Responsive Mobile Layout */
@media (max-width: 768px) {
	.np-banner-search-form {
		flex-direction: column !important;
		align-items: stretch !important;
		padding: 14px 16px !important;
		gap: 12px !important;
		border-radius: 14px !important;
		height: auto !important;
	}

	.np-search-input-group {
		width: 100% !important;
		border-bottom: 1px solid #efeae4 !important;
		/* border-bottom: solid 1px #b5b4b4; */
		padding-bottom: 10px !important;
	}

	.np-search-input {
		padding: 4px 0 !important;
	}

	.np-search-divider {
		display: none !important;
	}

	.np-search-city-group {
		border-top: none !important;
		padding-top: 2px !important;
		padding-bottom: 4px !important;
		margin-right: 0 !important;
		min-width: 0 !important;
		width: 100% !important;
		/* border-bottom: solid 1px #b5b4b4; */
		border-bottom: 1px solid #efeae4 !important;

	}

	.np-city-select {
		width: 100% !important;
		padding-right: 20px !important;
	}

	.np-search-btn {
		margin-left: 0 !important;
		width: 100% !important;
		text-align: center !important;
		border-radius: 10px !important;
		padding: 13px 20px !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	.np-banner-search-wrapper {
		padding: 0px !important;
	}
}

/* Full Home Page Section Background Color */
/* body.home,
body.front-page,
body.home #page,
body.home #content,
body.home .site-content,
body.home .wengdo-content-inner,
body.home .elementor,
body.home .elementor-section-wrap,
body.home article.page {
	background-color: #fff9f1 !important;
}

body.home .elementor-section:not(.np-dark-section):not(.footer-section) {
	background-color: #fff9f1 !important;
} */



/* Decorative Heading with Side Ornaments */
.np-decorated-heading .elementor-heading-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-size: 25px;
	/* Space between the text and the icons */
}

/* Left Ornament */
.np-decorated-heading .elementor-heading-title::before {
	content: "";
	display: inline-block;
	width: 80px;
	/* Adjust based on your actual image width */
	height: 35px;
	/* Adjust based on your actual image height */
	background-image: url('http://192.168.60.244/nammapandit.com/wp-content/uploads/2026/08/head_icon2.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
}

/* Right Ornament */
.np-decorated-heading .elementor-heading-title::after {
	content: "";
	display: inline-block;
	width: 80px;
	height: 35px;
	background-image: url('http://192.168.60.244/nammapandit.com/wp-content/uploads/2026/08/head_icon1.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
}

/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
	.np-decorated-heading .elementor-heading-title {
		gap: 12px;
		font-size: 15px;
	}

	.np-decorated-heading .elementor-heading-title::before,
	.np-decorated-heading .elementor-heading-title::after {
		width: 35px;
		height: 20px;
	}
}


/* .hide_option_button .theme-btn.button {
	display: none !important;
} */

.woocommerce ul.products li.product .wengdo-product-wrapper.wengdo-text-align-left {
	border: 1px dashed #fbb403;
	border-radius: 10px;
}

.wengdo-product-block .inner-box .image-box img {
	border-radius: 10px 10px 0px 0px;
}


.group_para_mb0>.elementor-widget-container p {
	margin-bottom: 0;
}

.exp_groud_head_mb {
	margin-bottom: 10px;
}


.wengdo-footer-widgets-bar:before {

	background-image: url(/nammapandit.com/wp-content/uploads/2026/08/fotter_bg.png) !important;
}



@media (max-width: 767px) {
	.choose_icon_mb10 {
		margin-bottom: 5px !important;
	}

	.group_para_mb8 {
		margin-bottom: 8px !important;

	}

	.group_img_mb0 {
		margin-bottom: 8px !important;
	}
}

/* ==========================================================================
   Nammapandit Responsive Footer Mobile Styling (Matches Mobile Footer Mockup)
   ========================================================================== */

/* General Footer Links & Contact List Base Styles */
.footer-links-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.footer-links-list li {
	margin-bottom: 9px !important;
}

.footer-links-list a {
	color: #EAEAEA !important;
	text-decoration: none !important;
	font-size: 14px !important;
	transition: color 0.2s ease !important;
}

.footer-links-list a:hover {
	color: #F8B92E !important;
}

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

.footer-contact-list li {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	margin-bottom: 14px !important;
	color: #EAEAEA !important;
	font-size: 14px !important;
	line-height: 1.4 !important;
}

.footer-contact-list i {
	color: #E6AC00 !important;
	font-size: 16px !important;
	width: 20px !important;
	flex-shrink: 0 !important;
	margin-top: 3px !important;
	text-align: center !important;
}

.footer-social-icons {
	display: flex !important;
	gap: 12px !important;
	margin-top: 16px !important;
}

.footer-social-icons a {
	width: 38px !important;
	height: 38px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #FFFFFF !important;
	font-size: 16px !important;
	text-decoration: none !important;
}


/* 📱 Mobile Specific Footer Responsive Layout (< 991px) */
@media (max-width: 991px) {

	/* 1. Force Wengdo Theme Footer Columns to 100% Width Vertical Stacking */
	.wengdo-footer-widgets-bar-row,
	.wengdo-footer-widgets-bar .elementor-container,
	.site-footer .elementor-container,
	.footer-section .elementor-container,
	.wengdo-footer-widgets-bar .elementor-row,
	.site-footer .elementor-row {
		display: flex !important;
		flex-direction: column !important;
		/* width: 100% !important; */
		padding-left: 16px !important;
		padding-right: 16px !important;
		box-sizing: border-box !important;
	}

	.wengdo-footer-widgets-bar [class*="wengdo-footer-widgets-bar-column-"],
	.wengdo-footer-widgets-bar .wengdo-footer-widgets-bar-column-1,
	.wengdo-footer-widgets-bar .wengdo-footer-widgets-bar-column-2,
	.wengdo-footer-widgets-bar .wengdo-footer-widgets-bar-column-3,
	.wengdo-footer-widgets-bar .wengdo-footer-widgets-bar-column-4,
	.wengdo-footer-widgets-bar .elementor-column,
	.site-footer .elementor-column,
	.footer-section .elementor-column,
	.wengdo-footer-widgets-bar .footer-widget {
		width: 100% !important;
		flex: 0 0 100% !important;
		max-width: 100% !important;
		float: none !important;
		margin-bottom: 24px !important;
		padding-bottom: 20px !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
		box-sizing: border-box !important;
	}

	.wengdo-footer-widgets-bar [class*="wengdo-footer-widgets-bar-column-"]:last-child,
	.wengdo-footer-widgets-bar .wengdo-footer-widgets-bar-column-4:last-child,
	.wengdo-footer-widgets-bar .elementor-column:last-child,
	.site-footer .elementor-column:last-child,
	.footer-section .elementor-column:last-child {
		border-bottom: none !important;
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}

	/* 2. Brand Column Centering on Mobile */
	.footer-col-brand {
		text-align: center !important;
		margin: 0 auto 20px auto !important;
	}

	.footer-col-brand img {
		display: block !important;
		margin: 0 auto 10px auto !important;
		max-width: 120px !important;
	}

	.footer-col-brand h3 {
		color: #F8B92E !important;
		font-weight: 800 !important;
		font-size: 22px !important;
		margin-bottom: 8px !important;
		text-align: center !important;
	}

	.footer-col-brand p {
		color: #EAEAEA !important;
		font-size: 13.5px !important;
		line-height: 1.5 !important;
		max-width: 320px !important;
		margin: 0 auto 16px auto !important;
		text-align: center !important;
	}

	.footer-social-icons {
		justify-content: center !important;
	}

	/* 3. Footer Section Headings / Titles */
	.wengdo-footer-widgets-bar h4,
	.wengdo-footer-widgets-bar h3,
	.site-footer h4,
	.site-footer h3,
	.site-footer .widget-title,
	.footer-widget h4,
	.footer-section .elementor-heading-title {
		color: #E6AC00 !important;
		font-size: 17px !important;
		font-weight: 700 !important;
		margin-bottom: 14px !important;
		margin-top: 0 !important;
		word-break: normal !important;
		letter-spacing: 0.3px !important;
	}

	/* 4. Fix Word Wrapping for Headings like "Contact Us" */
	.elementor-widget-heading .elementor-heading-title {
		word-break: normal !important;
		hyphens: manual !important;
		white-space: normal !important;
	}

	/* 5. Contact List Spacing on Mobile */
	.footer-contact-list li {
		font-size: 13.5px !important;
		gap: 12px !important;
		margin-bottom: 14px !important;
	}

	.footer-contact-list i {
		font-size: 16px !important;
	}

	/* 6. "We Accept" Payment Badges Section Centering & Grid */
	.footer-payment-section {
		text-align: center !important;
		margin-top: 20px !important;
	}

	.footer-payment-section h4 {
		text-align: center !important;
		color: #E6AC00 !important;
		font-size: 17px !important;
		font-weight: 700 !important;
		margin-bottom: 16px !important;
	}

	.payment-badges-grid {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 10px !important;
	}

	.payment-badge-row {
		display: flex !important;
		justify-content: center !important;
		gap: 8px !important;
		flex-wrap: wrap !important;
		width: 100% !important;
	}

	.payment-badge-pill {
		background: #FFFFFF !important;
		border-radius: 6px !important;
		padding: 6px 14px !important;
		font-weight: 700 !important;
		font-size: 12px !important;
		color: #111111 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
		min-width: 65px !important;
		height: 32px !important;
	}

	.payment-badge-pill img {
		max-height: 20px !important;
		width: auto !important;
	}

	/* 7. Footer Bottom Copyright Text & Scroll Button */
	.footer-copyright-bar {
		text-align: center !important;
		padding-top: 16px !important;
		margin-top: 20px !important;
		border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
		font-size: 13px !important;
		color: #DDDDDD !important;
		line-height: 1.5 !important;
		position: relative !important;
	}

	.wengdo-footer-widgets-bar:before {
		background-size: cover;
	}

	.wengdo-footer-widgets-bar-inner {
		padding: 15px 15px 0 15px !important;
	}

	.wengdo-footer-widgets-bar-row {
		padding: 15px 0 80px 0 !important;
		display: none !important;
	}
}