/* ============================================================
   Heyri Theme
   Colors: #1A9AA8 teal | #1DBCD4 cyan | #faf6f1 cream | #222/#333/#545454 text
   Fonts: Nunito, Open Sans, Quicksand, Questrial
   ============================================================ */

:root {
	--orange: #1A9AA8;
	--orange-dark: #178a96;
	--orange-light: #e8f7f9;
	--ink: #222;
	--ink-soft: #333;
	--body: #545454;
	--cream: #faf6f1;
	--bg: #ffffff;
	--line: #e8e4df;
	--radius: 4px;
	--radius-lg: 8px;
	--shadow-sm: 0 2px 8px rgba(34, 34, 34, .06);
	--shadow-md: 0 8px 28px rgba(34, 34, 34, .08);
	--font-title: 'Nunito', 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: 'Open Sans', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Questrial', 'Open Sans', sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--body);
	background: var(--bg);
	padding-top: 80px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink-soft); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-title); color: var(--ink); line-height: 1.25; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }
svg { vertical-align: middle; }

.container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 9999;
	background: var(--orange); color: #fff; padding: 8px 14px; border-radius: 4px;
	clip: auto; width: auto; height: auto;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: var(--radius);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .3px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .25s ease;
	white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 15px; }

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 14px;
	color: var(--orange);
}
.read-more:hover { color: var(--orange-dark); }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #d4d4d4;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
	transition: box-shadow .3s ease, border-color .3s ease;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}

.site-header.scrolled {
	border-bottom-color: #c0c0c0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 80px;
}

.site-branding { flex-shrink: 0; }
.custom-logo-link img { max-height: 60px; width: auto; }

/* Primary navigation */
.main-navigation { flex: 1; display: flex; justify-content: flex-end; padding-right: 20px; }
.main-navigation > ul { display: flex; gap: 4px; }
.main-navigation li { position: relative; }
.main-navigation a {
	display: block;
	padding: 8px 14px;
	font-family: var(--font-title);
	font-size: 15px;
	font-weight: 500;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: .4px;
	border-radius: var(--radius);
	transition: color .2s, background .2s;
}
.main-navigation a:hover { color: var(--orange); background: var(--orange-light); }
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { color: var(--orange); }

/* Dropdown */
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
	z-index: 90;
}
.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.main-navigation .sub-menu a {
	font-size: 14px;
	font-weight: 600;
	padding: 9px 12px;
	text-transform: none;
	border-radius: var(--radius);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lang-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink-soft);
	cursor: pointer;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.lang-trigger:hover { color: var(--orange); border-color: var(--orange); }
.lang-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0,0,0,.45);
}
.lang-modal[hidden] { display: none; }
.lang-modal-dialog {
	width: 100%;
	max-width: 720px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 28px 32px 32px;
	box-shadow: var(--shadow-xl);
}
.lang-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.lang-modal-header h2 { font-size: 18px; color: var(--ink); margin: 0; }
.lang-modal-close {
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: var(--body);
	cursor: pointer;
}
.lang-modal-close:hover { color: var(--ink); }
.lang-modal-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px 16px;
}
.lang-option a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	font-size: 14px;
	color: var(--ink);
	text-decoration: none;
	border-radius: var(--radius);
	transition: background .2s ease;
}
.lang-option a:hover { background: var(--cream); }
.lang-option img {
	width: auto;
	height: 18px;
	border-radius: 2px;
	flex-shrink: 0;
}
@media (max-width: 720px) {
	.lang-modal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
	.lang-modal-grid { grid-template-columns: repeat(2, 1fr); }
	.lang-modal-dialog { padding: 22px 20px; }
}

.header-search-toggle {
	background: none;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 9px;
	color: var(--ink-soft);
	cursor: pointer;
	transition: all .2s ease;
}
.header-search-toggle:hover { color: var(--orange); border-color: var(--orange); }

.header-search-panel {
	background: var(--cream);
	border-top: 1px solid var(--line);
	padding: 20px 0;
}
.header-search-panel[hidden] { display: none; }
.header-search-panel:not([hidden]) { display: block; }
.header-search-panel .search-form {
	display: flex;
	gap: 10px;
	max-width: 600px;
	margin: 0 auto;
}
.header-search-panel input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 15px;
}
.header-search-panel .search-submit {
	padding: 12px 24px;
	background: var(--orange);
	color: #fff;
	border: 0;
	border-radius: var(--radius);
	font-weight: 700;
	cursor: pointer;
}

/* Hamburger */
.menu-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
	flex-direction: column;
	gap: 5px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-title);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}
.section-eyebrow::before {
	content: "";
	width: 25px;
	height: 25px;
	background: url('../images/ref/eyebrow-icon.png') no-repeat center / contain;
	flex-shrink: 0;
}
.section-title { font-size: clamp(28px, 3.6vw, 38px); line-height: 1.2; }
.section-head.light .section-eyebrow { color: var(--orange); }
.section-head.light .section-title { color: #fff; }
.section-desc { color: var(--body); font-size: 16px; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background: no-repeat center center / cover;
	min-height: 640px;
	display: flex;
	align-items: center;
}
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.12) 45%, transparent 70%);
	z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 24px; }
.hero-content { max-width: 800px; }
.hero-title {
	font-size: clamp(32px, 4.4vw, 42px);
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
	line-height: 1.1;
	letter-spacing: -1px;
	text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.hero-subtitle {
	font-family: var(--font-title);
	font-size: clamp(22px, 2.8vw, 30px);
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero-text {
	font-size: 16px;
	color: #fff;
	margin-bottom: 28px;
	line-height: 1.6;
	text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn { border-radius: 50px; }
.btn-yellow { background: #1DBCD4; color: #fff; border-color: #1DBCD4; }
.btn-yellow:hover { background: #178a96; border-color: #178a96; color: #fff; }

/* ---------- Why Choose Us ---------- */
.why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
	background: #fff;
	border: none;
	border-radius: var(--radius-lg);
	padding: 34px 22px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,.06);
	transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #faf6f1;
	margin-bottom: 18px;
}
.why-icon img { max-height: 74px; width: auto; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--body); line-height: 1.65; margin: 0; }

/* ---------- Suppliers ---------- */
.suppliers { padding-top: 0; margin-bottom:0;}
.supplier-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.supplier-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 300px;
	display: flex;
	align-items: center;
	padding: 40px;
}
.supplier-card { align-items: flex-start; padding: 50px 40px; }
.supplier-card-body {
	position: relative;
	z-index: 2;
	max-width: 46%;
}
.supplier-card-body h2 {
	font-size: clamp(22px, 2.6vw, 30px);
	color: #fff;
	margin-bottom: 14px;
	line-height: 1.25;
	text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.supplier-card-body p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 22px;
	line-height: 1.6;
	text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.supplier-card-body .btn { border-radius: 50px; }
.supplier-card-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.supplier-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

/* ---------- How It Works ---------- */
.how-it-works {
	position: relative;
	z-index: 2;
	background-color: var(--cream);
	 padding: 60px 0 0 0; 
}
.how-it-works .section-head { margin-bottom: 30px; }
.steps {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	min-height: clamp(300px, 44.5vw, 520px);
	padding: 25px 0 0;
	margin-bottom: 0;
	background: url('http://localhost/wordpress/wp-content/uploads/2026/08/bg.webp') no-repeat center bottom / contain;
}

@media (max-width: 1024px) {

.steps {
	background:var(--cream);
}
}

.step {
	width: 18%;
	text-align: center;
	padding: 0 6px;
}
.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid var(--orange);
	border-radius: 50%;
	color: var(--orange);
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--body); line-height: 1.55; margin: 0; }
.step-1, .step-5 { margin-top: 130px; }
.step-2, .step-4 { margin-top: 20px; }
.step-3 { margin-top: -30px; }

/* ---------- About / Stats ---------- */
.about-us {
	position: relative;
	z-index: 1;
	margin-top: -150px;
	padding: 180px 0 90px;
	background-color: #222;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	color: #fff;
	text-align: center;
}
.about-us::before {
	content: "";
	position: absolute; inset: 0;
	background: rgba(34, 34, 34, .5);
	z-index: 1;
}
.about-us-inner { position: relative; z-index: 2; }
.about-us-text { max-width: 700px; margin: 0 auto 50px; }
.about-us-text .section-eyebrow { color: var(--orange); }
.about-us-text .section-title { text-align: center; color: #fff; }
.about-us-text p { color: rgba(255,255,255,.35); font-size: 15px; }
.about-us-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}
.about-us-stats .stat { text-align: center; }
.about-us-stats .stat strong {
	display: block;
	font-family: var(--font-title);
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 6px;
}
.about-us-stats .stat span { font-size: 13px; color: rgba(255,255,255,.75); }


/* ---------- Certifications ---------- */
.certifications { padding: 50px 0; background: var(--cream); }
.cert-list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; }
.cert-list img { height: 100px; width: auto; filter: grayscale(20%); transition: filter .2s ease; }
.cert-list img:hover { filter: grayscale(0%); }

/* ---------- Solutions ---------- */
.solution-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 0;
}
.solution-item { min-height: 280px; }
.solution-media {
	position: relative;
	overflow: hidden;
}
.solution-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.solution-media:hover img { transform: scale(1.04); }
.solution-text {
	background: #fff;
	padding: 42px 38px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.solution-icon {
	width: 52px;
	height: 52px;
	margin-bottom: 18px;
}
.solution-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.solution-text h3 { font-size: 22px; margin-bottom: 12px; color: var(--ink); }
.solution-text p { font-size: 14px; color: var(--body); line-height: 1.65; margin: 0 0 18px; }
.solution-text .read-more {
	color: var(--orange);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}
.solution-text .read-more:hover { text-decoration: underline; }

/* ---------- Testimonials ---------- */
.testimonials {
	position: relative;
	background: var(--cream);
	padding: 90px 0;
}
.testimonials .section-head { text-align: center; }
.testimonial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 54px 28px 34px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-avatar {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 22px;
}
.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	border-radius: 50%;
	border: 3px solid var(--orange);
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.quote-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-family: Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(245,166,35,.35);
}
.quote { font-size: 14px; color: var(--body); line-height: 1.7; margin: 0 0 22px; }
.testimonial-author { font-size: 15px; color: var(--ink); }
.testimonial-author strong { font-weight: 600; }



/* ---------- Blog ---------- */
.blog-section {
	
background: #fff;}
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-thumb { display: block; overflow: hidden; }
.blog-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .4s ease; }
.blog-thumb:hover img { transform: scale(1.05); }
.blog-thumb-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 16 / 10; background: var(--orange-light); color: var(--orange); font-weight: 800; font-size: 22px; letter-spacing: 5px; }
.blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: 12px; color: var(--body); margin-bottom: 6px; }
.blog-body h3 { font-size: 16px; line-height: 1.35; margin-bottom: 8px; }
.blog-body h3 a { color: var(--ink); }
.blog-body h3 a:hover { color: var(--orange); }
.blog-body p { font-size: 13.5px; color: var(--body); flex: 1; margin-bottom: 12px; }

/* ---------- Contact CTA ---------- */
.contact-cta {
	position: relative;
	background: url('http://localhost/wordpress/wp-content/uploads/2026/08/bg-1.webp') no-repeat center center / cover;
	padding: 70px 0;
	text-align: center;
}
.contact-cta::before {
	content: "";
	position: absolute;
	inset: 0;


	z-index: 1;
}
.contact-cta .container { position: relative; z-index: 2; }
.contact-cta .section-head { margin-bottom: 10px; }
.contact-cta-inner h2 { color: #fff; margin-top:0px;}
.contact-cta-inner > p { color: rgba(255,255,255,.92); }
.contact-note { color: rgba(255,255,255,.85); }
.contact-actions .btn { border-radius: 50px; }
.contact-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.8); background: transparent; }
.contact-cta .btn-outline:hover { background: #fff; color: #333; border-color: #fff; }
.btn-whatsapp { background: #25d366; border-color: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb958; border-color: #1eb958; color: #fff; }
.contact-cta-inner h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.contact-cta-inner > p { color: #fff; font-size: 14px; max-width: 720px; margin: 0 auto 50px; line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.contact-actions .btn { padding: 12px 28px; font-size: 14px; }
.contact-note { font-size: 14px; color: rgba(255,255,255,.7); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #1f1f1f; color: #aaa; font-size: 14px; }
.footer-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	gap: 36px;
	padding: 70px 0 50px;
}
.footer-brand p { margin: 18px 0; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact li { display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: #ccc; }
.footer-contact strong { color: #fff; font-weight: 600; }
.footer-contact a { color: #ccc; }
.footer-contact a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	transition: all .2s ease;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-menu { display: flex; flex-direction: column; gap: 9px; }
.footer-menu a { color: #aaa; font-size: 13.5px; }
.footer-menu a:hover { color: var(--orange); padding-left: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-size: 13px; }
.copyright { margin: 0; color: #888; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #888; }
.footer-legal a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .45); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Fallback page ---------- */
.page-content { padding: 60px 0 90px; }
.page-title { font-size: 34px; margin-bottom: 30px; }
.pagination { display: flex; justify-content: center; margin-top: 40px; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: var(--radius); border: 1px solid var(--line); color: var(--ink-soft); font-weight: 600; }
.pagination .page-numbers.current { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.why-cards { grid-template-columns: repeat(2, 1fr); }
	.steps { flex-wrap: wrap; justify-content: center; min-height: clamp(320px, 44.5vw, 520px); padding-bottom: 0; }
	.step { width: 30%; margin-top: 0 !important; }
	.step-3 { order: -1; width: 100%; margin-bottom: 10px; }
	.about-us { margin-top: -100px; padding-top: 170px; }
	.about-us-stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
	.testimonial-cards { grid-template-columns: 1fr; }
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.menu-toggle { display: flex; }
	.main-navigation { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; }
	.main-navigation.open { display: block; }
	.main-navigation > ul { flex-direction: column; gap: 0; padding: 12px 24px; }
	.main-navigation .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 3px solid var(--orange); border-radius: 0; margin: 0 0 8px 16px; padding: 0 0 0 10px; display: none; }
	.main-navigation li.open > .sub-menu { display: block; }
	.lang-trigger { display: none; }
	.hero { min-height: 500px; align-items: flex-start; }
	.hero-inner { padding: 60px 24px; }
	.hero::before { background: rgba(0,0,0,.45); }
	.supplier-row { grid-template-columns: 1fr; gap: 30px; }
	.supplier-card { padding: 30px; min-height: 260px; }
	.supplier-card-body { max-width: 100%; text-align: center; background: rgba(0,0,0,.22); padding: 22px; border-radius: var(--radius); }
	.solution-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
	.solution-item { min-height: auto; }
	.solution-text { padding: 32px 24px; }
	.testimonial-cards { grid-template-columns: 1fr; }
	.steps { min-height: clamp(300px, 44.5vw, 420px); }
	.about-us { margin-top: -80px; padding-top: 150px; }
}

@media (max-width: 560px) {
	.why-cards { grid-template-columns: 1fr; }
	.step { width: 46%; }
	.step-3 { width: 100%; }
	.steps { min-height: clamp(260px, 44.5vw, 380px); padding-bottom: 0; }
	.about-us { margin-top: -60px; padding-top: 120px; }
	.about-us-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
	.about-us-stats .stat strong { font-size: 32px; }
	.blog-grid { grid-template-columns: 1fr; }
	.footer-columns { grid-template-columns: 1fr; }
	.hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
	.hero-actions .btn, .contact-actions .btn { width: 100%; }
	.footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ---------- Catalog / Taxonomy ---------- */
.catalog-banner {
	position: relative;
	background: no-repeat center center / cover;
	min-height: 240px;
	display: flex;
	align-items: center;
	text-align: center;
}
.catalog-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15));
	z-index: 1;
}
.catalog-banner-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}
.catalog-h1 {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.catalog-banner-title {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.catalog-breadcrumb {
	font-size: 14px;
	color: rgba(255,255,255,.9);
}
.catalog-breadcrumb a { color: #fff; }
.catalog-breadcrumb a:hover { color: var(--orange); }
.catalog-breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,.6); }
.catalog-breadcrumb .current { color: rgba(255,255,255,.7); }

.catalog-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 40px;
	padding-top: 40px;
	padding-bottom: 70px;
}

/* Content blocks */
.catalog-content { font-size: 15px; line-height: 1.8; color: var(--body); }
.catalog-content-above { margin-bottom: 36px; }
.catalog-content-below { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 36px; }
.catalog-content h2,
.catalog-content h3 { color: var(--ink); margin-top: 1.4em; }
.catalog-content h2 { font-size: 22px; }
.catalog-content h3 { font-size: 18px; }
.catalog-content table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.catalog-content th,
.catalog-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.catalog-content th { background: var(--cream); font-weight: 700; color: var(--ink); }
.catalog-content ul { padding-left: 20px; margin: 1em 0; }
.catalog-content li { margin-bottom: 6px; }
.catalog-content p { margin-bottom: 1em; }

/* Product grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.product-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-thumb { display: block; overflow: hidden; }
.product-thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s ease; }
.product-thumb:hover img { transform: scale(1.05); }
.product-thumb-placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%; aspect-ratio: 1 / 1;
	background: var(--orange-light); color: var(--orange);
	font-weight: 800; font-size: 18px; padding: 20px; text-align: center;
}
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-title { font-size: 16px; line-height: 1.35; margin-bottom: 8px; }
.product-title a { color: var(--ink); }
.product-title a:hover { color: var(--orange); }
.product-excerpt { font-size: 13.5px; color: var(--body); flex: 1; margin-bottom: 12px; }
.product-link { font-size: 14px; }

.no-products { padding: 40px 0; text-align: center; color: var(--body); }

/* Sidebar */
.catalog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.catalog-sidebar .widget {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 0;
	overflow: hidden;
}
.catalog-sidebar .widget-title {
	font-size: 15px;
	color: #fff;
	background: var(--orange);
	padding: 12px 18px;
	margin: 0;
	font-weight: 600;
}
.catalog-sidebar .widget > ul,
.catalog-sidebar .widget > p,
.catalog-sidebar .widget > .btn,
.catalog-sidebar .widget-contact-cta-inner { padding: 18px; }

.catalog-list { list-style: none; margin: 0; }
.catalog-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 18px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	transition: background .2s ease;
}
.catalog-list li:last-child { border-bottom: none; }
.catalog-list li:hover { background: var(--cream); }
.catalog-list li a { color: var(--ink-soft); font-weight: 500; flex: 1; transition: color .2s ease; }
.catalog-list li a:hover { color: var(--orange); }
.catalog-list li.current-cat { background: var(--orange-light); }
.catalog-list li.current-cat > a { color: var(--orange); font-weight: 700; }
.catalog-list .count { color: #aaa; font-size: 12px; }

.widget-contact-cta { text-align: center; }
.widget-contact-cta .widget-contact-cta-inner { padding: 20px 18px; }
.widget-contact-cta p { font-size: 13.5px; color: var(--body); margin-bottom: 16px; line-height: 1.6; }
.widget-contact-cta .btn { width: 100%; }

/* Catalog responsive */
@media (max-width: 1024px) {
	.catalog-layout { grid-template-columns: 1fr; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.product-grid { grid-template-columns: 1fr; }
	.catalog-h1-wrap { padding: 24px 0 20px; }
}

/* ---------- Single Product ---------- */
.product-detail { padding: 50px 0 70px; }

.product-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
}

/* Gallery */
.product-gallery { position: sticky; top: 90px; align-self: start; }
.gallery-main {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--cream);
}
.gallery-main img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-main .product-thumb-placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%; aspect-ratio: 1 / 1;
	background: var(--orange-light); color: var(--orange);
	font-weight: 800; font-size: 18px; padding: 20px; text-align: center;
}
.gallery-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.gallery-thumb {
	border: 2px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	padding: 0;
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	transition: border-color .2s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--orange); }

/* Summary */
.product-summary { display: flex; flex-direction: column; }
.product-detail-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.35;
	margin: 0 0 18px;
}
.product-content1 { font-size: 15px; line-height: 1.8; color: var(--body); margin-bottom: 16px; }
.product-content1 h2,
.product-content1 h3 { color: var(--ink); margin-top: 1.2em; }
.product-content1 h2 { font-size: 22px; }
.product-content1 h3 { font-size: 18px; }
.product-content1 p { margin-bottom: 1em; }
.product-content1 ul { padding-left: 20px; margin: 1em 0; }
.product-content1 li { margin-bottom: 6px; }
.product-content1 table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.product-content1 th,
.product-content1 td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.product-content1 th { background: var(--cream); font-weight: 700; color: var(--ink); }
.product-content1 img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1em 0; }

.product-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 0; align-items: flex-start; }
.btn-inquire, .btn-basket {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	width: 200px; padding: 10px 20px; border: 1.5px solid var(--orange); border-radius: 30px;
	background: transparent; color: var(--orange); font-size: 14px; font-weight: 600;
	text-decoration: none; transition: all .25s ease; cursor: pointer;
}
.btn-inquire:hover, .btn-basket:hover {
	background: var(--orange); color: #fff;
}
.btn-inquire svg, .btn-basket svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Description */
.product-description { margin-bottom: 60px; }
.section-title-row {
	display: flex;
	align-items: flex-end;
	margin: 0 0 30px 0;
	padding-left: 6px;
}
.product-section-title {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: var(--orange);
	padding: 8px 28px 8px 20px;
	transform: skewX(-12deg);
	margin: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.product-section-title span { display: inline-block; transform: skewX(12deg); }
.section-title-line {
	flex: 1;
	height: 2px;
	background: var(--orange);
	margin-left: -10px;
}
.product-content2 { font-size: 15px; line-height: 1.8; color: var(--body); }
.product-content2 h2 { font-size: 22px; color: var(--ink); margin-top: 1.4em; }
.product-content2 h3 { font-size: 18px; color: var(--ink); margin-top: 1.2em; }
.product-content2 p { margin-bottom: 1em; }
.product-content2 ul { padding-left: 20px; margin: 1em 0; }
.product-content2 li { margin-bottom: 6px; }
.product-content2 table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.product-content2 th,
.product-content2 td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.product-content2 th { background: var(--cream); font-weight: 700; color: var(--ink); }
.product-content2 img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1em 0; }

/* Related */
.product-related .product-grid { grid-template-columns: repeat(4, 1fr); }

/* Single product responsive */
@media (max-width: 1024px) {
	.product-top { grid-template-columns: 1fr; gap: 30px; }
	.product-gallery { position: static; }
	.product-related .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.product-detail { padding: 40px 0 50px; }
	.section-title-line { min-width: 30px; }
}
@media (max-width: 560px) {
	.container { padding: 0 24px; }
	.product-detail { padding: 30px 0 40px; }
	.product-top { gap: 24px; }
	.product-summary { padding: 0 8px; }
	.product-actions { flex-direction: column; align-items: stretch; }
	.product-actions .btn-inquire,
	.product-actions .btn-basket { width: 100%; }
	.product-related .product-grid { grid-template-columns: 1fr; }
	.product-section-title { font-size: 16px; padding: 7px 24px 7px 16px; }
	.product-detail-title { font-size: 20px; }
	.section-title-line { min-width: 20px; }
}

/* ---------- Default Page ---------- */
.page-content { padding: 50px 0 70px; }
.page-article { max-width: 960px; margin: 0 auto; }
.page-article h2 { font-size: 24px; color: var(--ink); margin: 1.5em 0 0.6em; }
.page-article h3 { font-size: 20px; color: var(--ink); margin: 1.3em 0 0.5em; }
.page-article p { font-size: 16px; line-height: 1.8; color: var(--body); margin-bottom: 1.1em; }
.page-article ul, .page-article ol { padding-left: 22px; margin: 1em 0; }
.page-article li { margin-bottom: 8px; }
.page-article blockquote {
	border-left: 4px solid var(--orange);
	padding: 12px 20px;
	margin: 1.5em 0;
	background: var(--cream);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--ink-soft);
}
.page-article img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1em 0; }
.page-article table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.page-article th, .page-article td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.page-article th { background: var(--cream); font-weight: 700; color: var(--ink); }
.page-article a { color: var(--orange); text-decoration: underline; }
.page-article a:hover { color: var(--orange-dark); }

@media (max-width: 560px) {
	.page-content { padding: 30px 0 50px; }
	.page-article p { font-size: 15px; }
}

/* Blog landing in catalog-layout (3 cols instead of 4) */
.catalog-main .blog-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
	.catalog-main .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.catalog-main .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Products Pagination ---------- */
.products-pagination { margin-top: 40px; }
.products-pagination ul {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.products-pagination li { margin: 0; }
.products-pagination a,
.products-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 14px;
	color: var(--ink-soft);
	text-decoration: none;
	transition: all .2s ease;
}
.products-pagination a:hover { border-color: var(--orange); color: var(--orange); }
.products-pagination .current {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
	font-weight: 600;
}

/* ---------- Single Post / Article ---------- */
.article-detail { margin-bottom: 50px; }

.article-meta {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 24px;
	font-size: 13px;
	color: #999;
}
.article-meta .article-cat {
	background: var(--orange-light);
	color: var(--orange);
	padding: 3px 12px;
	border-radius: 12px;
	font-weight: 600;
}

.article-featured { margin-bottom: 30px; border-radius: var(--radius-lg); overflow: hidden; }
.article-featured img { width: 100%; display: block; }

.article-content { font-size: 16px; line-height: 1.85; color: var(--body); }
.article-content h2 { font-size: 24px; color: var(--ink); margin: 1.5em 0 0.6em; }
.article-content h3 { font-size: 20px; color: var(--ink); margin: 1.3em 0 0.5em; }
.article-content p { margin-bottom: 1.1em; }
.article-content ul, .article-content ol { padding-left: 22px; margin: 1em 0; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
	border-left: 4px solid var(--orange);
	padding: 12px 20px;
	margin: 1.5em 0;
	background: var(--cream);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--ink-soft);
}
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1em 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.article-content th, .article-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.article-content th { background: var(--cream); font-weight: 700; color: var(--ink); }
.article-content a { color: var(--orange); text-decoration: underline; }
.article-content a:hover { color: var(--orange-dark); }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-tag {
	display: inline-block;
	padding: 5px 14px;
	background: var(--cream);
	color: var(--ink-soft);
	font-size: 13px;
	border-radius: 14px;
	text-decoration: none;
	transition: all .2s ease;
}
.article-tag:hover { background: var(--orange); color: #fff; }

.article-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
	margin-bottom: 40px;
}
.article-nav .prev, .article-nav .next { font-size: 14px; }
.article-nav .prev a, .article-nav .next a { color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.article-nav .prev a:hover, .article-nav .next a:hover { color: var(--orange); }
.article-nav .next { margin-left: auto; text-align: right; }

/* Recent posts widget */
.recent-posts-list { list-style: none; margin: 0; }
.recent-posts-list li { border-bottom: 1px solid var(--line); }
.recent-posts-list li:last-child { border-bottom: none; }
.recent-post-item {
	display: flex;
	gap: 12px;
	padding: 12px 18px;
	text-decoration: none;
	align-items: center;
	transition: background .2s ease;
}
.recent-post-item:hover { background: var(--cream); }
.recent-post-thumb { flex-shrink: 0; }
.recent-post-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius); }
.recent-post-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.recent-post-title {
	font-size: 14px;
	color: var(--ink-soft);
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.recent-post-date { font-size: 12px; color: #aaa; }

/* Single post responsive */
@media (max-width: 560px) {
	.article-content { font-size: 15px; }
	.article-meta { flex-wrap: wrap; gap: 10px; }
	.article-nav { flex-direction: column; gap: 12px; }
	.article-nav .next { text-align: left; margin-left: 0; }
	.recent-post-thumb img { width: 48px; height: 48px; }
}
