@charset "UTF-8";
:before,:after,html *{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;-moz-osx-font-smoothing: grayscale; /*(For Firefox)*/-webkit-font-smoothing: antialiased; /*(For Chrome and Safari)*/}
.clearfix:after,
.clear{clear: both;display: block;height: 0;width: 100%;float: none !important;}
.clearfix:after{content: '';}
input::-moz-focus-inner /*Remove button padding in FF*/{ border: 0;padding: 0;}
a{text-decoration: none;outline: 0 !important;}
a:hover{color: inherit;text-decoration: none;}
img{max-width: 100%;vertical-align: top;}
*:focus ,
textarea,
input,
textarea:focus, input:focus{outline: none;border-radius: 0}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {-webkit-appearance: none !important;margin: 0;}
input[type=number] {-moz-appearance:textfield !important;}
input::placeholder{ 
	color: #cacdc8;
	opacity:1;
}
textarea::placeholder{ 
	color: #cacdc8;
	opacity: 1;
}
::-moz-placeholder {
	opacity: 1;
}



/** HEADER **/
:root {
	/* Palette Provided */
	--primary-color: #2d7f68;
	--primary-dark: #246653;
	--secondary-color: #71978a;
	--text-dark: #1e1e20;
	--text-light: #64748b;
	--bg-body: #f0f9f7;
	--bg-sidebar: #ffffff;
	
	/* Accents */
	--color-grey: #f2f2f2;
	--color-orange: #fdaf40;
	--color-purple: #932892;
	--color-lblue: #868bc5;
	--color-blue: #539db6;
	--color-green: #a9c578;
	
	/* Functional */
	--border-color: #cbd5e1;
	--transition: all 0.3s ease;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
	--shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--font-heading: 'Merriweather', serif;
	--font-body: 'Inter', sans-serif;
	--container-width: 1200px;
}



a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--text-dark);
	font-weight: 700;
	line-height: 1.5;
}
body {
	font-family: var(--font-body);
	background-color: var(--bg-body);
	color: var(--text-dark);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.wp-element-button,
.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	text-align: center;
	border: 2px solid transparent;
	font-family: var(--font-body);
	transition:all 0.2s ease !important;
}
.wp-element-button,
.btn-primary {
	background-color: var(--primary-color);
	color: white;
}
.wp-element-button:hover,
.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	color: #fff;
}
.btn-primary.noup:hover{
	transform: none;
}
.btn-outline {
	background-color: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: white;
}
.btn-white { background-color: #fff; color: var(--primary-color); }
.btn-white:hover { background-color: var(--color-grey); color: var(--primary-color); }
/* =========================================
2. GLOBAL HEADER (Not Scoped)
========================================= */
.site-header {
	background: #fff;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-sm);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);

}

.nav-menu {
	display: flex;
	gap: 60px;
	align-items: center;
}

.nav-menu li a {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-dark);
}
.nav-menu li.current-menu-item > a,
.nav-menu li a:hover { color: var(--primary-color); }

.header-actions {
	display: flex;
	gap: 15px;
	align-items: center;
}

.btn-sm { padding: 8px 18px; font-size: 0.9rem; }

/* Mobile Menu Toggle */
.mobile-toggle {
	display: none;
	font-size: 1.5rem;
	color: var(--text-dark);
	cursor: pointer;
}

/* =========================================
4. GLOBAL FOOTER (Not Scoped)
========================================= */
.site-footer {
	background: #fff;
	padding: 60px 0 30px;
	border-top: 1px solid var(--border-color);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo {
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 15px;
	display: block;
}

.footer-desc { font-size: 0.9rem; color: var(--text-light); max-width: 300px; }

.footer-col h3 {
	font-family: var(--font-body);
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--text-dark);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-light); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-color); }

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 30px;
	display: flex;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--text-light);
}

/* =========================================
3. LANDING PAGE CONTENT (.inner-home Scoped)
========================================= */

/* --- General Layout --- */
.inner-home section {
	padding: 80px 0;
}

/* --- Hero Section --- */
.inner-home .hero-section {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(45,127,104,0.05) 0%, rgba(240,249,247,1) 100%);
	overflow: hidden;
}

.inner-home .hero-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}

.inner-home .hero-content {
	flex: 1;
}

.inner-home .badge-pill {
	display: inline-block;
	background: rgba(147, 40, 146, 0.1);
	color: var(--color-purple);
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.inner-home .hero-title {
	font-size: 3rem;
	margin-bottom: 20px;
	letter-spacing: -1px;
	line-height: 1.3;
}

.inner-home .hero-subtitle {
	font-size: 1.15rem;
	color: var(--text-light);
	margin-bottom: 35px;
	max-width: 500px;
}

.inner-home .hero-btns {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.inner-home .subtext {
	display: block;
	margin-top: 10px;
	font-size: 0.8rem;
	color: var(--text-light);
}

.inner-home .hero-visual {
	flex: 1;
	position: relative;
}

.inner-home .mockup-container {
	position: relative;
	background: transparent;
}

.inner-home .phone-mockup {
	width: 280px;
	height: 550px;
	background: #fff;
	border: 8px solid #1e1e20;
	border-radius: 40px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	position: relative;
	z-index: 2;
}
.inner-home .phone-mockup iframe{
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.inner-home .floating-card {
	position: absolute;
	top: 50%;
	right: -20px;
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	width: 260px;
	z-index: 3;
	transform: translateY(-50%);
	border: 1px solid var(--border-color);
}

/* --- Social Proof --- */
.inner-home .social-proof {
	padding: 40px 0;
	background: #fff;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	text-align: center;
}

.inner-home .sp-title {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
	margin-bottom: 20px;
	font-family: var(--font-body);
	font-weight: 600;
}

.inner-home .logo-row {
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
	opacity: 0.6;
	filter: grayscale(100%);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--text-dark);
}

/* --- Problem Solution --- */
.inner-home .problem-solution {
	background-color: var(--bg-body);
}

.inner-home .section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.inner-home .section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.inner-home .comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.inner-home .comp-card {
	padding: 40px;
	border-radius: 20px;
}

.inner-home .comp-card.bad {
	background: #e2e8f0;
	color: var(--text-light);
}

.inner-home .comp-card.good {
	background: #fff;
	border: 2px solid var(--primary-color);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.inner-home .comp-card h3 {
	margin-bottom: 20px;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.inner-home .comp-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

/* --- Features (ZigZag) --- */
.inner-home .features-section {
	background: #fff;
}

.inner-home .feature-block {
	display: flex;
	align-items: center;
	gap: 80px;
	margin-bottom: 100px;
}

.inner-home .feature-block:last-child { margin-bottom: 0; }
.inner-home .feature-block.reverse { flex-direction: row-reverse; }

.inner-home .feature-text { flex: 1; }
.inner-home .feature-img { 
	flex: 1; 
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
}

.inner-home .feature-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.inner-home .feature-text p {
	color: var(--text-light);
	margin-bottom: 25px;
	font-size: 1.1rem;
}

.inner-home .feature-bullets li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 500;
}

.inner-home .feature-bullets i {
	color: var(--primary-color);
	position: relative;
	top: 7px;
	font-size: 10px;
}

/* --- Use Cases --- */
.inner-home .use-cases {
	background-color: var(--bg-body);
}

.inner-home .use-case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.inner-home .uc-card {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	border: 1px solid transparent;
	transition: var(--transition);
}

.inner-home .uc-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-color);
}

.inner-home .uc-icon {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

/* Icon Colors */
.inner-home .uc-icon.orange { background: rgba(253, 175, 64, 0.15); color: var(--color-orange); }
.inner-home .uc-icon.purple { background: rgba(147, 40, 146, 0.15); color: var(--color-purple); }
.inner-home .uc-icon.blue { background: rgba(83, 157, 182, 0.15); color: var(--color-blue); }
.inner-home .uc-icon.green { background: rgba(169, 197, 120, 0.15); color: var(--color-green); }
.inner-home .uc-icon.lblue { background: rgba(134, 139, 197, 0.15); color: var(--color-lblue); }
.inner-home .uc-icon.grey { background: rgba(30, 30, 32, 0.1); color: var(--text-dark); }

.inner-home .uc-card h3 {
	margin-bottom: 10px;
	font-size: 1.25rem;
}

.inner-home .uc-hook {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 0.9rem;
	margin-bottom: 8px;
	display: block;
	text-transform: uppercase;
}

.inner-home .uc-card p {
	font-size: 0.95rem;
	color: var(--text-light);
}

/* --- BYO Key Section --- */
.inner-home .byo-section {
	background: #1e1e20;
	color: #fff;
}
.inner-home .byo-section h2{
	margin: 0 0 15px;
}
.inner-home .byo-section h2, 
.inner-home .byo-section p { color: #fff; }

.inner-home .byo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 50px;
}

.inner-home .byo-col {
	border-left: 1px solid rgba(255,255,255,0.2);
	padding-left: 25px;
}

.inner-home .byo-col b {
	color: var(--secondary-color);
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: block;
}

.inner-home .byo-col h3 {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 10px;
}

.inner-home .byo-col p { opacity: 0.8; font-size: 0.95rem; }

/* --- Pricing --- */
.inner-home .pricing-section {
	background: var(--bg-body);
}

.inner-home .pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.inner-home .price-card {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	position: relative;
}

.inner-home .price-card.premium {
	border: 2px solid var(--primary-color);
	box-shadow: var(--shadow-md);
}

.inner-home .price-tag {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 20px 0;
}

.inner-home .price-tag span {
	font-size: 1rem;
	color: var(--text-light);
	font-weight: 400;
}

.inner-home .price-features {
	margin: 30px 0;
}

.inner-home .price-features li {
	margin-bottom: 12px;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 10px;
}

.inner-home .price-features li.disabled {
	color: var(--border-color);
	text-decoration: line-through;
}

.inner-home .best-value {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-orange);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
}

.inner-home .agency-link {
	text-align: center;
	margin-top: 30px;
	font-size: 0.9rem;
	color: var(--text-light);
}
.inner-home .agency-link a { color: var(--primary-color); text-decoration: underline; font-weight: 600;}

/* --- FAQ --- */
.inner-home .faq-section { background: #fff; }

.inner-home .faq-container { max-width: 800px; margin: 0 auto; }

.inner-home .faq-item {
	border-bottom: 1px solid var(--border-color);
}

.inner-home .faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 20px 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-dark);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-copy);
}

.inner-home .faq-answer {
	display: none;
	padding-bottom: 20px;
	color: var(--text-light);
}
/** INNER BLOG **/
.inner-blog .blog-header {
	background-color: var(--primary-color);
	padding: 80px 0;
	text-align: center;
	color: white;
	margin-bottom: 60px;
}

.inner-blog .blog-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	margin-bottom: 15px;
	color: white;
}

.inner-blog .blog-subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* Layout Grid */
.inner-blog .blog-layout {
	display: grid;
	grid-template-columns: 2fr 1fr; /* 2/3 Content, 1/3 Sidebar */
	gap: 50px;
	padding-bottom: 80px;
}

/* --- Blog List Area --- */
.inner-blog .blog-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	margin-bottom: 40px;
	transition: var(--transition);
}

.inner-blog .blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--secondary-color);
}

.inner-blog .card-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.inner-blog .card-body {
	padding: 30px;
}

.inner-blog .card-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 0.85rem;
	color: var(--text-light);
	margin-bottom: 15px;
}

.inner-blog .badge-cat {
	background: rgba(253, 175, 64, 0.15);
	color: #d98e26; /* Darker orange for text */
	padding: 4px 10px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
}

.inner-blog .post-title {
	font-size: 1.8rem;
	margin-bottom: 15px;
	line-height: 1.3;
}

.inner-blog .post-title a:hover {
	color: var(--primary-color);
}

.inner-blog .post-excerpt {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 1rem;
}

.inner-blog .read-more {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.inner-blog .read-more:hover { gap: 10px; }

/* Pagination */
.inner-blog .pagination {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.inner-blog .page-numbers {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-weight: 600;
}

.inner-blog .page-numbers.current {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.inner-blog .page-numbers:hover:not(.active) {
	background: #fff;
	border-color: var(--primary-dark);
	color: var(--primary-dark);
}

/* --- Sidebar Area --- */
.widget {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
}

.widget-title {
	font-size: 1.1rem;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--color-grey);
	position: relative;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--primary-color);
}

.inner-blog-single { padding-top: 60px; padding-bottom: 80px; }

.inner-blog-single .layout-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
}

/* --- Article Header --- */
.inner-blog-single .post-hero { margin-bottom: 40px; }

.inner-blog-single .breadcrumb {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-bottom: 20px;
}
.inner-blog-single .breadcrumb a:hover { color: var(--primary-color); }

.inner-blog-single .badge-cat {
	background: rgba(253, 175, 64, 0.15);
	color: #d98e26;
	padding: 4px 10px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
	display: inline-block;
	margin-bottom: 15px;
}

.inner-blog-single .post-title {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 20px;
}

.inner-blog-single .post-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
}

.inner-blog-single .author-avatar {
	width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}

.inner-blog-single .featured-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin-bottom: 40px;
	box-shadow: var(--shadow-md);
}

/* --- Article Content Typography --- */
.inner-blog-single .post-content {
	font-size: 1.125rem; /* 18px */
	line-height: 1.8;
	color: #2d3748;
	margin-bottom: 50px;
}
.inner-blog-single .post-content  ul{
	list-style: disc;
}
.inner-blog-single .post-content > *:not(:first-child){
	margin: 25px 0 0;
}
.inner-blog-single .post-content b,
.inner-blog-single .post-content strong{
	font-weight: 700;
}
.inner-blog-single .post-content em,
.inner-blog-single .post-content i{
	font-style: italic;
}
.inner-blog-single .post-content a:not(.wp-element-button){
	color: var(--primary-color);
	text-decoration: underline;
}

.inner-blog-single .post-content h2 {
	font-size: 1.8rem;
	margin-top: 40px;
	margin-bottom: 20px;
}

.inner-blog-single .post-content h3 {
	font-size: 1.4rem;
	margin-top: 30px;
	margin-bottom: 15px;
}

.inner-blog-single .post-content ul, 
.inner-blog-single .post-content ol {
	margin-bottom: 25px;
	padding-left: 20px;
}

.inner-blog-single .post-content li { margin-bottom: 10px; }
.inner-blog-single .post-content li::marker { color: var(--primary-color); font-weight: bold; }

.inner-blog-single .post-content blockquote {
	border-left: 4px solid var(--primary-color);
	padding-left: 25px;
	font-style: italic;
	color: var(--text-dark);
	font-size: 1.25rem;
	margin: 30px 0;
	background: rgba(45,127,104,0.05);
	padding: 20px 20px 20px 25px;
	border-radius: 0 8px 8px 0;
}

/* --- Share Section --- */
.inner-blog-single .share-section {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
	margin-bottom: 60px;
}

.inner-blog-single .share-label {
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	color: var(--text-dark);
	font-family: var(--font-heading);
	margin-right: 10px;
}

.inner-blog-single .share-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	transition: var(--transition);
}

.sb-x { background: #000; color: #fff !important; }
.sb-fb { background: #1877F2; color: #fff !important; }
.sb-in { background: #0077B5; color: #fff !important; }
.sb-copy { background: var(--color-grey); color: var(--text-dark); }

.inner-blog-single .share-btn:hover { transform: translateY(-3px); opacity: 0.9;}

/* --- Related Articles --- */

.inner-blog-single .related-title {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.inner-blog-single .related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.inner-blog-single .related-card {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.inner-blog-single .related-thumb {
	height: 200px;
	width: 100%;
	object-fit: cover;
}

.inner-blog-single .related-body {
	padding: 20px;
}

.inner-blog-single .related-body h4 {
	font-size: 16px;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.inner-blog-single .related-body h4 a:hover { color: var(--primary-color); }

.inner-blog-single .related-date {
	font-size: 0.8rem;
	color: var(--text-light);
}

/* Search Widget */
 .search-form {
	position: relative;
}
 .search-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-family: var(--font-body);
}
 .search-btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-light);
	cursor: pointer;
}

/* Categories Widget */
 .cat-list li {
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-grey);
	padding-bottom: 10px;
}
 .cat-list li:last-child { border: none; padding-bottom: 0; }
 .cat-list a {
	display: flex;
	justify-content: space-between;
	color: var(--text-dark);
	font-weight: 500;
	align-items: flex-start;
}
 .cat-list a span {
	background: var(--color-grey);
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 0.8rem;
	color: var(--text-light);
}
 .cat-list a:hover { color: var(--primary-color); }

/* Recent Posts Widget */
 .mini-post {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}
 .mini-thumb {
	width: 60px;
	height: 60px;
	border-radius: 6px;
	object-fit: cover;
	flex-shrink: 0;
}
.mini-info h4,
 .mini-info h5 {
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mini-info h4 a,
.mini-info h5 a{
	color: var(--text-dark);
	transition:color 0.2s ease-in;
}
.mini-info h4 a:hover,
.mini-info h5 a:hover{
	color: var(--primary-color);
}
 .mini-info span {
	font-size: 0.8rem;
	color: var(--text-light);
}

/* CTA Widget */
 .widget-cta {
	background: var(--primary-color);
	color: white;
	text-align: center;
	border: none;
}
 .widget-cta h4 { color: white; margin-bottom: 10px; }
 .widget-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.9rem; }
 .inner-blog-single .btn-white,
.inner-blog .btn-white { background: white; color: var(--primary-color); width: 100%; }
.inner-blog-single .btn-white:hover,
.inner-blog .btn-white:hover { background: var(--color-grey); }

/* --- Page Layout --- */
.inner-page {
	background-color: var(--bg-body);
	min-height: 80vh; /* Ensure footer pushes down */
}

/* --- Page Hero Section --- */
.inner-page .page-hero {
	background-color: var(--primary-color);
	padding: 80px 0 60px;
	text-align: center;
	color: #ffffff;
	margin-bottom: 60px;
}

.inner-page .page-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 15px;
	line-height: 1.2;
	color: #fff;
}

.inner-page .page-breadcrumb {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-body);
}

.inner-page .page-breadcrumb a {
	color: #ffffff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.4);
}

.inner-page .page-breadcrumb a:hover {
	text-decoration-color: #ffffff;
}

/* --- Page Content Wrapper --- */
.inner-page .page-content-wrapper {
	background: #ffffff;
	max-width: 900px; /* Reading width */
	margin: 0 auto 80px; /* Center horizontally */
	padding: 60px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
}
.inner-page .page-content-wrapper:after{
	display: block;
	clear: both;
	content: '';
	width: 100%;
	height: 1px;
	float: none;
}
body.woocommerce-page .inner-page .page-content-wrapper{
	max-width: 1200px;
	padding: 40px;
}
.inner-page .page-body .wc-block-components-checkout-step__heading h2{
	margin: 0 0 20px;
}
.inner-page .page-body .wp-block-woocommerce-checkout-order-summary-block h3{
	margin: 0;
	font-size: 16px;
	font-weight: 700;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__description{
	padding-left: 0 !important;
}
/* --- Typography Content --- */
.inner-page .page-body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-dark);
}

/* Headings inside content */
.inner-page .page-body h2 {
	font-size: 1.8rem;
	margin-top: 40px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-grey);
	color: var(--text-dark);
}

.inner-page .page-body h3 {
	font-size: 1.4rem;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--primary-dark);
}

/* Paragraphs & Lists */
.inner-page .page-body p {
	margin-bottom: 25px;
}

.inner-page .page-body ul, 
.inner-page .page-body ol {
	margin-bottom: 25px;
	padding-left: 20px;
}

.inner-page .page-body li {
	margin-bottom: 10px;
	padding-left: 5px;
}

.inner-page .page-body ul li::marker {
	color: var(--primary-color);
}

/* Blockquotes */
.inner-page .page-body blockquote {
	background: var(--bg-body);
	border-left: 4px solid var(--secondary-color);
	margin: 30px 0;
	padding: 20px;
	font-style: italic;
	color: var(--text-light);
	border-radius: 0 8px 8px 0;
}

/* Images inside content */
.inner-page .page-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 30px 0;
	box-shadow: var(--shadow-sm);
}
th.wc-block-cart-items__header-image,
td.wc-block-cart-item__image,
.wc-block-components-order-summary-item__image{
	display: none !important;
}
body.woocommerce-page .inner-page .page-body h2.wc-block-cart__totals-title{
	padding: 0;
	border: none;
	margin: 0 0 10px;
	font-size: 20px;
}
 /* Hero */
.inner-features .feat-hero {
	padding: 80px 0;
	text-align: center;
	background: linear-gradient(180deg, rgba(45,127,104,0.05) 0%, rgba(240,249,247,1) 100%);
	background: var(--primary-color);
}
.inner-features .feat-hero h1 { font-size: 3rem; margin-bottom: 20px; color: #fff;}
.inner-features .feat-hero p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; color: #fff;opacity: .8;}

/* Section Generic */
.inner-features section { padding: 80px 0; }

.inner-features .section-title { margin-bottom: 50px; text-align: center; }
.inner-features .section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.inner-features .section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* RAG Section */
.inner-features .rag-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.inner-features .file-types {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.inner-features .ft-card {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
}

.inner-features .ft-card i { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-color); }
.inner-features .ft-card span { display: block; font-weight: 600; font-size: 0.9rem; }

/* BYO Key Section (Dark) */
.inner-features .byo-section { background: #1e1e20; color: #fff; }
.inner-features .byo-section h2 { color: #fff; }
.inner-features .byo-section p { color: rgba(255,255,255,0.7); }

.inner-features .model-comparison {
	display: flex;
	gap: 30px;
	margin-top: 50px;
	justify-content: center;
}

.inner-features .model-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 30px;
	border-radius: 12px;
	width: 100%;
	max-width: 400px;
}

.inner-features .model-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.inner-features .model-badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 20px; font-weight: 600; }

.inner-features .mc-flash { border-color: var(--color-orange); }
.inner-features .mc-flash .model-badge { background: rgba(253, 175, 64, 0.2); color: var(--color-orange); }

.inner-features .mc-pro { border-color: var(--color-purple); }
.inner-features .mc-pro .model-badge { background: rgba(147, 40, 146, 0.2); color: var(--color-purple); }

.inner-features .model-list li { margin-bottom: 10px; display: flex; gap: 10px; opacity: 0.9; align-items: center;}

/* Actions Section */
.inner-features .actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.inner-features .action-card {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.inner-features .action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-color); }

.inner-features .ac-icon {
	width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 25px;
}

.inner-features .ac-email { background: rgba(83, 157, 182, 0.1); color: var(--color-blue); }
.inner-features .ac-lead { background: rgba(169, 197, 120, 0.1); color: var(--primary-color); }
.inner-features .ac-webhook { background: rgba(147, 40, 146, 0.1); color: var(--color-purple); }

.inner-features .action-card h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* Integrations Strip */
.inner-features .integrations { background: #fff; padding: 50px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.inner-features .int-logos { display: flex; justify-content: center; gap: 50px; font-size: 1.5rem; color: var(--text-light); opacity: 0.6; align-items: center;}

/* CTA Bottom */
.inner-features .feat-cta { background: var(--primary-color); color: #fff; text-align: center; }
.inner-features .feat-cta h2 { color: #fff; margin-bottom: 20px; font-size: 2.5rem; }
.inner-features .feat-cta p { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 1.2rem; }

   /* Hero */
.inner-pricing .price-hero {
	padding: 80px 0 60px;
	text-align: center;
}
.inner-pricing .price-hero h1 { font-size: 3rem; margin-bottom: 15px; }
.inner-pricing .price-hero p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; }

.inner-pricing .pricing-alert {
	display: inline-block;
	background: rgba(45,127,104,0.1);
	color: var(--primary-color);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 30px;
}

/* Pricing Cards */
.inner-pricing .pricing-cards-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto 60px;
}

.inner-pricing .p-card {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	position: relative;
	transition: var(--transition);
}

.inner-pricing .p-card:hover { transform: translateY(-5px); }

/* Premium Card Specifics */
.inner-pricing .p-card.premium {
	border: 2px solid var(--primary-color);
	box-shadow: 0 10px 30px rgba(45,127,104,0.15);
}

.inner-pricing .best-value {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-orange);
	color: #fff;
	padding: 4px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.inner-home .price-card > h3,
.inner-pricing .plan-name { font-size: 1.5rem; font-weight: 900; margin-bottom: 5px; font-family: var(--font-heading); }
.inner-home .price-card > p,
.inner-pricing .plan-desc { color: var(--text-light); font-size: 0.95rem; margin-bottom: 25px; }

.inner-pricing .price { font-size: 3rem; font-weight: 900; color: var(--text-dark); margin-bottom: 30px; display: flex; align-items: baseline; gap: 5px; }
.inner-pricing .period { font-size: 1rem; color: var(--text-light); font-weight: 400; }

.inner-pricing .feature-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
}

.inner-pricing .feature-list i { color: var(--primary-color); }
.inner-pricing .feature-list li.disabled { color: var(--text-light); opacity: 0.6; text-decoration: line-through; }
.inner-pricing .feature-list li.disabled i { color: var(--border-color); }

.inner-pricing .btn-block { width: 100%; display: block; margin-top: 30px; }

/* Agency Bundles */
.inner-pricing .agency-section {
	background: #fff;
	max-width: 900px;
	margin: 0 auto 80px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	padding: 40px;
	text-align: center;
}

.inner-pricing .bundle-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.inner-pricing .bundle-item {
	background: var(--bg-body);
	padding: 20px 30px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.inner-pricing .bundle-price { font-size: 1.8rem; font-weight: 900; color: var(--primary-color); display: block; }
.inner-pricing .bundle-name { font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* Comparison Table */
.inner-pricing .compare-section { padding: 80px 0; background: #fff; border-top: 1px solid var(--border-color); }
.inner-pricing .compare-table-wrapper { max-width: 900px; margin: 0 auto; overflow-x: auto; }

.inner-pricing .compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.inner-pricing .compare-table th { text-align: left; padding: 20px; border-bottom: 2px solid var(--border-color); font-family: var(--font-heading); font-size: 1.1rem; }
.inner-pricing .compare-table td { padding: 15px 20px; border-bottom: 1px solid var(--color-grey); }
.inner-pricing .compare-table tr:last-child td { border-bottom: none; }

.inner-pricing .compare-table .th-center, .inner-pricing .compare-table .td-center { text-align: center; }
.inner-pricing .check { color: var(--success-color); }
.inner-pricing .cross { color: var(--border-color); }

/* FAQ */
.inner-pricing .faq-section { max-width: 800px; margin: 80px auto; }
.inner-pricing .faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 10px; }
.inner-pricing .faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); color: var(--text-dark); }
.inner-pricing .faq-answer { display: none; padding-bottom: 20px; color: var(--text-light); line-height: 1.6; }

body.woocommerce-checkout #contact-fields{
	display: none !important;
}
.sticky-sidebar{
	position: sticky;
	top: 100px;
}
/* Hero */
.inner-showcase .sc-hero {
	padding: 80px 0 40px;
	text-align: center;
}
.inner-showcase .sc-hero h1 { font-size: 3rem; margin-bottom: 15px; }
.inner-showcase .sc-hero p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; }

/* Filter Tabs */
.inner-showcase .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.inner-showcase .filter-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.inner-showcase .filter-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.inner-showcase .filter-btn.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* Grid */
.inner-showcase .agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 80px;
}

/* Agent Card */
.inner-showcase .agent-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: block; /* For filtering */
}

.inner-showcase .agent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.inner-showcase .agent-avatar {
    width: 100%;
    height: auto;
    vertical-align: top;
    display: block;
    border-radius: 5px;
    margin: 0 0 15px;
    border: 3px solid var(--bg-body);
    box-shadow: var(--shadow-sm);
}

.inner-showcase .agent-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; }
.inner-showcase .agent-role { font-size: 0.85rem; color: var(--primary-color); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 15px; display: block;}

.inner-showcase .agent-desc {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-bottom: 20px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.inner-showcase .tag-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.inner-showcase .tag {
    background: var(--color-grey);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}
/* The dark background overlay */
.tochat-popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

/* Flexbox fix to center content when display is toggled to flex */
.tochat-popup-overlay.active {
    display: flex;
}

/* The container for the video */
.tochat-popup-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background-color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}

/* Aspect ratio hack for responsive iframe (16:9) */
.tochat-popup-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.tochat-popup-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* The Close Button */
.tochat-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.tochat-popup-close:hover {
    color: #ccc;
}
/* =========================================
5. RESPONSIVE DESIGN
========================================= */
@media (max-width: 991px) {
	:root { --container-width: 100%; }

	.inner-home .hero-title { font-size: 2.8rem; }
	.inner-home .feature-block { flex-direction: column;  gap: 30px; }
	.inner-home .feature-block.reverse { flex-direction: column; }
	.inner-blog .blog-layout { grid-template-columns: 1fr; }
        .inner-blog .card-img { height: 250px; }
	.inner-blog-single .layout-grid { grid-template-columns: 1fr; }
	.inner-blog-single .post-title { font-size: 2.2rem; }
	.inner-blog-single .related-grid { grid-template-columns: 1fr; }
	
	.inner-page .page-hero {
		padding: 60px 0 40px;
		margin: 0 0 40px;
	}
	
	.inner-page .page-title {
		font-size: 2.2rem;
	}
	.wp-block-woocommerce-checkout,
	body.woocommerce-page .inner-page .page-content-wrapper{
		padding: 0  !important;
	}
	.inner-page .page-content-wrapper {
		padding: 30px 20px;
		border: none;
		background: transparent;
		box-shadow: none;
	}
	 body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar{
		display: none !important;
	}
	body.woocommerce-checkout .inner-page .page-body h2{
		font-size: 20px;
	}
	.inner-features .rag-grid { grid-template-columns: 1fr; }
	.inner-features .model-comparison { flex-direction: column; align-items: center; }
	.inner-features .actions-grid { grid-template-columns: 1fr; }
	.inner-features .feat-hero h1 { font-size: 24px; }
	.inner-pricing .pricing-cards-container { grid-template-columns: 1fr; }
        .inner-pricing .price-hero h1 { font-size: 2.2rem; }
	.inner-showcase .agent-grid { grid-template-columns: 1fr 1fr; }
	.nav-menu{gap: 35px;}
}

@media (max-width: 768px) {
	/* Header */
	.wc-block-cart-item__total{
		display: none !important;
	}
	.nav-menu, .header-actions { display: none }
	.mobile-toggle { display: block; }
	
	/* Mobile Menu Active State */
	.nav-menu.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: #fff;
		padding: 20px;
		box-shadow: var(--shadow-md);
		border-top: 1px solid var(--border-color);
		gap: 20px;
	}
	.header-actions.active {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 0 20px 20px;
		background: #fff;
		position: absolute;
		top: 310px; /* Adjust based on menu height */
		left: 0;
		box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	}
	
	/* Inner Home */
	.inner-home .hero-title { font-size: 2.2rem; }
	.inner-home .comparison-grid { grid-template-columns: 1fr; }
	.inner-home .use-case-grid { grid-template-columns: 1fr; }
	.inner-home .byo-grid { grid-template-columns: 1fr; gap: 30px; }
	.inner-home .byo-col { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
	.inner-home .pricing-grid { grid-template-columns: 1fr; }
	
	/* Footer */
	.footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
	
	.inner-pricing .price-hero,
	.inner-features section,
	.inner-features .feat-hero,
	.inner-home section,
	.inner-home .hero-section{
		padding: 60px 0;
	}
	
	.inner-home .hero-wrapper{
		flex-wrap: wrap;
	}
	.inner-showcase .sc-hero h1,
	.inner-features .feat-hero h1,
	.inner-home .section-header h2{
		font-size: 30px;
	}
	.inner-features .feat-cta h2,
	.inner-features .section-title h2,
	.inner-home .feature-text h2{
		font-size: 24px;
	}
	.inner-features .action-card h3,
	.inner-features .model-card h3,
	.inner-blog .post-title{
		font-size: 20px;
	}
	.inner-features .feat-cta p{
		font-size: 18px;
	}
	.inner-home .feature-block{
		margin-bottom: 50px;
	}
	.inner-home .faq-question{
		line-height: 150%;
	}
	 .inner-blog .blog-title { font-size: 2rem; }
	 .inner-blog .card-meta{
		flex-wrap: wrap;
	 }
	 .inner-blog .blog-header{
		padding: 40px 0;
	 }
	 .is-mobile table.wc-block-cart-items .wc-block-cart-items__row{
		display: block !important;
	 }
	 .inner-showcase .agent-grid { grid-template-columns: 1fr; }
	 .inner-showcase .sc-hero{
		padding: 60px 0 40px;
	 }
	 .btn.mbfull{
		display: block;
		text-align: center;
		width: 100%;
	 }
	 .inner-showcase .filter-tabs{
		flex-wrap: nowrap;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		display: flex;
                padding: 0 0 5px;
		margin-right: -20px;
		justify-content: flex-start;
	}
        .inner-showcase .filter-tabs::-webkit-scrollbar {
		width: 0px;
		background: transparent; /* make scrollbar transparent */
	}
	.inner-showcase .filter-tabs button{
		flex: 0 0 auto;
	}
}
/* MEDIA QUERY FOR WEBKIT BASED BROWSER **/
@media screen and (-webkit-min-device-pixel-ratio:0) {

}

/* MEDIA QUERY FOR GECKO BASED BROWSER **/
@-moz-document url-prefix(){
        
}
