/* =============================================================================
  CSS VARIABLES
   ============================================================================= */
:root {
	/* Colors */
	--color-primary: #3347ff;
	--color-primary-hover: #011321;
	--color-secondary: #2d3748;
	--color-secondary-light: #525e70;
	--color-text: #222;
	--color-text-light: #888;
	--color-text-muted: #a3a3a3;
	--color-white: #fff;
	--color-border: #ddd;
	--color-border-light: #eee;
	--color-border-dark: #cbd5e0;
	--color-bg-light: #f0f0f0;
	--color-orange: orange;

	/* Spacing */
	--spacing-xs: 0.5em;
	--spacing-sm: 1em;
	--spacing-md: 1.25em;
	--spacing-lg: 2em;
	--spacing-xl: 3em;

	/* Transitions */
	--transition-base: all 0.3s ease-in-out;

	/* Typography */
	--font-weight-light: 300;
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 900;
}

/* =============================================================================
   RESET & BASE STYLES
   ============================================================================= */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Inter";
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Anek Latin", sans-serif !important;
}
ol,
ul {
	list-style-type: none;
}

a {
	text-decoration: none;
	outline: none;
}

button {
	outline: none;
	border: none;
	cursor: pointer;
}

input:focus {
	border: none;
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

figure.wp-block-image {
	width: 100% !important;
	margin: 0 !important;
}

/* read more button icon customization   */
.woocommerce ul.products li.product .button .kadence-svg-iconset svg,
.wc-block-grid__product
	.wc-block-grid__product-add-to-cart
	.kadence-svg-iconset.svg-baseline {
	display: none !important;
}
.post-more-link {
	font-weight: normal !important;
	font-size: 16px !important;
	color: #000 !important;
}
a.post-more-link .kadence-svg-iconset {
	margin: 0 !important;
}
.post-more-link .kadence-svg-icon {
	visibility: hidden;
	width: 0 !important;
}
.woocommerce .products.align-buttons-bottom li.product .product-action-wrap a,
a.wp-block-button__link.add_to_cart_button {
	margin-top: auto !important;
	padding-top: 0.7em !important;
	font-weight: 400 !important;
	font-family: "Anek Latin", sans-serif !important;
	font-size: 16px !important;
	line-height: 1 !important;
	text-transform: none !important;
	color: #000;
}

.post-more-link::after,
li.product .product-action-wrap a:after,
a.wp-block-button__link.add_to_cart_button::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: currentColor;
	mask: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.61677 0.565719C8.23763 1.94486 5.72485 1.94599 4.34458 0.565719L3.7789 3.36537e-05L2.64753 1.1314L3.21321 1.69709C4.21674 2.70062 5.59814 3.20181 6.98011 3.20238L0.000118871 10.1824L1.13149 11.3137L8.11148 4.33375C8.11205 5.71572 8.61324 7.09712 9.61677 8.10065L10.1825 8.66633L11.3138 7.53496L10.7481 6.96928C9.36843 5.58957 9.369 3.07623 10.7481 1.69709L11.3138 1.1314L10.1825 3.39909e-05L9.61677 0.565719Z" fill="black"/></svg>')
		no-repeat center;
	-webkit-mask: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.61677 0.565719C8.23763 1.94486 5.72485 1.94599 4.34458 0.565719L3.7789 3.36537e-05L2.64753 1.1314L3.21321 1.69709C4.21674 2.70062 5.59814 3.20181 6.98011 3.20238L0.000118871 10.1824L1.13149 11.3137L8.11148 4.33375C8.11205 5.71572 8.61324 7.09712 9.61677 8.10065L10.1825 8.66633L11.3138 7.53496L10.7481 6.96928C9.36843 5.58957 9.369 3.07623 10.7481 1.69709L11.3138 1.1314L10.1825 3.39909e-05L9.61677 0.565719Z" fill="black"/></svg>')
		no-repeat center;
	vertical-align: middle;
	margin-left: 8px;

	transition:
		transform 0.3s ease,
		background-color 0.3s ease,
		margin-left 0.3s ease;
}

li.product .product-action-wrap a:hover,
a.post-more-link:hover,
a.wp-block-button__link.add_to_cart_button:hover {
	color: #3347ff !important;
}
.post-more-link:hover::after,
.woocommerce
	.products.align-buttons-bottom
	li.product
	.product-action-wrap
	a:hover:after,
a.wp-block-button__link.add_to_cart_button:hover::after,
li.product .product-action-wrap a:hover:after {
	transform: rotate(45deg);
}
/* =============================================================================
   LAYOUT & CONTAINER
   ============================================================================= */
.wp-site-blocks .entry-hero-container-inner {
	background: #2d3748 !important;
}
.wp-site-blocks .entry-hero-container-inner h1 {
	color: #fff;
}
.main_container,
footer.site-footer {
	max-width: 1280px !important;
	margin: 0 auto !important;
	padding: 0 var(--spacing-md);
}

#wrapper {
	position: relative;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}
.content-area {
	margin: 30px 0 !important;
}
@media (min-width: 768px) {
	.content-area {
		margin: 40px 0 !important;
	}
}
/* =============================================================================
  COMPONENTS
   ============================================================================= */

/* Buttons */
.main_btn,
.price_slider_amount button,
.contact-form-submit-btn{
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	color: var(--color-white);
	background: var(--color-primary);
	border-radius: 4px;
	border: 1px solid var(--color-primary);
	transition: var(--transition-base);
	cursor: pointer;
}

.main_btn:hover,
.price_slider_amount button:hover,
.contact-form-submit-btn:hover {
	background: var(--color-secondary) !important;
	border-color: var(--color-secondary);
	color: var(--color-white);
}

.read-more-button,
.more-link-wrap a {
	display: inline-flex;
	background: transparent;
	color: #2d3748;
	padding: 0;
	font-size: 16px;
	border: none;
	align-items: center;
	gap: 0.5rem;
	text-transform: none !important;
	font-weight: 500 !important;
	font-size: 16px !important;
}
.more-link-wrap a {
	gap: 0rem !important;
}
.read-more-button svg {
	width: 1em;
	height: 1rem;
}

.see-more-button:hover {
	color: var(--color-secondary-light);
}
.product_info_card h4 {
	font-size: 18px;
}

.product_info_card h5 {
	margin-bottom: 0.5rem;
	font-weight: 400;
	font-size: 18px;
	color: #3f3f3f;
	margin-bottom: 0.75rem;
}
.product_info_card a {
	font-size: 16px;
}

/* faq style  */

.faq-section {
	max-width: 1024px;
	margin: 0 auto;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.faq-accordion .wp-block-accordion-heading__toggle {
	padding: 0 !important;
	line-height: 1.1 !important;
}

.faq-accordion .faq-accordion-item .wp-block-accordion-heading__toggle:hover,
.faq-accordion .faq-accordion-item .wp-block-accordion-heading__toggle:focus {
	background-color: transparent !important;
	color: #000;
	box-shadow: none;
	text-decoration: none !important;
}
.faq-accordion
	.wp-block-accordion-heading__toggle:hover
	.wp-block-accordion-heading__toggle-title {
	text-decoration: none !important;
	line-height: 1.1 !important;
}
.faq-accordion h3 {
	margin: 0 !important;
}

/* 1. Target the main item wrapper */
.faq-accordion-item {
	display: block;
	overflow: hidden;
	padding: 1rem;
	border-radius: 24px;
	border: 1px solid #d5d8dc !important;
}

.faq-section-title {
	font-size: 28px !important;
	line-height: 1.2 !important;
}

@media (min-width: 768px) {
	.faq-section-title {
		font-size: 36px !important;
		line-height: 1.2 !important;
	}
	.faq-accordion-item {
		padding: 1.5rem;
	}
}
/* 2. Target the actual hidden panel */
.faq-accordion-item .wp-block-accordion-panel {
	display: block !important; /* Forces the browser to keep it in the DOM during collapse */
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	padding-top: 0;
	padding-bottom: 0;
	/* This dual-transition handles both opening AND closing flawlessly */
	transition:
		max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
		opacity 0.3s ease,
		visibility 0.4s ease,
		padding 0.4s ease;
}

/* 3. Styles applied when the accordion is fully OPEN */
.faq-accordion-item.is-open .wp-block-accordion-panel {
	max-height: 1000px; /* An arbitrarily large number that accommodates your text */
	opacity: 1;
	visibility: visible;
	/* Adjust these to match whatever spacing you want inside the open panel */
	padding-top: 12px;
}

/* 4. Smooth spin/rotation to the +/- icon toggle */
.faq-accordion-item .wp-block-accordion-heading__toggle-icon {
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 4. Smooth spin/rotation to the +/- icon toggle */
.faq-accordion-item .wp-block-accordion-heading__toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	/* Forces the rotation to happen perfectly from the middle of the icon */
	transform-origin: center center;

	/* Keeps its physical layout properties identical in both states */
	width: 28px;
	height: 28px;
	font-size: 28px;

	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-accordion-item.is-open .wp-block-accordion-heading__toggle-icon {
	/* Spins exactly in place without drifting */
	transform: rotate(45deg);
}
/* common style and gap  */

/* =============================================================================
   HEADER / TOP HEADER
   ============================================================================= */

/* product active menu  */

.single-product .current_page_parent a,.single-post  .current_page_parent a {
    color: #3347FF !important;
}s

.header-sidebar {
	display: flex;
	align-items: center;
	gap: 3rem;
}
.support-contact-wrap {
	display: none;
}
.support-contact-time {
	font-size: 12px;
}
.header-sidebar .widget.widget_product_search {
	flex-grow: 1 !important;
}

/* header search  */
.header-sidebar .widget {
	margin: 0 !important;
}
.search-form {
	position: relative;
}
.header-sidebar .widget .search-form input[type="search"],
.search-form input.search-field {
	padding-right: 60px;
	width: 100%;
	border-radius: 50px;
	padding: 12px;
}
/* .kadence-svg-iconset svg {
	color: #d8d2d2;
} */
.search-form .search-submit[type="submit"] {
	border-radius: 50% !important;
	flex-shrink: 0 !important;
	top: 0px !important;
	right: 0px !important;
	bottom: 5px !important;
	position: absolute !important;
	z-index: 2 !important;
	width: 45px !important;
	height: 45px !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	cursor: pointer !important;
	animation: searchPulse 2s infinite ease-in-out;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

@keyframes searchPulse {
	0% {
		background-color: #000;
	}
	50% {
		background-color: #0b1569;
	}
	100% {
		background-color: #000;
	}
}

@media (min-width: 1024px) {
	.support-contact-wrap {
		display: flex;
		align-items: center;
		gap: 0.8rem;
	}

	.header-html.inner-link-style-normal {
		width: 100%;
	}
}
.support-contact-wrap a {
	text-decoration: none !important;
}

.header-sidebar .widget {
	margin-bottom: 0;
}

.top-header-wrap {
	background: #3dcd58;
	padding: 6px 0px;
	color: #fff;
}

.custom-top-header {
	display: flex;
	font-size: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}
.custom-top-header svg {
	width: 16px;
	height: 16px;
}

.custom-top-header__feature {
	display: flex;
	gap: 6px;
}

.custom-top-header__divided {
	height: 12px;
	width: 1px;
	background: #fff !important;
}
.site-main-header-wrap {
	padding: 10px 0px;
}

@media (min-width: 768px) {
	.custom-top-header {
		font-size: 14px;
		gap: 10px;
	}
	.custom-top-header svg {
		width: 20px;
		height: 20px;
	}
}

/* page sidebar style  */

/* sidebar widget  */
.widget.woocommerce.widget_product_categories .widget-title {
	position: relative !important;
	border-bottom: none !important;
	background: #f1f6ff !important;
	box-shadow: 0px 4px 4px rgba(118, 114, 0, 0.11) !important;
	display: flex;
	align-items: center;
	font-size: 18px !important;
	font-weight: 500 !important;
	margin: 0 !important;
	padding: 8px !important;
}

.widget.woocommerce.widget_product_categories {
	border-radius: 16px !important;
	overflow: hidden;
}
.widget.woocommerce.widget_product_categories .widget-title::after {
	display: none !important;
}
.widget.woocommerce.widget_product_categories .widget-title::before {
	background-color: #e7eef1;
	background-image: url("../images/icon-product-categories.svg");
	content: "";
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	margin-right: 15px;
	flex-shrink: 0;
	padding: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
}
.woocommerce.widget_product_categories > ul {
	color: #737d8b;
	font-size: 16px !important;
	background: #e8eff3;
	padding: 16px 10px 16px 20px !important;
	display: flex;
	flex-direction: column;
	gap: 4px;
	list-style: none;
	margin: 0;
}

ul.product-categories li.cat-item {
	position: relative !important;
	padding-left: 2rem !important;
}
ul.product-categories li.cat-item a:hover {
	border-bottom: 0 !important;
	text-decoration: none !important;
}
.woocommerce.widget_product_categories > ul li a {
	border-bottom: none !important;
}

ul.product-categories li.cat-item {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

ul.product-categories li.cat-item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	display: block;
}
ul.product-categories li.cat-item.current-cat::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	display: block;
	background-image: url(../images/menu-item-check.svg);
}

/* =============================================================================
   7. HERO SECTION
   ============================================================================= */

.home-essentials-section {
	width: 100%;
	background-color: #ffffff;
	padding: 40px 0;
	box-sizing: border-box;
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
}

.home-essentials-section *,
.home-essentials-section *::before,
.home-essentials-section *::after {
	box-sizing: inherit;
}

/* Connects cleanly with your theme's global main_container sizing framework */
.home-essentials-container {
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
}

/* home hero header  */
.home-hero-header,
.products-section-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 36px;
}

.header-text-col {
	width: 100%;
	max-width: 600px;
}
.header-text-col p {
	max-width: 500px;
}
.hero-main-title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.15;
	color: #011321;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.hero-sub-title,
.section-sub-title {
	font-size: 16px;
	line-height: 1.5;
	color: #4a5568;
	margin: 0;
}

.desktop-action-only {
	display: none;
}

.mobile-action-only {
	display: block;
	width: 100%;
	margin-top: 32px;
}

.header-action-col {
	width: 100%;
}

.action-btn {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	text-align: center;
	padding: 14px 28px;
	border: 1px solid #011321;
	border-radius: 100px;
	color: #011321;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	white-space: nowrap;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.action-btn svg {
	margin-top: 0.2rem;
}
.action-btn:hover {
	background-color: #3347ff;
	border-color: #3347ff;
	color: #ffffff;
}

/* home products grid  */
.home-products-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.product-card-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	text-decoration: none;
	color: inherit;
	outline: none;
}

.product-card-inner {
	position: relative;
	background-color: #e6eeff8c;
	border-radius: 20px; /* Slightly smoother aesthetic contour curve */
	padding: 48px 24px;
	aspect-ratio: 1.1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.product-card-item:hover .product-card-inner {
	transform: translateY(-6px);
}

.product-card-item:hover .product-item-title {
	color: #3347ff;
}

.badge-featured {
	position: absolute;
	top: 16px;
	left: 16px;
	border: 1px solid #cbd5e1;
	padding: 4px 14px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 500;
	color: #64748b;
	background-color: #ffffff;
	letter-spacing: 0.2px;
}

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

.product-thumb-img {
	max-width: 85%;
	max-height: 85%;
	object-fit: contain;
}

/* Meta description line configuration */
.product-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 16px;
	gap: 16px;
}

.product-item-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
	color: #011321;
	transition: color 0.2s ease;
}

.product-item-price {
	font-size: 16px;
	color: #64748b;
	font-weight: 500;
	white-space: nowrap;
}

.no-products-msg {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px;
	color: #64748b;
	border: 1px dashed #cbd5e1;
	border-radius: 16px;
}

/* Breakpoint 1: Small Tablets & Landscape Mobiles */
@media (min-width: 576px) {
	.home-products-grid {
		grid-template-columns: repeat(
			2,
			1fr
		); /* Elevates layout to 2 columns */
	}

	.hero-main-title {
		font-size: 38px;
	}
}

/* Breakpoint 2: Medium Tablets & Mid-sized Displays */
@media (min-width: 768px) {
	.home-essentials-section {
		padding: 60px 0;
	}

	.home-hero-header,
	.products-section-header {
		flex-direction: row; /* Aligns textual profile and actions horizontally */
		justify-content: space-between;
		align-items: flex-end;
		margin-bottom: 48px;
	}

	.desktop-action-only {
		display: block;
		width: auto;
	}

	.mobile-action-only {
		display: none;
	}

	.header-action-col {
		width: auto;
	}

	.action-btn {
		width: auto; /* Drops display lock constraint rules */
	}

	.hero-main-title {
		font-size: 46px;
	}
}

/* Breakpoint 3: Laptops & Traditional Desktop Monitors */
@media (min-width: 992px) {
	.home-products-grid {
		grid-template-columns: repeat(
			3,
			1fr
		); /* Snaps to 3-column template target layout */
		gap: 32px;
	}

	.hero-main-title {
		font-size: 52px;
		letter-spacing: -1px;
	}

	.hero-sub-title {
		font-size: 18px;
	}

	.badge-featured {
		top: 24px;
		left: 24px;
	}
}

/* Breakpoint 4: Large Desktop Systems & Workstations */
@media (min-width: 1200px) {
	.home-essentials-section {
		padding: 80px 0;
	}

	.hero-main-title {
		font-size: 56px;
	}
}

/* =============================================================================
   BROWSE BY CATEGORIES SECTION
   ============================================================================= */
.home-bento-section {
	width: 100%;
	background-color: #ffffff;
	padding: 40px 0;
	box-sizing: border-box;
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
}

.home-bento-section *,
.home-bento-section *::before,
.home-bento-section *::after {
	box-sizing: inherit;
}

.home-bento-container {
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   BENTO HERO HEADER STYLING (Matches Home Hero Layout Style Specs)
   ========================================================================== */
.bento-hero-header,
.blog-hero-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 36px;
}

.bento-text-col {
	width: 100%;
	max-width: 760px;
}

.section-main-title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.15;
	color: #011321;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.bento-sub-title {
	font-size: 16px;
	line-height: 1.5;
	color: #4a5568;
	margin: 0;
}

/* ==========================================================================
   CSS GRID BENTO BLUEPRINT (Mobile First Grid Stack)
   ========================================================================== */
.bento-display-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

/* Base Card Configurations */
.bento-card {
	display: flex;
	flex-direction: column;
	background-color: #e6eeff8c;
	border-radius: 24px;
	padding: 20px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	position: relative;
	outline: none;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 768px) {
	.bento-card {
		padding: 32px;
	}
}

.bento-card:hover {
	transform: translateY(-4px);
}

.bento-card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 2;
	width: 100%;
}

.bento-card-title {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
	color: #011321;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.bento-card-subtitle {
	font-size: 15px;
	line-height: 1.45;
	color: #4a5568;
	max-width: 280px;
	margin: 0 0 24px 0;
}

/* Pill UI Elements */
.bento-action-pill {
	display: inline-block;
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 12px 24px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 500;
	color: #011321;
	transition: all 0.25s ease;
}

.bento-card:hover .bento-action-pill {
	background-color: #011321;
	border-color: #011321;
	color: #ffffff;
}

/* Image Containment Systems */
.bento-image-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.bento-thumb-img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

/* Small Cards Specific Override */
.bento-card-small {
	justify-content: space-between;
	align-items: center;
	aspect-ratio: 1 / 1;
	padding: 16px;
}

.bento-card-small .bento-image-wrapper {
	height: 100%;
}

.bento-card-small .bento-thumb-img {
	max-height: 100%;
}

.center-pill {
	align-items: center;
	width: 100%;
}

.bento-card-three .bento-image-wrapper,
.bento-card-four .bento-image-wrapper {
	aspect-ratio: 3/1;
}

.bento-card-three h3, 
.bento-card-four h3 {
	font-size: 20px;
	margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT DESKTOP MATRICES (576px, 768px, 992px, 1200px)
   ========================================================================== */
.bento-display-grid a {
	gap: 1rem;
}

@media (min-width: 576px) {
	.section-main-title {
		font-size: 38px;
	}
}

@media (min-width: 768px) {
	.bento-hero-header,
	.blog-hero-header {
		margin-bottom: 48px;
	}

	.section-main-title {
		font-size: 46px;
	}

	.bento-display-grid {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(2, minmax(220px, auto));
		gap: 20px;
	}

	/* Card 1: Spans left two columns completely down both rows */
	.bento-card-all {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
		justify-content: space-between;
		min-height: 460px;
	}

	/* Card 2: Top Right side row spanning remaining two columns */
	.bento-card-two {
		grid-column: 3 / 5;
		grid-row: 1 / 2;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.bento-card-two .bento-card-content {
		width: 55%;
	}

	.bento-card-two .bento-image-wrapper {
		width: 45%;
		height: 100%;
	}
/* Cards 3 and 4: Fluid content protection matrix updates */
	.bento-card-three {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
	}

	.bento-card-four {
		grid-column: 4 / 5;
		grid-row: 2 / 3;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
	}

	.bento-card-three .bento-card-content,
	.bento-card-four .bento-card-content {
		width: 100%;
		flex-grow: 0;
	}

	.bento-card-three .bento-image-wrapper,
	.bento-card-four .bento-image-wrapper {
		width: 100%;
		flex-grow: 1;
		height: auto;
		aspect-ratio: auto;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		overflow: hidden; /* Keeps the inner image corner radius clean */
	}

	.bento-card-three .bento-thumb-img,
	.bento-card-four .bento-thumb-img {
		width: 100%;            /* Stretches the image container completely to both edges */
		object-fit: cover;      /* Crops the images cleanly to fill the area without stretching lines */
		object-position: center;/* Centers the visual graphics inside the crop zone */
		border-radius: 12px;    /* Adds a neat corner radius to the graphics */
	}

@media (min-width: 992px) {
	.section-main-title {
		font-size: 52px;
		letter-spacing: -1px;
	}

	.bento-sub-title {
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.home-bento-section {
		padding: 60px 0;
	}
	.bento-display-grid {
		gap: 24px;
	}
	.section-main-title {
		font-size: 56px;
	}
}
/* =============================================================================
   LATEST PRODUCTS SECTION
   ============================================================================= */
.home-products-grid-section {
	padding-top: 30px;
	padding-bottom: 40px;
}
.products-showcase-grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	.home-products-grid-section {
		padding-top: 30px;
		padding-bottom: 60px;
	}
	.products-showcase-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.home-products-grid-section {
		padding-top: 40px;
		padding-bottom: 80px;
	}
	.products-showcase-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   PRODUCTION BLOG STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   GLOBAL POST ARCHIVE & LAYOUTS
   -------------------------------------------------------------------------- */
.post-archive,
.kadence-posts-list {
	gap: 1.5rem !important;
}

li.entry-list-item {
	border-radius: 8px;
	overflow: hidden;
}

.post-thumbnail-inner {
	border-radius: 8px 8px 0 0;
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Blog section - Archive
   -------------------------------------------------------------------------- */

/* blog page  */

.blog .entry.loop-entry,
.category .entry.loop-entry,
.search .entry.loop-entry,
.entry-related article.entry {
	border-radius: 24px !important;
	background-color: #fff;
/* 	box-shadow: 0 1px 2px #00000014 !important; */
	border: 1px solid #00000014 !important;
}

.blog .entry-content-wrap,
.category .entry-content-wrap,
.search .entry-content-wrap {
	padding: 16px !important;
}
.entry-related article.entry .entry-header {
	padding: 8px !important;
	margin-bottom: 0 !important;
}
.blog a.post-thumbnail,
.category a.post-thumbnail,
.search a.post-thumbnail {
	border-radius: 16px 16px 0 0;
}
.blog footer.entry-footer,
.category footer.entry-footer,
.search footer.entry-footer {
	margin: 0 !important;
}

.blog footer.entry-footer .post-more-link,
.category footer.entry-footer .post-more-link,
.search footer.entry-footer .post-more-link {
	text-transform: none !important;
	color: #223174;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.single-post .content-area {
    margin: 30px 9px !important;
}
.category-links {
	display: inline-block;
	background: #000 !important;
	font-size: 12px;
	line-height: 1.15;
	color: #fff !important;
	padding: 5px 10px !important;
	border-radius: 100px;
	transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.category-links a {
	color: #fff;
	text-decoration: none !important;
}
.category-links a:hover {
	text-decoration: none;
	color: #fff;
}
.category-links:hover {
	background: #3347ff;
}
span.posted-on,
.post-date {
	font-size: 12x !important;
	color: #000000ad !important;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}
h1.page-title.post-home-title.archive-title {
	text-transform: uppercase;
}
.entry-hero.post-archive-hero-section .entry-header {
	min-height: 0 !important;
	padding-top: 120px !important;
	margin-bottom: 40px !important;
}
/* blog page subscribe  */
.specturm-subscribe-button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14px 24px;
	gap: 10px;
	background: #3347ff;
	border-radius: 48px !important;
	margin: 0 !important;
	width: 100%;
}
.specturm-subscribe-button:hover {
	background-color: #000;
}
.specturm-input-field.subscribe-field {
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 153, 246, 0.1);
	box-shadow:
		inset 0px 2px 4px rgba(255, 255, 255, 0.25),
		inset 0px -5px 7px rgba(255, 255, 255, 0.25);
	border-radius: 150px !important;
}
/* --------------------------------------------------------------------------
   CUSTOM BLOG SECTION & LOOP GRID
   -------------------------------------------------------------------------- */
button.ff-btn.ff-btn-submit,
.quotation-button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}
.specturm-subscribe-button {
	position: absolute;
	top: 50%;
	right: 4px;
	max-width: 120px;
	line-height: 1em !important;
	transform: translateY(-50%);
}
.custom-blog-header {
	background-image: url("./image/breadcrumb-cover.webp") !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center;
	display: flex;
	align-items: end;
	color: #fff;
	justify-content: start;
	position: relative;
	margin-bottom: 50px;
	min-height: 60vh;
	margin: 20px;
	border-radius: 16px;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.custom-blog-header {
		margin-bottom: 80px;
		min-height: 500px;
	}
}

.custom-blog-header h1 {
	color: #fff;
	font-weight: normal;
	font-family: "Anek Latin";
	font-size: 36px;
	font-style: normal;
	line-height: 1em !important;
}
@media (min-width: 768px) {
	.custom-blog-header h1 {
		font-size: 48px;
	}
}
.custom-blog-header p {
	color: #f4f9fd;
	font-family: "Inter";
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	margin: auto;
}
.custom-blog-header::before {
	content: "";
	height: 30%;
	position: absolute;
	width: 100%;
	background: linear-gradient(180deg, #333333 0%, #33333300 100%);
	z-index: 1;
	top: 0;
}
.custom-blog-header::after {
	content: "";
	height: 70%;
	position: absolute;
	width: 100%;
	background: linear-gradient(
		180deg,
		#00000000 20%,
		rgba(0, 0, 0, 0.897) 100%
	);
	z-index: 1;
	bottom: 0;
}
.custom-blog-header .site-container {
	display: flex;
	justify-content: start;
	padding-bottom: 40px;
	width: 100%;
	position: relative;
	z-index: 2;
}
.custom-blog-header .site-container .blog-page-title {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.blog-page-second-title-wrap p {
	margin-bottom: 2rem;
}
@media (min-width: 1024px) {
	.custom-blog-header .site-container .blog-page-title {
		gap: 40px;
	}
	.custom-blog-header h1 {
		font-size: 80px;
	}
	.custom-blog-header .site-container {
		padding-bottom: 100px;
	}
}

/* latest blog post grid   */
/* feature blog post  */
.latest-post-card {
	display: grid;
	margin-bottom: 2rem;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #00000014 !important;
}

.latest-post-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1rem;
	order: 2;
}
@media (min-width: 768px) {
	.latest-post-card {
		grid-template-columns: 1fr 1fr;
		margin-bottom: 4rem;
	}
	.latest-post-content {
		order: 1;
		padding: 2rem;
	}
	.latest-post-thumbnail {
		order: 2;
	}
	
	.single-post .content-area {
    margin: 30px 20px !important;
}
}

.latest-post-content a.post-more-link {
	text-transform: none !important;
}

.latest-post-card .post-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.latest-post-card .post-title {
	color: #2e2e2f;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3em;
}
@media (min-width: 768px) {
	.latest-post-card .post-title {
		font-size: 36px;
	}
}
@media (min-width: 1024px) {
	.latest-post-card .post-title {
		font-size: 44px;
	}
}
.latest-post-card .post-excerpt {
	font-size: 18px;
	color: #00000096;
}
.latest-post-card a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.blog .entry-content-wrap .kadence-svg-iconset svg {
	transition: all 0.2s ease;
	color: #2e2e2f;
}
.post-more-link:hover .entry-content-wrap .kadence-svg-iconset svg {
	transform: translateX(5px);
}
/* custom blog header two  */
.blog-page-second-title-wrap {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: 30px 0;
}
.blog-page-second-title-wrap p {
	color: #151515;
}

@media (min-width: 768px) {
	.blog-page-second-title-wrap {
		padding: 40px 0;
	}
}
@media (min-width: 1024px) {
	.blog-page-second-title-wrap {
		padding: 60px 0;
	}
}

.blog-page-second-title-wrap h2 {
	line-height: 1em;
	font-size: 36px;
	font-weight: 400;
	font-family: "'Anek Latin'";
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.blog-page-second-title-wrap h2 {
		font-size: 42px;
		margin-bottom:2rem;
	}
}
@media (min-width: 1024px) {
	.blog-page-second-title-wrap h2 {
		font-size: 62px;
	}
}

/* subscrible form field  */
.subscribe-form-container {
	max-width: 450px;
	margin: 0 auto;
}

.subscribe-form-container .ff-el-group {
	margin-bottom: 0 !important;
}

.subscribe-form-container .fluentform .ff-el-group {
	margin-bottom: 0;
}
.subscribe-form-container .frm-fluent-form .ff-t-container {
	display: flex;
	gap: 15px;
	width: 100%;
	margin: 0 auto;
}
.subscribe-form-container .fluentform * {
	width: 100%;
}
.subscribe-form-container .ff-el-form-control {
	font-family: "Inter";
	padding: 14px 28px !important;
	width: 100%;
}
.subscribe-form-container .ff-t-cell.ff-t-column-1 {
	position: relative;
}

.subscribe-form-container {
	position: relative !important;
}

/* .entry-content-wrap {
	padding: 2rem 0px !important;
} */

.grid-cols {
	gap: 1.5rem !important;
}
.entry-summary {
	color: #00000096 !important;
}

.loop-entry .entry-summary p,
.loop-entry .entry-header .entry-meta {
	margin-top: 1rem !important;
}
.entry.loop-entry {
	box-shadow: none !important;
	overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   SIDEBAR & WIDGET CONFIGURATIONS
   -------------------------------------------------------------------------- */
.sidebar-inner-wrap section {
	background-color: #fff;
	border-radius: 4px;
}

.widget-area .widget-title {
	margin-bottom: 1.5rem !important;
}

/* Categories Widget (categories-2) */
section#categories-2 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

section#categories-2 li a {
	font-size: 15px;
	padding: 0.5rem;
	text-decoration: none;
	border-radius: 4px !important;
	border: 1px solid #747474cb;
}

section#categories-2 li a:hover {
	border: 1px solid #3dcb57;
	background-color: #3dcb57;
	color: #fff;
}

/* Latest Posts With Thumbs Widget */
.latest-post-card .post-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.category-links {
	display: inline-block;
	background: #000 !important;

	line-height: 1.15;
	color: #fff !important;
	padding: 5px 10px !important;
	border-radius: 100px;
	transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.category-links a {
	color: #fff !important;
	text-decoration: none !important;
	font-size: 12px !important;
	font-weight: 500 !important;
}
span.posted-on,
.post-date {
	font-size: 12x !important;
	color: #000000ad !important;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}
.latest-thumb-widget {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.latest-thumb-item {
	display: grid;
	grid-template-columns: 3.5fr 8.5fr;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 16px;
}
.latest-thumb-item a {
	text-decoration: none;
	color: #011321;
}
.latest-thumb-item .thumbnail {
	display: block;
	overflow: hidden !important;
}

.latest-thumb-item .thumbnail img {
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.latest-thumb-item h4 {
	font-size: 16px;
}

.latest-thumb-item a {
	text-decoration: none !important;
}

.latest-thumb-item p {
	margin: 0px 0px 5px 0px !important;
}

/* --------------------------------------------------------------------------
   SINGLE PAGE STRUCTURAL BLUEPRINTS
   -------------------------------------------------------------------------- */
/* ------------ single page -------------- */
.wp-site-blocks .post-thumbnail {
	margin-bottom: 1.5rem !important;
}
.single-post .entry-content-wrap {
	padding: 0 !important;
}

.widget_categories ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.widget_categories ul li a {
	display: inline-flex;
	border: 1px solid rgba(34, 49, 116, 0.1);
	padding: 8px;
	border-radius: 4px;
	text-decoration: none !important;
	font-size: 16px;
	line-height: 1.1em;
}
.widget_categories ul li a:hover {
	background-color: #3347ff;
	color: #fff !important;
}
/* =============================================================================
   12. QUICK FEATURES SECTION
   ============================================================================= */
.quick_feature_box-wrap {
	display: grid;
	gap: 0;
	border-bottom: 1px solid #f0f0f045;
	padding: 0;
	border-radius: 8px 8px 0px 0px;
}

.quick_feature_box {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 0px;
	text-align: left;
}

.quick_feature_box-icon svg {
	width: 48px;
	height: 48px;
	color: #fff;
}

.quick_feature_box-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.quick_feature_box-info h4 {
	font-size: 18px;
	font-weight: var(--font-weight-semibold);
	color: #fff;
}

.quick_feature_box-info p {
	font-size: 14px;
	color: #ffffffcc;
}

/* =============================================================================
   13. FOOTER SECTION
   ============================================================================= */

/* ---------------------------------- footer cta section ----------------------- */

.footer-cta p {
	max-width: 450px;
	margin: 0 auto;
}

.site-middle-footer-wrap .site-footer-row-container-inner {
	background-size: 95% !important;
}

.site-footer-row.site-footer-row-columns-1 {
	display: flex;
	justify-content: center;
	background: #e6eeff;
	padding: 1.5rem;
	border-radius: 32px;
	margin-bottom: 2rem;
}

.footer-cta h2 {
	font-size: 24px !important;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.1;
	margin-bottom: 1.1rem;
}

.sp_crop-subscribe-form .wpf_has_custom_css.ff-btn-submit,
.contact-form-wrap button.ff-btn.ff-btn-submit {
	padding: 15px 1.5rem !important;
	border-radius: 40px !important;
}

.ff-t-container.ff-column-container.ff_columns_total_2.sp_crop-subscribe-form {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

.contact-form-wrap button.ff-btn.ff-btn-submit svg {
	margin-top: 3px;
}

@media (min-width: 768px) {
	.site-footer-row.site-footer-row-columns-1 {
		padding: 3rem;
	}
	.footer-cta h2 {
		font-size: 42px !important;
		max-width: 700px;
		margin: 0 auto;
		line-height: 1.2;
		margin-bottom: 1.25rem;
	}
}

/* ------------------------------ Footer main ---------------------------- */
.site-middle-footer-inner-wrap .widget-area .widget-title {
	text-transform: none !important;
}
.site-top-footer-wrap.site-footer-row-container .site-container {
	padding: 0 !important;
}
.site-middle-footer-wrap.site-footer-row-container {
	border-radius: 32px;
	overflow: hidden;
}

/* footer social icons */
.footer-socials {
	display: flex;
	align-items: center;
	gap: 11px;
}
.footer-socials svg {
	display: flex;
}
.footer-socials .social-button {
	height: 44px;
	width: 44px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: inset 0px -3px 6px rgba(255, 255, 255, 0.25);
	padding: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}
.footer-socials .social-button:hover {
	transform: translateY(-10px);
}

.footer-socials .social-button svg {
	color: #fff !important;
}

@media (min-width: 1024px) {
	.site-footer-row.site-footer-row-columns-3 {
		grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) !important;
	}
}

@media (min-width: 1240px) {
	.site-footer .site-middle-footer-inner-wrap {
		padding-bottom: 260px !important;
	}
}

/* =============================================================================
   14. PAGE SPECIFIC STYLES
   ============================================================================= */

.contact_info {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
	padding-top: 40px;
	padding-bottom: 20px;
}
.contact_info_card {
	padding: 1rem;
	background: #e8eff3;
	border-radius: 16px;
}

.contact-info-card-head {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
	align-items: flex-start;
}
@media (min-width: 768px) {
	.contact_info_card {
		padding: 1.5rem;
	}
	.contact-info-card-head {
		flex-direction: row;
	}
}

.contact-info-card-head h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}
.contact-info-card-head p {
	font-size: 16px;
}
.contact_info .icon {
	background: #fff;
	padding: 0.5rem;
	border-radius: 8px;
}

.contact_info .contact-info-link,
.contact_info .contact-info-address-text {
	padding-left: 0rem;
	font-size: 16px;
	font-weight: 600;
	color: #0000009c;
	transition: all 0.2s ease;
}
@media (min-width: 768px) {
	.contact_info .contact-info-link,
	.contact_info .contact-info-address-text {
		padding-left: 4rem;
		font-size: 18px;
	}
}

.contact_info .contact-info-link:hover {
	color: var(--color-primary);
}
.contact-form-wrap h2,
.contact-form-wrap p {
	color: #fff;
}
button.ff-btn.ff-btn-submit.ff-btn-md.fluentform-custom-submit:hover{
	background:#fff !important;
	color:#000 !important
}


.google_map h2,
.google_map p {
	color: #000;
}
.google_map svg {
	color: #000 !important;
}
.contact-form-wrap,
.google_map {
	background: #000;
	padding: 1.5rem;
	border-radius: 24px;
	color: #fff;
}
.google_map {
	background: #e6eeff;
	padding: 1.5rem;
	border-radius: 24px;
}
.contact_map {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	border-radius: 24px;
}

.product_info_card {
	padding: 1rem;
	background: #fff;
}
.map-section {
	background: var(--color-white);
	padding: 50px 0px;
}

.map-section .message_form h5,
.map-section .google_map h5 {
	border-bottom: 1px solid var(--color-border);
	margin-bottom: var(--spacing-md);
	font-size: 22px;
}

.google_map iframe {
	width: 100%;
	border-radius: 8px;
}
@media (min-width: 768px) {
	.map-section {
		background: var(--color-white);
		padding: 60px 0px;
	}
	.google_map iframe {
		height: calc(100% - 65px);
	}
}

.contact_header,
header.entry-header.post-archive-title,
.entry-hero-container-inner .entry-header {
	padding: var(--spacing-md);
	background: var(--color-secondary);
	border-top: 2px solid var(--color-secondary-light);
	min-height: auto !important;
}
.entry-hero {
	border-top: 2px solid var(--color-secondary-light);
}
header.entry-header.post-archive-title,
.entry-hero-container-inner .entry-header {
	border-top: none !important;
}
header.entry-header.post-archive-title {
	padding: none;
}
.contact_header h1,
.archive-title {
	color: var(--color-white);
	font-weight: var(--font-weight-normal);
	text-align: center;
}

.ff-el-group.ff-text-left.ff_submit_btn_wrapper {
	margin-bottom: 0 !important;
}

/* Statistics Section */
.statistics-section {
	background: var(--color-white);
}

.statistics_info h3 {
	font-weight: var(--font-weight-normal);
	font-size: 28px;
	line-height: 1.4;
}

.statistics {
	display: grid;
	gap: var(--spacing-md);
	grid-template-columns: 1fr;
	align-items: center;
	padding: var(--spacing-xl) 0;
}

.stat {
	margin: var(--spacing-lg) 0;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.stat {
		gap: 1rem;
	}
}

.stat p {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.stat #customers,
.stat #satisfyRate,
.stat #partners {
	width: 100%;
	display: block;
	font-size: 40px;
	font-weight: var(--font-weight-medium);
	line-height: 1;
}

/* Policy Pages */
.entry.single-entry {
	box-shadow: none !important;
}

/* =============================================================================
   15. WOOCOMMERCE STYLES
   ============================================================================= */

/* WooCommerce Shop Page */
.woocommerce #reviews #comments ol.commentlist li img.avatar {
	width: 50px !important;
	height: 50px !important;
}
form#commentform input, form#commentform textarea {
    border-radius: 8px !important;
    /* width: 100%; */
}
.comment-form-author input, .comment-form-email input{
	width:100%;
	    padding: 12px 10px !important;
	
}
 
/* woocommerce button style  */
.woocommerce ul.products.products-list-view li.product {
	gap: 1rem !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1/1 !important;
	object-fit: contain !important;
}

.woocommerce-shop #wrapper #inner-wrap {
	font-family: var(--font-family-primary);
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: var(--font-weight-medium);
}

.woocommerce-shop ul.products .product-details .product-excerpt p {
	font-size: 16px !important;
}

.woocommerce-shop
	ul.products:not(.woo-archive-btn-button)
	li:where(:not(.woo-archive-btn-button))
	.button:not(.kb-button) {
	font-size: 16px !important;
	font-family: "Anek Latin", sans-serif !important;
}

.woocommerce-shop nav.woocommerce-pagination ul li span.current {
	background: var(--color-primary-hover) !important;
	border: 2px solid var(--color-primary-hover) !important;
}

.woocommerce-shop nav.woocommerce-pagination ul li a:hover,
.woocommerce-shop nav.woocommerce-pagination ul li a:focus {
	border: 2px solid var(--color-primary-hover) !important;
}

/* WooCommerce Single Product Page */

.product-inquiry-container {
	margin-bottom: 1rem;
}

/* style for woocommerce and single product page from spectrummep site  */

/* products page and sections style */

.woocommerce ul.products li.product a img {
	border-radius: 16px !important;
}
.woocommerce ul.products li.product .entry-content-wrap {
	padding: 1rem 0px 0px 0px !important;
	margin: 0 !important;
	background-color: #f1f6ff !important;
}
.woocommerce ul.products li.product,
.wc-block-grid__product.entry.loop-entry {
	padding: 1rem !important;
	border-radius: 28px !important;
	background-color: #f1f6ff !important;
}
.woocommerce .products.align-buttons-bottom li.product .product-action-wrap a {
	margin-top: auto !important;
	padding-top: 0.7em !important;
	font-weight: 500 !important;

	font-size: 16px !important;
	line-height: 1 !important;
	text-transform: none !important;
	color: #000;
}
.woocommerce ul.products li.product a.woocommerce-loop-image-link {
	border-radius: 16px !important;
}
.woocommerce
	.products.align-buttons-bottom
	li.product
	.product-action-wrap
	a
	.kadence-svg-iconset.svg-baseline {
	display: none !important;
}
.product-card-excerpt {
	font-size: 18px;
	line-height: 1.5;
	color: #00000080;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
h2.woocommerce-loop-product__title:hover {
	color: #3347ff !important;
}
#review_form input#submit {
    border-radius: 40px !important;
}
/* sidebar widget  */
.post-type-archive-product
	.sidebar-inner-wrap
	section#woocommerce_product_categories-2 {
	border-radius: 16px !important;
	overflow: hidden;
}

.post-type-archive-product
	.sidebar-inner-wrap
	.widget.woocommerce.widget_product_categories
	.widget-title {
	border-bottom: none !important;
	background: #f5f5f5 !important;
	box-shadow: 0px 4px 4px rgba(118, 114, 0, 0.11) !important;
	display: flex;
	align-items: center;
	font-size: 18px !important;
	font-weight: 500 !important;
	margin: 0 !important;
	padding: 8px !important;
}

.post-type-archive-product
	.sidebar-inner-wrap
	.widget.woocommerce.widget_product_categories
	.widget-title::after {
	display: none !important;
}

.post-type-archive-product
	.sidebar-inner-wrap
	.widget.woocommerce.widget_product_categories
	.widget-title::before {
	background-color: #e7eef1;
	background-image: url("../images/icon-product-categories.svg");
	content: "";
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	margin-right: 15px;
	flex-shrink: 0;
	padding: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
}
.post-type-archive-product
	.sidebar-inner-wrap
	ul.product-categories
	li.cat-item {
	position: relative !important;
	padding-left: 2rem !important;
}
.post-type-archive-product
	.sidebar-inner-wrap
	ul.product-categories
	li.cat-item
	a:hover {
	border-bottom: 0 !important;
	text-decoration: none !important;
}
.post-type-archive-product
	.sidebar-inner-wrap
	.woocommerce.widget_product_categories
	> ul
	li
	a {
	border-bottom: none !important;
}

.post-type-archive-product
	.sidebar-inner-wrap
	ul.product-categories
	li.cat-item {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

ul.product-categories li.cat-item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	display: block;
	background-image: url(../images/menu-item-circle.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
ul.product-categories li.cat-item.current-cat::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	display: block;
	background-image: url(../images/menu-item-check.svg);
}
/* box shadow  */
.woocommerce-page .entry {
	box-shadow: none !important;
}
.woocommerce div.product div.images img {
	width: 100% !important;
}
.products .type-product {
	background: #fff !important;
}

.product-details.content-bg.entry-content-wrap {
	background: #fff !important;
}

/* image switcher list  */
.woocommerce-product-gallery__image.flex-active-slide a img {
	border-radius: 16px !important;
}

ol.flex-control-nav.flex-control-thumbs li:first-child {
	border-radius: 12px 0 0 12px !important;
	overflow: hidden;
}
ol.flex-control-nav.flex-control-thumbs li:last-child {
	border-radius: 0 12px 12px 0px !important;
	overflow: hidden;
}
ol.flex-control-nav.flex-control-thumbs li img {
	border-radius: 12px !important;
	overflow: hidden !important;
}

/* woocommerce specification style  */

/* Container Wrapper styling */
.spectrum-product-spec-list {
	width: 100%;
	margin-top: 20px;
}

/* Individual Flex Rows with Top & Bottom Border styling */
.spectrum-spec-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    /* Prevents double-border overlapping lines between adjacent rows */
    margin-top: -1px;
}
.spectrum-spec-row:first-child {
    border-top: none;
}

.spectrum-spec-row:last-child {
    border-bottom: none;
}

/* Clear left alignment and formatting for the technical parameter key */
.spectrum-spec-title {
	flex: 0 0 30%; /* Fixed desktop width allocation for titles */
	font-weight: 600;
	color: #0f172a;
	padding-right: 15px;
}

/* Formatting for the corresponding specifications value output */
.spectrum-spec-value {
	flex: 1; /* Automatically consumes remaining horizontal space */
	color: #475569;
}

/* Mobile Responsive Media Query */
@media (max-width: 576px) {
	.spectrum-spec-row {
		flex-direction: column;
		align-items: flex-start; /* Aligns both elements crisp-left */
		padding: 12px 0;
	}

	.spectrum-spec-title {
		flex: 0 0 auto;
		width: 100%;
		margin-bottom: 4px; /* Adds tiny separation spacing above value */
		padding-right: 0;
	}

	.spectrum-spec-value {
		width: 100%;
	}
}

/* Style for the Modal of Request for quotation modal */
/* --- Inquiry Modal Styling --- */
.inquiry-modal {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.inquiry-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.inquiry-modal-content {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	width: 90%;
	max-width: 500px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	animation: owlSlideDown 0.3s ease-out;
}

.close-inquiry {
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 28px;
	cursor: pointer;
	color: #888;
	line-height: 1;
}

.close-inquiry:hover {
	color: #000;
}
.inquiry-header h3 {
	margin: 0 0 5px;
	font-size: 22px;
	color: #222;
}
.inquiry-header p {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

@keyframes owlSlideDown {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.quotation-button,
.get-quote-btn {
	display: inline-flex;
	padding: 20px 28px !important;
	font-size: 18px !important;
	font-weight: 400;
	color: #fff;
	background: #3347ff;
	border-radius: 70px !important;
	line-height: 1 !important;
	transition: all 0.2s ease;
}
.quotation-button:hover {
	background: #000;
}

.ff-message-success {
	border-radius: 12px !important;
}
.woocommerce-tabs.wc-tabs-wrapper {
	background: #f1f6ff;
	padding: 1rem;
	border-radius: 16px;
	box-shadow: 1px 1px 10px #00000005;
}
@media (min-width: 768px) {
	.woocommerce-tabs.wc-tabs-wrapper {
		padding: 2rem;
		margin-bottom: 3rem;
	}
}

/* remove star  */
.product-details .star-rating {
	display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: #ffffff00 !important;
	border: none !important;
	padding-left: 1rem !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: #3347ff29 !important;
	border-radius: 8px 8px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	content: "";
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	display: block;
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:nth-child(1):before {
	background-image: url("../images/details-icon.svg");
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:nth-child(2):before {
	background-image: url("../images/description-icon.svg");
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:nth-child(3):before {
	background-image: url("../images/review-icon.svg");
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 1rem 2.5rem !important;
	font-weight: 500 !important;
	color: #000 !important;
	font-size: 24px !important;
	line-height: 1.1 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	position: absolute;
	content: " ";
	width: 100%;
	bottom: 0;
	left: 0;
	border-bottom: 1px solid var(--global-gray-400);
	z-index: 1;
}

/* tab title remove */
.woocommerce-Tabs-panel.woocommerce-Tabs-panel--description >h2 {
    display: none !important;
}


/* page numbers  */
.woocommerce nav.woocommerce-pagination ul li span.current {
	border-color: #3347ff !important;
	background: #3347ff !important;
	color: #fff !important;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
	border-radius: 50% !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
	border-color: #3347ff !important;
}

/* =============================================================================
   16. MEDIA QUERIES (Mobile-First Approach)
   ============================================================================= */

/* Small Devices (425px and up) */
@media (min-width: 425px) {
	.quick_feature_box-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
	/* Hero Section */
	.hero_section .slider_section h2 {
		font-size: 28px;
	}

	.hero_section .banner_section h3 {
		font-size: 22px;
	}

	.hero_section .banner_section {
		grid-template-columns: repeat(2, 1fr);
	}

	.banner_section .banner_card {
		flex-direction: row;
	}
	.banner_section .banner_image img {
		height: auto;
		object-fit: cover;
	}
	.banner_section .banner_card img {
		transition: 0.2s ease;
	}
	.banner_section .banner_card:hover img {
		transform: scale(1.1);
	}
	/* Popular Categories Section */
	.pupular-category-section .main_container {
		padding: 4rem var(--spacing-sm) !important;
	}

	.popular-category h3 {
		font-size: 16px;
	}

	.popular-categories-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}

	.popular-category-image-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		background: white;
		border-radius: 8px;
		margin-bottom: 0.5rem;
	}

	.popular-category .popular-category-image {
		height: 200px;
		width: 200px;
		padding: 1.5rem;
	}

	/* Product Section */

	.product .main_container {
		padding: 2rem var(--spacing-sm) !important;
	}
	.product .photo {
		width: 200px !important;
	}

	h2.title,
	.title {
		font-size: 28px;
	}

	.product_category {
		display: block;
		width: 32.5%;
	}

	.product_slider {
		width: 67.5%;
	}

	.left_swiper-button-prev:hover,
	.left_swiper-button-next:hover,
	.right_swiper-button-prev:hover,
	.right_swiper-button-next:hover {
		background: var(--color-primary-hover);
	}

	.left_swiper-button-prev,
	.left_swiper2-button-prev {
		position: absolute;
		left: 17.5%;
		bottom: 7px;
	}

	.left_swiper-button-next,
	.left_swiper2-button-next {
		position: absolute;
		left: 25%;
		right: unset;
		bottom: 7px;
	}

	.right_swiper-button-prev {
		position: absolute;
		right: 25%;
		left: unset;
		bottom: 7px;
	}

	.right_swiper-button-next {
		position: absolute;
		right: 17.5%;
		bottom: 7px;
	}

	/* Quick Features Section */
	.quick_feature_box {
		padding: 20px 30px;
	}
	.quick_feature_box-icon svg {
		width: 70px;
		height: 70px;
		color: #fff;
	}
	/* Contact Page */
	.contact-form-wrap .ff-el-group.ff-text-left.ff_submit_btn_wrapper {
		margin-bottom: 0 !important;
	}
	.contact_info {
		grid-template-columns: repeat(2, 1fr);
		padding-top: 60px;
	}

	.contact_info .selector {
		font-size: 19px;
	}

	.contact_info h3 {
		font-size: 24px;
	}

	/* Footer Section */

	.site-footer-row.site-footer-row-columns-5 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 3rem;
	}

	.site-bottom-footer-wrap .site-footer-row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
	/* Hero Section */

	.hero_section .main_container {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.hero_section .slider_section {
		height: auto;
	}
	.hero_section .slider_section h2 {
		font-size: 40px;
	}
	.hero_section .banner_section img {
		height: auto;
	}

	.hero_section .banner_section {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.hero_section .slider_info {
		position: absolute;
		padding: 2rem;
	}

	.hero_section .banner_info {
		padding: 1.5rem 1rem;
	}

	/* Popular Categories Section */
	.popular-categories-grid {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 1rem;
	}

	/* Product Section */
	.product_category {
		width: 24.2%;
	}

	.product_slider {
		width: 75.8%;
	}

	.left_swiper-button-prev,
	.left_swiper2-button-prev {
		left: 13.3%;
	}

	.left_swiper-button-next,
	.left_swiper2-button-next {
		left: 18.8%;
	}

	.right_slider .left_swiper-button-next {
		right: 18.8%;
	}

	.right_swiper-button-prev {
		right: 18.8%;
	}

	.right_swiper-button-next {
		right: 13.3%;
	}

	/* Quick Features Section */
	.quick_feature_box-wrap {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Contact Page */
	.contact_map {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Footer Section */
	.site-footer-row.site-footer-row-columns-5 {
		grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)) !important;
	}

	.site-footer-middle-section-1 {
		padding-right: 3rem;
	}
	.site-bottom-footer-wrap .site-footer-row {
		justify-items: stretch !important;
	}
	.contact_info {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Large Desktop (1440px and up) */
@media (min-width: 1240px) {
	/* Hero Section */
	.hero_section .banner_section {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.banner_image {
		position: absolute;
		right: 0;
		width: 100%;
		z-index: 1;
	}

	/* Product Section */
	.product_category {
		width: 16.3%;
	}

	.product_slider {
		width: 83.7%;
	}

	.left_swiper-button-prev,
	.left_swiper2-button-prev {
		left: 8.8%;
	}

	.left_swiper-button-next,
	.left_swiper2-button-next {
		left: 12.6%;
	}

	.right_swiper-button-prev {
		right: 12.6%;
	}

	.right_swiper-button-next {
		right: 8.8%;
	}

	/* Contact Page */

	/* Statistics Section */
	.statistics {
		gap: 2.5em;
	}

	.statistics .globe {
		padding: 3.5em;
	}

	.statistics_info h3 {
		font-size: 36px;
		line-height: 1.8;
	}

	/* Footer Section */
	.site-footer-row.site-footer-row-columns-5 {
		grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr)) !important;
	}
}

/* ================================
   Inquiry Modal (Request Quote)
================================ */

/* Overlay */
.inquiryModal {
	display: none;
	position: fixed;
	inset: 0; /* shorthand: top, right, bottom, left = 0 */
	z-index: 999999;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

/* Active State */
.inquiryModal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Content Box */
.inquiry-modal-content {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	width: 90%;
	max-width: 500px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	animation: modalSlideDown 0.3s ease-out;
	z-index: 2;
}

/* Close Button */
.close-inquiry {
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 28px;
	cursor: pointer;
	color: #888;
	line-height: 1;
}

.close-inquiry:hover {
	color: #000;
}

/* Header */
.inquiry-header h3 {
	margin: 0 0 5px;
	font-size: 22px;
	color: #222;
}

.inquiry-header p {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

/* Animation */
@keyframes modalSlideDown {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Prevent scroll when modal open (optional but recommended) */
body.modal-open {
	overflow: hidden;
}

/* ================================
   Button Styling (cleaned)
================================ */

.quotation-button,
.get-quote-btn {
	display: inline-flex;
	padding: 18px 22px !important;
	font-size: 18px !important;
	font-weight: 400;
	color: #fff;
	background: #3347ff;
	border-radius: 70px !important;
	line-height: 1 !important;
	transition: all 0.2s ease;
}
.quotation-button {
	margin-top: 0.5rem !important;
}
@media (min-width: 768px) {
	.get-quote-btn {
		padding: 20px 28px !important;
	}
	.quotation-button {
		margin-top: 1.5rem !important;
	}
}

.quotation-button:hover,
.get-quote-btn:hover {
	background: #2d3748;
	border-color: #fff;
}

/* Fluent Form Success */
.ff-message-success {
	border-radius: 12px !important;
}
.product-action-wrap a {
	text-transform: none !important;
	font-size:16px !important;
}
.product-action-wrap a svg {
	top: 4px !important;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* about us page style  */




.mission-vision-grid .kt-inside-inner-col {
	display: grid !important;
	gap: 1.5rem !important;
}
.about-feature-grid {
    display: grid !important;
	padding:0 !important;
}
.about-feature-grid h2{
font-size:24px !important}

.about-feature-grid .kt-blocks-info-box-media{
	
	margin:0 !important;
}


@media (min-width: 768px) {
	.mission-vision-grid .kt-inside-inner-col {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 2rem !important;
	}
	.about-feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
		padding:0 2rem !important;
}
	.about-feature-grid h2{
font-size:28px !important}

}

@media (min-width: 1024px) {
		.about-feature-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}
	.mission-vision-grid .kt-inside-inner-col {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
.mission-vision-grid .kt-inside-inner-col img {
	height: 250px !important;
	width: 100%;
	margin-bottom: 0.5rem !important;
}
.mission-vision-grid .kt-inside-inner-col h2 {
	margin: 0 !important;
}
