.elementor-element.elementor-widget-empty {
	background-color: inherit;
}
.latest-categories-section {
	/* 	max-width: 1280px; */
	/* 	margin: 0 auto;  */
}
.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 52px;
	column-gap: 0; /* we'll use pseudo lines instead */
	justify-items: center;
	position: relative;
}

.category-item {
	text-decoration: none;
	color: inherit;
	display: block;
	text-align: center;
	position: relative;
	width: 100%;
	transition: transform 0.3s ease;
}
.category-item:hover {
	transform: translateY(-6px);
}
.category-image-wrapper { 
	transition: box-shadow 0.3s ease;
}
.category-item:hover .category-image-wrapper {
	/* 	box-shadow: 0 8px 20px rgba(0,0,0,0.12); */
}
.category-image { 
	filter: grayscale(100%);
	/* transition: filter 0.35s ease; */
}
.category-item:hover .category-image {
	filter: grayscale(0%);
}
.category-name {
	padding: 0 10px;
	margin-top: 15px;
	color: #1E1E1E;
	text-align: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
}
/* Vertical separator lines using :after - centered perfectly */
.category-item:not(:last-child):after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1.5px;
	background: #D3D5D6;
	transform: translateX(50%);
} 
/* Scrollable Tabs Container */
.filter-tabs-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 40px;
	scrollbar-width: thin;
}

.filter-tabs-container::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;	
	background-color: #000;
}
.filter-tabs-container::-webkit-scrollbar {
	height: 6px;
}

.filter-tabs-container::-webkit-scrollbar-thumb {
	background: #000 !important;
	border-radius: 3px;
}

.filter-tabs {
	display: flex;
	gap: 12px;
	min-width: max-content; /* allows horizontal scroll when many tabs */
	padding-bottom: 8px;
}

.filter-btn {
	flex: 0 0 auto;
	height: 53px;
	padding: 6px 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	color: #8A8C8E;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	font-family: 'Helvetica Now Text';
	border-radius: 30px;
	border: 1px solid #D3D5D6;
	background-color: transparent;
}

.filter-btn:hover {
	background: #e8f0fe;
}

.filter-btn.active {
	\: #0066cc;
	color: white;
	border: 1px solid #083698;
	background: #083698;
}

/* Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

@media (max-width: 1024px) { 
	.products-grid {
		gap: 15px; 
		row-gap: 25px; grid-template-columns: repeat(3, 1fr); 
	} 

}
@media (max-width: 600px)  { 
	.products-grid {
		grid-template-columns: repeat(2, 48%);
		gap: 11px;		
		row-gap: 17px;
	}

}

/* Product Card */
.product-card {
	/* text-align: center; */
}

.product-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	width: 100%;
	border-radius: 16px;
	border: 1.5px solid #E9E9E9;
	text-align: center;
}
.product-info {
	margin-top: 18px;
	display: block;
}

.product-title {
	color: #1E1E1E;
	font-family: "Helvetica Now Display";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	margin-top: 8px;
	line-height: 146%;
}

.product-category {
	color: #28a745;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 26px;
}

/* Load More Button */
.load-more-wrapper {
	text-align: center;
	margin-top: 50px;
}

.load-more-btn {
	background: #083698;
	\: white;
	\: none;
	padding: 14px 40px;
	border-radius: 30px;
	\: 16px;
	\: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid;
	color: #FFF;
	font-family: Helvetica;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
}

.load-more-btn:hover {
	color: #083698;
	background: #fff;
}

.load-more-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}
.loading-spinner{
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translateX(50%) translatey(50%);
}

/* Spinner */
.spinner {
	width: 40px; height: 40px;
	border: 5px solid #e0e0e0;
	border-top: 5px solid #0066cc;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 15px;
}
.hide_lead_btn .load-more-wrapper {
	display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }
.counter_sec .elementor-counter-title {
	text-align: center;
}
.counter_sec .elementor-container.elementor-column-gap-default {
	row-gap: 31px;
}
/* Desktop - 4 columns */
@media (min-width: 1025px) {
	.category-grid {
		grid-template-columns: repeat(4, 1fr);

	}
	.category-item:nth-child(4n):after {
		display: none; /* no line after last in row */
	}
}

/* Tablet - 2 columns */
@media (min-width: 375px) and (max-width: 1024px) {


	.filter-btn{
		height: 45px;
		padding: 6px 16px;
		font-size: 18px;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.category-grid {
		grid-template-columns: repeat(3, 1fr);
		row-gap:30px;

	}
	.category-item:nth-child(3n):after {
		display: none;
	}
}
@media (min-width: 375px) and (max-width: 767px) {
	.category-name{
		font-size: 18px;  
	}
	.category-image{
		max-width: 60% !important;
	}
	.counter_sec .elementor-container.elementor-column-gap-default {
		row-gap: 25px;
	}
	.product-category{
		font-size: 16px;
		line-height: 21px;
	}
}
@media  (max-width: 767px) {
	.filter-btn{
		height: 42px;
		padding: 6px 12px;
		font-size: 14px;
	}
	.filter-tabs{
		gap: 5px;
	}
	.product-title{
		margin-top: 5px;
		font-size: 22px;
		line-height: 21px;
	}	
	.product-info {
		margin-top: 9px;
	}
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap:25px;
	}
	.category-item:nth-child(2n):after {
		display: none;
	}
}
/* Mobile - 1 column, no lines */
@media (max-width: 374px) {
	/* 	.category-grid {
	grid-template-columns: 1fr;
}
	.category-item:after {
	display: none;
} */
	.category-name{
		font-size: 16px; 
		margin-top: 12px;
	}
	.category-image{
		max-width: 60% !important;
	}
	/* 	.category-grid{
	row-gap: 34px;
} */
	.counter_sec .elementor-container.elementor-column-gap-default {
		row-gap: 20px;
	}
	.product-title{
		margin-top: 5px;
		/* 		font-size: 20px; */
		line-height: 18px;
	}
	.product-category{
		font-size: 14px;
		line-height: 17px;
	}
	.product-category {
		font-size: 14px;
		line-height: 17px;
	}
	.product-info {
		margin-top: 9px;
	}
}

/* =============================================
Category Product Filter Style
============================================= */ 
.our_client #gallery-1 img {
	border: none
}

.our_client > .elementor-widget-wrap {
	gap: 6.042vw;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
@media (max-width: 1440px) {
	.our_client > .elementor-widget-wrap {
		gap: 4.042vw;
		width: 82%;
		justify-content: flex-end;
	}
	.our_client  { 
		justify-content: flex-end;
	}
}
/* =============================================
HOTSPOT SKELETON SECTION 
============================================= */

.skeleton-hotspot-section {
	/* max-width: 1280px; */
	/* margin: 80px auto; */
	/* padding: 0 20px; */
	/* background: #f8fbff; */
}
.skeleton-container {
	display: grid;
	grid-template-columns: 1fr 2.2fr 1fr;
	gap: 40px;
	align-items: start;
	position: relative;
	grid-template-columns: 40.70% 218px 40.70%;
}
.side-panel {
	border-radius: 16px;
	max-width: 548px;
	/* 	min-height: 620px; */
	opacity: 0;
	transition: opacity 0.4s ease;
	/*             display: none; */
}
.side-panel.active {
	opacity: 1;
	display: block;
}
.skeleton-wrapper {
	position: relative;
	text-align: center;
}
.skeleton-img {
	width: 100%;
	max-width: 520px;
	height: auto;
	margin: 0 auto;
}
.hotspot-plus {
	position: absolute;
	width: 36px;
	height: 36px;
	display: flex;
	font-size: 24px;
	font-weight: 400;
	color: #083698;
	transition: all 0.3s ease;
	cursor: pointer;
	transform: translate(-50%, -50%);
	z-index: 10;
	border-radius: 30px;
	border: 1.5px dashed #ffffff;
	background: #FFF;
	box-shadow: 0 0 16px 0 rgba(8, 54, 152, 0.16);
	justify-content: center;
}
.hotspot-plus:hover, .hotspot-plus.active {
	transform: translate(-50%, -50%) scale(1.05);
	background: #083698;
	color: white;
	box-shadow: 0 8px 25px rgba(0,102,204,0.4);
/* 	z-index: 99; */
}
.panel-header {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	align-items: flex-start;
	flex-direction: column;
}
.bone-image img {
	width: 105px;
	height: auto;
	border-radius: 100%;
	border-radius: 60.95px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(236, 241, 251, 0.00) 0%, rgba(236, 241, 251, 0.00) 58.65%, rgba(236, 241, 251, 0.86) 87.5%, #ECF1FB 100%);
}
.panel-text h3 {
	margin: 0 0 8px;
	color: #252525;
	font-family: "Helvetica Now Display";
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
}
.panel-text p {
	color: #2C2C2C;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.products-grid-hotspot {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 32px;
}
.product-box {
	text-decoration: none;
	color: inherit;
	text-align: center;
	transition: transform 0.3s ease;
}
.product-box:hover {
	transform: translateY(-6px);
}
.product-thumb-small {
	/* height: 110px; */
	/* background: #f9f9f9; */
	/* display: flex; */
	/* align-items: center; */
	justify-content: center;
	/* padding: 10px; */
	margin-bottom: 11px;
}
.product-name {
	color: #252525;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: start;
}
.view-all-btn {
	color: #083698;
	font-family: Helvetica;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	text-decoration: none;
	transition: all 0.3s ease;
}
.view-all-btn:hover {
	color: #0052a3;
}
span.plus-icon {
	top: 50%;
	position: relative;
	right: -50%;
	display: inline-block;
	align-content: center;
	height: 100%;
	width: 100%;
	transform: translate(-50%, -54%);
}
.right-panel {
	margin-right: 0;
	margin-left: auto;
}
.products-grid-hotspot img {
	border-radius: 6.342px;
	border: 1px solid rgba(45, 105, 234, 0.12);
}
.bone-image:after {
	content: "";
	border-radius: 60.95px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(236, 241, 251, 0.00) 0%, rgba(236, 241, 251, 0.00) 58.65%, rgba(236, 241, 251, 0.86) 87.5%, #ECF1FB 100%);.bone-image
	img: ;
	width: 100%;
	height: 100%;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
}
.bone-image {
	position: relative;
} 
@media (max-width: 1440px) {
	.products-grid-hotspot{
		gap: 11px;
		margin-bottom: 32px;
	}
}
@media (max-width: 1024px) {
	.skeleton-container {
		grid-template-columns: 1fr;           /* single column */
		gap: 0px;                            /* smaller gap on mobile */
	}
	.skeleton-wrapper {
		order: 1;                             /* image first */
		max-width: 100%;                      /* full width */
		margin: 0 auto;
	}
	.skeleton-img {
		max-height: 400px;                    /* fix height to ~400px */
		width: auto;
		height: auto;
		object-fit: contain;
		display: block;
		margin: 0 auto;
	}
	.left-panel {
		order: 2; 
	}
	.right-panel {
		order: 3;     
	}
	/* Prevent spacing collapse when one panel is empty */
	.side-panel {
		/*  min-height: 300px;    */
		visibility: visible; 
		opacity: 1;
	}
	.side-panel:not(.active) {
		opacity: 0;
		pointer-events: none;
	}
	.side-panel.active {
		opacity: 1;
		pointer-events: auto;
		margin-top: 30px;
	}
	.products-grid-hotspot {
		grid-template-columns: repeat(4, 1fr); /* 2 columns on tablet/mobile */
		gap: 16px;
	}
	.panel-header{
		align-items: center;
		flex-direction: row;
	}
	.panel-header{
		margin-bottom: 15px
	}
	.panel-text h3{
		font-size: 24px;
	}
	.bone-image img {
		width: 125px
	}
	.hotspot-plus {
		position: absolute;
		width: 26px;
		height: 26px;
		font-size: 17px;
	}
	.panel-text p{
		font-size: 16px;
	}
	.panel-header{
		gap: 11px;
	}
	.side-panel {
		max-width:100%;
	}

}

@media (max-width: 600px) {
	.panel-header {
		margin-bottom: 20px;
		display: grid;
		grid-template-columns: 60px auto;
	}
	.skeleton-img {
		max-height: 320px;
	}
	.products-grid-hotspot {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		row-gap: 15px;
	}
	.panel-text p {
		font-size: 14px;
	}
	.panel-text h3 {
		font-size: 18px;
	}
	.panel-header {
		margin-bottom: 20px;
	}
	.product-name{
		font-size: 12px;
	}
	.product-thumb-small{
		margin-bottom: 5px;
	}
	.view-all-btn{
		font-size: 16px;
	}
	.our_client > .elementor-widget-wrap{
		gap: 4.042vw;
		width: 100%;
	}
}

/* ========= Produtc thumbnail gallery */
.custom-product-gallery {
	max-width: 677px;
	width: 100%;
	margin: 0 auto;
	font-family: inherit;
	box-sizing: border-box;
}

/* ── Main Image ── */
.cpg-main-wrap {		 
	/* background: #ededed; */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 505px;
	min-height: 505px;
	max-height: 505px;
	padding: px;
	box-sizing: border-box;
	border-radius: 16px;
	border: 1px solid #E9E9E9; 
}

.cpg-main-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cpg-main-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: opacity 0.25s ease;
}

.cpg-main-image img.cpg-fade {
	opacity: 0;
}

/* ── Thumbnails Outer ── */
.cpg-thumbs-outer {
	margin-top: 12px;
	overflow: hidden;
	position: relative;
}

/* Scrollable track */
.cpg-thumbs-track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 4px;
	-webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep scrolling */
.cpg-thumbs-track::-webkit-scrollbar {
	height: 4px;
}

.cpg-thumbs-track::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 4px;
}

.cpg-thumbs-track::-webkit-scrollbar-track {
	background: transparent;
}

/* ── Each Thumbnail ── */
.cpg-thumb-item {
	flex: 0 0 calc(25% - 8px);
	/* 4 visible thumbnails */
	min-width: 80px;
	max-width: 120px;
	border: 1px solid #E9E9E9;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.15s ease;
	box-sizing: border-box;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
}

.cpg-thumb-item:hover {
	border-color: #aaa; 
}

.cpg-thumb-item.active {
	border-color: #2e7d32;
	/* Green active border — matches your site theme */
}

.cpg-thumb-item img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	pointer-events: none;
} 
@media (max-width: 1024px) {
	.custom-product-gallery{
		max-width:100%;
	}
	.cpg-main-wrap{
		min-height: 288px;
		max-height: 390px;
	}
}
@media (max-width: 767px) {
	.cpg-main-wrap{
		min-height: 288px;
		max-height: 340px;
	}
}
@media (max-width: 480px) {
	.cpg-thumb-item {
		flex: 0 0 72px;
		min-width: 72px;
		padding: 4px;
	}
	.cpg-main-wrap{
		min-height: 288px;
		max-height: 240px;
	}
}
/* ======== Product page - Product Featured */
.cfb-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

.cfb-card {
	flex: 1 1 382px;
	max-width: 382px;
	min-width: 220px;
	background: #ffffff; 
	padding: 24px 32px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-radius: 10px;
	border: 1.5px solid #E9E9E9;
}

.cfb-heading {
	margin: 0;
	line-height: 129%;
	font-size: 20px;
	font-style: normal;
	font-weight: 700 !important;
	text-transform: capitalize;
}

.cfb-details {
	margin: 0;
	line-height: 140% !important;
	color: #2C2C2C !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	opacity: 0.8;
}

@media (max-width: 1699px) {
	.cfb-card {
		max-width: 482px;
	}
}

@media (max-width: 1366px) {
	.cfb-card {
		max-width: 355px;
	}
	.cfb-card{
		padding: 20px;
	}
}
@media (max-width: 1440px) {
	.cfb-card {
		flex: 1 1 calc(33.33% - 16px) ;
		max-width: calc(33.33% - 16px);
	}
}
@media (max-width: 1199px) {
	/* 	.cfb-card {
	max-width: 295px;
	min-width: 216px;
} */
}

@media (max-width: 1024px) {
	.cfb-card {
		flex: 1 1 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (max-width: 510px) {
	.cfb-card {
		flex: 1 1 100%;
		max-width: 100%;
		min-width: 100%;
	}
	.cfb-wrap {
		/* padding: 16px; */
		gap: 18px;
	}
}
.d-inline-block .elementor-widget-container {
	display: inline-block;
}
.cpd-wrap {
	max-width: 700px;
	width: 100%;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.7;
	color: #222;
	margin-bottom: 40px;
	padding: 0;
}

.cpd-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 18px;
	flex-wrap: wrap;
	flex-direction: row;
	flex-wrap: nowrap;
}

.cpd-row:last-child {
	margin-bottom: 0;
}

.cpd-label {
	flex-shrink: 0;
	color: #1E1E1E;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
}
.post_details p, .post_details li{
	color: #2C2C2C;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 135%;
	opacity: 0.8;
}
.post_details p, .post_details li{
	margin-bottom: 15px;
}
.cpd-content {
	color: #2C2C2C;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 135%;
	opacity: 0.8;		
}
@media (max-width: 768px) {
	.cpd-label,
	.cpd-content{
		font-size: 16px !important;
	}
    .post_details p, .post_details li{
		font-size: 18px;
	}
	.cfb-wrap{
		gap: 15px;
	}
}

/*  ============= Product Gallery with popup section  */
.pgp-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.pgp-item {
	aspect-ratio: 1 / 1;  
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius: 6.375px;
	border: 0.797px solid #E9E9E9; 
}

.pgp-item:hover {
	border-color: #aaa;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pgp-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

/* Lightbox */
.pgp-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.pgp-lightbox.pgp-active {
	display: flex;
}

.pgp-lb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.9);
}

.pgp-lb-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90vw;
	max-width: 920px;
}

.pgp-lb-img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

img.pgp-lb-img {
	max-width: 80vw;
	max-height: 80vh;
	object-fit: contain;
	display: block;
	border-radius: 4px;
	transition: opacity 0.2s ease;
}

.pgp-lb-loader {
	display: none;
	position: absolute;
	width: 36px;
	height: 36px;
	border: 3px solid rgba(255,255,255,0.15);
	border-top-color: #fff;
	border-radius: 50%;
	animation: pgp-spin 0.7s linear infinite;
}

@keyframes pgp-spin { to { transform: rotate(360deg); } }

.pgp-lb-close {
	position: absolute;
	top: -48px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	opacity: 0.8;
}
.pgp-lb-close:hover { opacity: 1; }

.pgp-lb-prev,
.pgp-lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: #fff;
	font-size: 52px;
	line-height: 1;
	cursor: pointer;
	padding: 6px 16px;
	border-radius: 4px;
	transition: background 0.2s, opacity 0.2s;
	z-index: 2;
}

.pgp-lb-prev { left: -40px; }
.pgp-lb-next { right: -40px; }

.pgp-lb-prev:hover,
.pgp-lb-next:hover { background: rgba(255,255,255,0.2); }

.pgp-lb-counter {
	position: absolute;
	bottom: -34px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.pgp-grid { grid-template-columns: repeat(3, 1fr);   gap: 15px; }
	.pgp-lb-prev { left: -20px; font-size: 38px; }
	.pgp-lb-next { right: -20px; font-size: 38px; }
}

@media (max-width: 480px) {
	.pgp-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	/* 		img.pgp-lb-img { max-width: 90vw; } */
	.pgp-lb-prev { left: -15px; font-size: 30px; padding: 6px 10px; }
	.pgp-lb-next { right: -15px; font-size: 30px; padding: 6px 10px; }
}
.mdc-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

.mdc-card {
	flex: 1 1 280px;
	max-width: 517px;
	border-radius: 10px;
	padding: 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-radius: 10px;
	border: 1.5px solid #E9E9E9;
	background: #FFF;
}

.mdc-heading {
	color: #1E1E1E;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
}

.mdc-file {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	text-decoration: none;
	transition: background 0.2s ease;
	box-sizing: border-box;
	border-radius: 8px;
	background: linear-gradient(94deg, rgba(47, 99, 211, 0.10) 8.57%, rgba(118, 199, 218, 0.10) 81.06%, rgba(86, 186, 106, 0.10) 153.55%);
} 
.mdc-pdf-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	display: block;
}

.mdc-file-name {
	font-size: 13.5px;
	color: #333;
	font-weight: 400;
	line-height: 1.4;
	word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
	.mdc-card {
		flex: 1 1 calc(50% - 10px);
		max-width: calc(50% - 10px);
		padding: 15px;
		gap: 13px;
	}
	.mdc-wrap{
		gap: 15px;

	}
}

@media (max-width: 480px) {
	.mdc-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
}
/* ====== mega menu dropwond */
.pcl-wrap {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1.5px solid #e0e0ef;
	border-radius: 14px;
	padding: 40px 54px;
	font-family: inherit;
}

.pcl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:32px 44px;

}

.pcl-parent-title {
	margin: 0 0 14px 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.pcl-parent-title a {
	text-decoration: none;
	transition: color 0.2s;
	color: #083698;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	text-transform: capitalize;
}

.pcl-parent-title a:hover {
	color: #2e7d32;
}

.pcl-sub-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pcl-sub-item {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
}

.pcl-sub-item a {
	display: flex; 
	align-items: flex-start;
	gap: 10px;
	text-decoration: none;
	transition: color 0.2s;
	color: #939393;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

.pcl-sub-item a:hover, .pcl-sub-item a:hover svg path{
	color: #3b904c;
	fill: #3b904c;
}

.pcl-icon {
	font-size: 9px;
	color: #888;
	flex-shrink: 0;
	margin-top: 8px;
	line-height: 1;
}

.pcl-hidden {
	display: none;
}

.pcl-toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: #1a3a6e;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s;
}

.pcl-toggle-btn:hover {
	color: #2e7d32;
}
.elementor-nav-menu--main .elementor-nav-menu ul.pcl-sub-list {
	position: inherit;
	display: block;
}
@media (max-width: 1366px) {
	.pcl-wrap {
		padding: 30px 40px;
	}
	.pcl-grid {
		gap: 28px 35px;
	}
	.mb_mobile ul {
		padding-bottom: 30px;
	}
}
@media (max-width: 1199px) {
	.pcl-sub-item a {
		font-size: 16px;
		align-items: flex-start;
		line-height: 20px;
	}
	.pcl-parent-title a {
		font-size: 18px;
	}
	.pcl-wrap {
		padding: 26px 30px;
	}
	.pcl-grid {
		gap: 25px 30px;
	}
}
@media (max-width: 1024px) {
	.pcl-wrap {
		padding: 20px;
		margin-top: 15px;
	}
	.pcl-grid { 
		grid-template-columns: repeat(2, 1fr); 
		gap: 20px 20px;
	}
	.pcl-grid {
		gap: 20px 20px;
	}
	.pcl-wrap {
		padding: 20px 20px;
	}
	.pcl-sub-item a { 
		padding: 0 3px 11px !important;
		align-items: flex-start !important;
	}
	.pcl-parent-title a {
		padding: 0 !important;
	}
	li.pcl-sub-item:nth-last-child(1) a {
		padding-bottom: 0 !important;
	}
	.pcl-icon {
		margin-top: 5px;
	}
	li.product-link {
		display: grid !important;
		grid-template-columns: 90% 10%;
		justify-content: space-between;
	}
	.product-link .dropdown-arrow {
		font-size: 23px;
		margin-left: 0;
		cursor: pointer;
		padding: 4px;
		z-index: 99;	
		position: relative;
		visibility: visible;
		color: #000;
		text-align: center;
		line-height: 10px;
	}
	.mobile-dropdown-content {
		order: 2;
		grid-column: span 2;
	}
	span.dropdown-arrow.open {
		rotate: 45deg;
	}
	.heder-product-categories {
		display: none;
	}
}

@media (max-width: 768px) {
	.pcl-grid { grid-template-columns: repeat(1, 1fr); g }
	.pcl-wrap { padding: 18px 16px; }
}

@media (max-width: 480px) {
	.pcl-grid { grid-template-columns: 1fr; }
}