:root {
	--cb-green: #7cb342;
	--cb-green-dark: #558b2f;
	--cb-orange: #f15a24;
	--cb-orange-dark: #d84315;
	--cb-blue: #4a78c4;
	--cb-blue-dark: #1e3c72;
	--cb-gray-bg: #f5f7fa;
	--cb-text: #26313d;
	--cb-white: #ffffff;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; width: 100%; }
body {
	margin: 0;
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: var(--cb-text);
	background: var(--cb-white);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 26px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--cb-orange); color: #fff; }
.btn-primary:hover { background: var(--cb-orange-dark); }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-white { background: #fff; color: var(--cb-blue-dark); }
.btn-small { padding: 8px 14px; font-size: 14px; width: 100%; margin-top: 10px; }
.btn-add-quote { background: var(--cb-green); color: #fff; }
.btn-add-quote:hover { background: var(--cb-green-dark); }

/* Topbar */
.topbar { background: var(--cb-blue-dark); color: #fff; font-size: 13px; padding: 6px 0; }
.topbar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; word-break: break-word; }

/* Header */
.site-header { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.site-logo img { height: 60px; width: auto; }
.main-nav .menu { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.main-nav .menu a { font-weight: 600; color: var(--cb-text); }
.main-nav .menu a:hover, .main-nav .menu a.active { color: var(--cb-orange); }

/* Mobile hamburger menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.mobile-menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background: var(--cb-blue-dark);
	border-radius: 2px;
	transition: transform .2s, opacity .2s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.quote-cart-btn { background: var(--cb-green); color: #fff; padding: 10px 18px; border-radius: 6px; font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(120deg, var(--cb-blue-dark), var(--cb-blue)); color: #fff; padding: 60px 0 50px; }
.hero-inner { display: flex; align-items: center; justify-content: center; }
.hero-text { flex: 1; }
.hero-text-full { text-align: center; max-width: 760px; margin: 0 auto; }
.hero-text h1 { font-size: 2.4rem; margin-bottom: 16px; }
.hero-text p { font-size: 1.1rem; opacity: .9; max-width: 560px; }
.hero-text-full p { margin-left: auto; margin-right: auto; }
.hero-actions { margin-top: 24px; display: flex; gap: 14px; }
.hero-text-full .hero-actions { justify-content: center; }

/* Hero photo gallery slider */
.hero-gallery { width: 100%; background: linear-gradient(120deg, var(--cb-blue-dark), var(--cb-blue)); }
.hero-gallery-slider { position: relative; width: 100%; height: 460px; overflow: hidden; }
.hero-slide {
	position: absolute; inset: 0;
	opacity: 0; transition: opacity 1.2s ease-in-out; z-index: 1;
	overflow: hidden;
}
.hero-slide-bg {
	position: absolute; inset: -20px;
	background-size: cover; background-position: center; background-repeat: no-repeat;
	filter: blur(25px) brightness(0.55);
	transform: scale(1.15);
}
.hero-slide-fg {
	position: absolute; inset: 0;
	background-size: contain; background-position: center; background-repeat: no-repeat;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-gallery-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s; }
.hero-dot.active { background: var(--cb-orange); }
.hero-gallery-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(0,0,0,.35); color: #fff; border: none;
	font-size: 18px; cursor: pointer; z-index: 6;
	display: flex; align-items: center; justify-content: center;
	transition: background .2s;
}
.hero-gallery-arrow:hover { background: rgba(0,0,0,.6); }
.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }
@media (max-width: 600px) {
	.hero-gallery-arrow { width: 36px; height: 36px; font-size: 15px; }
	.hero-arrow-prev { left: 8px; }
	.hero-arrow-next { right: 8px; }
}

@media (max-width: 600px) {
	.hero-gallery-slider { height: 260px; }
	.footer-grid { grid-template-columns: 1fr; }
}

/* Section titles */
.section-title { text-align: center; font-size: 1.9rem; margin-bottom: 8px; color: var(--cb-blue-dark); }
.section-subtitle { text-align: center; color: #667; max-width: 600px; margin: 0 auto 30px; }
.section-cta { text-align: center; margin-top: 30px; }

/* Category grid */
.categories-section { padding: 60px 0 20px; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.category-card { background: var(--cb-gray-bg); border-radius: 10px; padding: 30px 20px; text-align: center; border: 2px solid transparent; transition: .2s; }
.category-card:hover { border-color: var(--cb-orange); transform: translateY(-4px); }
.category-icon-img { width: 64px; height: 64px; margin: 0 auto 10px; }
.category-real-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.category-card-main { display: block; }
.category-subchips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid #e2e8f0; }
.subchip { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #dbe3ee; border-radius: 20px; padding: 5px 12px 5px 6px; font-size: 13px; font-weight: 600; color: var(--cb-blue-dark); }
.subchip:hover { border-color: var(--cb-orange); color: var(--cb-orange); }
.subchip .category-icon-img { width: 22px; height: 22px; margin: 0; }
.subcategory-grid { margin-bottom: 40px; }
.cat-filter-list .category-icon-img { width: 18px; height: 18px; margin: 0 6px 0 0; vertical-align: middle; }
.cat-filter-sublist { list-style: none; padding-left: 22px; margin: 6px 0 12px; }
.cat-filter-sublist li { margin-bottom: 6px; font-size: 14px; }
.category-card h3 { margin: 8px 0 4px; color: var(--cb-blue-dark); }
.category-card span { color: var(--cb-green-dark); font-size: 14px; }

/* Product grid & cards */
.featured-products { padding: 50px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; justify-items: stretch; }
.product-card { background: #fff; border: 1px solid #e6e9ee; border-radius: 10px; overflow: hidden; transition: .2s; width: 100%; max-width: 290px; margin: 0 auto; }
.product-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.09); transform: translateY(-3px); }
.product-card-img { position: relative; display: flex; align-items: center; justify-content: center; height: 190px; background: #fff; padding: 12px; overflow: hidden; }
.product-card-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.product-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; background: var(--cb-gray-bg); }
.placeholder-icon-img { width: 56px; height: 56px; opacity: .85; }
.product-placeholder.large { aspect-ratio: 1/1; }
.stock-badge { position: absolute; top: 10px; right: 10px; padding: 4px 10px; border-radius: 4px; font-size: 12px; color: #fff; font-weight: 600; }
.stock-badge.in_stock { background: var(--cb-green); }
.stock-badge.on_order { background: var(--cb-orange); }
.stock-badge.out_of_stock { background: #c0392b; }
.product-card-body { padding: 14px; }
.product-brand { font-size: 12px; color: var(--cb-green-dark); font-weight: 700; text-transform: uppercase; }
.product-title { font-size: 16px; margin: 6px 0; }
.product-title a:hover { color: var(--cb-orange); }
.product-price { font-weight: 700; color: var(--cb-blue-dark); margin-bottom: 6px; }

/* Channel grid */
.channels-section { background: var(--cb-gray-bg); padding: 60px 0; }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.channel-card { background: #fff; border-radius: 12px; padding: 22px 16px 18px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.06); border: 1px solid #e8edf4; }
.channel-logo-wrap { height: 72px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; background: #f8fafc; border-radius: 10px; padding: 10px; }
.channel-card img { max-height: 56px; width: auto; max-width: 100%; margin: 0 auto; object-fit: contain; }
.channel-card h3 { font-size: 14px; margin: 4px 0 0; color: var(--cb-blue-dark); font-weight: 700; }
.channel-placeholder { margin-bottom: 10px; display: flex; justify-content: center; }
.channel-badge { display: inline-block; background: var(--cb-orange); color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 11px; margin-top: 4px; font-weight: 700; }
.channel-badge.badge-4k { background: var(--cb-blue-dark); }
.channel-freq { font-size: 12px; color: #667; margin-top: 4px; }

/* CTA strip */
.cta-strip { background: linear-gradient(120deg, var(--cb-green), var(--cb-green-dark)); color: #fff; padding: 50px 0; text-align: center; }
.cta-strip h2 { margin: 0 0 8px; }

/* Shop layout */
.shop-page { padding: 40px 0; }
.page-title { color: var(--cb-blue-dark); }
.shop-layout { display: flex; gap: 30px; margin-top: 20px; }
.shop-sidebar { width: 230px; flex-shrink: 0; }
.cat-filter-list { list-style: none; padding: 0; }
.cat-filter-list li { margin-bottom: 8px; }
.cat-filter-list li.active a, .cat-filter-list li a:hover { color: var(--cb-orange); font-weight: 700; }
.shop-main { flex: 1; }

/* Single product */
.single-product { padding: 40px 0; }
.single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.single-product-image { max-width: 420px; height: 300px; margin: 0 auto; background: #fff; border: 1px solid #e6e9ee; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 16px; overflow: hidden; }
.single-product-image img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.single-price { font-size: 1.6rem; font-weight: 700; color: var(--cb-orange); margin: 12px 0; }
.stock-tag { display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: 13px; color: #fff; margin-bottom: 16px; }
.stock-in_stock { background: var(--cb-green); }
.stock-on_order { background: var(--cb-orange); }
.stock-out_of_stock { background: #c0392b; }
.single-actions { display: flex; gap: 10px; align-items: center; margin: 20px 0; }
.qty-input { width: 70px; padding: 10px; border: 1px solid #ccc; border-radius: 6px; }
.product-specs ul { padding-left: 20px; }
.breadcrumb-cats a { color: var(--cb-blue); font-size: 13px; margin-right: 8px; }
.related-products { margin-top: 60px; }

/* Quote cart & forms */
.quote-cart-page, .contact-page { padding: 40px 0; }
.quote-cart-items { margin: 20px 0; }
.cart-line-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #eee; }
.cart-line-item button { background: none; border: none; color: #c0392b; cursor: pointer; font-weight: 600; }
.quote-request-form { background: var(--cb-gray-bg); padding: 30px; border-radius: 10px; margin-top: 30px; max-width: 700px; }
.form-row { display: flex; gap: 16px; }
.form-field { flex: 1; margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-field input, .form-field textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-family: inherit; }
.form-response { margin-top: 14px; font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; margin-top: 20px; }

/* Footer */
.site-footer { background: var(--cb-blue-dark); color: #dce4f0; padding: 50px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-logo { height: 50px; margin-bottom: 12px; background: #fff; padding: 6px 10px; border-radius: 8px; display: inline-block; }
.footer-col h4 { color: #fff; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--cb-orange); }
.footer-widget { max-width: 100%; }
.footer-widget * { max-width: 100%; box-sizing: border-box; }
.footer-widget form { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-widget input[type="search"],
.footer-widget input[type="text"] { flex: 1 1 140px; min-width: 0; padding: 8px 10px; border-radius: 4px; border: none; }
.footer-widget button,
.footer-widget input[type="submit"] { flex-shrink: 0; padding: 8px 14px; border-radius: 4px; border: none; cursor: pointer; background: var(--cb-orange); color: #fff; font-weight: 600; }
.footer-bottom { background: rgba(0,0,0,.2); text-align: center; padding: 16px 0; font-size: 13px; margin-top: 20px; }

/* Responsive */
@media (max-width: 900px) {
	.hero-inner { flex-direction: column; text-align: center; }
	.single-product-grid { grid-template-columns: 1fr; }
	.shop-layout { flex-direction: column; }
	.shop-sidebar { width: 100%; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.mobile-menu-toggle { display: flex; order: 2; }
	.header-actions { order: 3; }
	.main-nav {
		display: none;
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		box-shadow: 0 8px 16px rgba(0,0,0,.1);
		z-index: 200;
	}
	.main-nav.open { display: block; }
	.main-nav .menu { flex-direction: column; gap: 0; padding: 10px 0; }
	.main-nav .menu li { border-bottom: 1px solid #eee; }
	.main-nav .menu a { display: block; padding: 14px 20px; }
	.header-inner { position: relative; flex-wrap: wrap; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.channel-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Partners page */
.featured-partners-section { padding: 50px 0 20px; background: #fff; }
.featured-partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.partner-card-featured {
	position: relative;
	background: var(--cb-gray-bg);
	border: 2px solid var(--cb-orange);
	border-radius: 16px;
	padding: 30px 20px 22px;
	text-align: center;
	box-shadow: 0 14px 30px rgba(241,90,36,.12);
	min-width: 0;
}
.featured-tag {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	background: var(--cb-orange); color: #fff; font-size: 11px; font-weight: 700;
	padding: 4px 12px; border-radius: 20px; letter-spacing: .3px;
	box-shadow: 0 4px 10px rgba(241,90,36,.35);
	white-space: nowrap;
}
.partner-logo-real {
	width: 190px; height: 110px;
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	margin: 10px auto 16px;
	box-shadow: 0 10px 22px rgba(30,60,114,.12);
	display: flex; align-items: center; justify-content: center;
}
.partner-logo-real a {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
}
.partner-logo-real img { max-width: 100%; max-height: 100%; margin: auto; object-fit: contain; }
.partner-card-featured .partner-name { font-size: 15px; font-weight: 700; color: var(--cb-blue-dark); margin: 0; min-height: 0; }
.work-summary-section { padding: 40px 0 50px; background: var(--cb-gray-bg); }
.work-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.work-summary-card {
	background: #fff; border-radius: 14px; padding: 26px 24px;
	box-shadow: 0 10px 22px rgba(30,60,114,.10);
}
.work-summary-card h3 { margin: 0 0 10px; font-size: 17px; color: var(--cb-blue-dark); }
.work-summary-card p { margin: 0; font-size: 14.5px; color: #47535e; }
.partner-name { font-size: 13.5px; font-weight: 600; color: var(--cb-text); line-height: 1.4; min-height: 36px; }

.work-gallery-section { padding: 60px 0; }
.work-gallery-content { margin-top: 10px; }
.work-gallery-content img {
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.work-gallery-content .wp-block-gallery { margin-top: 10px; }

@media (max-width: 600px) {
	.featured-partners-grid { grid-template-columns: 1fr; }
	.work-summary-grid { grid-template-columns: 1fr; }
	.partner-logo-real { width: 100%; max-width: 190px; height: 90px; }
	.product-grid { grid-template-columns: repeat(1, 1fr); }
	.channel-grid { grid-template-columns: repeat(1, 1fr); }
}

/* Quote form: WhatsApp button + divider (Quote Cart & Contact pages) */
.form-note { font-size: 13px; color: #667; margin-top: 10px; }
.or-divider { display: flex; align-items: center; text-align: center; margin: 16px 0; color: #98a2b3; font-size: 13px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; border-bottom: 1px solid #dbe3ee; }
.or-divider span { padding: 0 12px; }
.btn-whatsapp {
	background: #25d366; color: #fff; width: 100%; padding: 14px; font-size: 15px;
	display: flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 8px;
	cursor: pointer; font-weight: 700;
}
.btn-whatsapp:hover { background: #1fb855; }

/* ===================== Additional site-wide components ===================== */

/* Dropdown nav for categories */
.main-nav .menu li { position: relative; }
.main-nav .has-dropdown > a::after { content: ' \25BE'; font-size: 11px; }
.main-nav .dropdown { list-style: none; margin: 0; padding: 8px 0; position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.12); border-radius: 8px; display: none; z-index: 300; }
.main-nav .has-dropdown:hover .dropdown { display: block; }
.main-nav .dropdown li a { display: block; padding: 9px 18px; font-weight: 500; }
.main-nav .dropdown li a:hover { background: var(--cb-gray-bg); color: var(--cb-orange); }
@media (max-width: 900px) {
	.main-nav .dropdown { position: static; box-shadow: none; display: none; padding-left: 14px; }
	.main-nav .has-dropdown.open .dropdown { display: block; }
}

/* Breadcrumb */
.breadcrumb-trail { font-size: 13px; color: #667; padding: 14px 0; }
.breadcrumb-trail a { color: var(--cb-blue); }
.breadcrumb-trail span { margin: 0 6px; }

/* Alerts / notices */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #eaf7e9; color: var(--cb-green-dark); border: 1px solid #bfe6bc; }
.alert-error { background: #fdecea; color: #b23327; border: 1px solid #f6c6c1; }
.alert-info { background: #eaf2fd; color: var(--cb-blue-dark); border: 1px solid #c8dcf6; }

/* Generic page hero (About / Services / Projects / News / Gallery / Contact) */
.page-hero { background: linear-gradient(120deg, var(--cb-blue-dark), var(--cb-blue)); color: #fff; padding: 46px 0; text-align: center; }
.page-hero h1 { font-size: 2.1rem; margin: 0 0 8px; }
.page-hero p { max-width: 640px; margin: 0 auto; opacity: .9; }

/* Services grid */
.services-section { padding: 60px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px; }
.service-card { background: var(--cb-gray-bg); border-radius: 10px; padding: 28px 22px; transition: .2s; border: 2px solid transparent; }
.service-card:hover { border-color: var(--cb-orange); transform: translateY(-4px); }
.service-card img { width: 54px; height: 54px; margin-bottom: 14px; }
.service-card h3 { color: var(--cb-blue-dark); margin: 0 0 8px; }
.service-card p { color: #556; font-size: 14.5px; margin: 0; }
.service-card a.service-more { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--cb-orange); }
.service-detail-hero-icon { width: 70px; height: 70px; margin-bottom: 16px; }

/* Projects grid */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; }
.project-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); transition: .2s; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0,0,0,.12); }
.project-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--cb-gray-bg); display: flex; align-items: center; justify-content: center; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; }
.project-card-body { padding: 16px 18px; }
.project-tag { display: inline-block; background: var(--cb-blue); color: #fff; font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 8px; }
.project-card-body h3 { margin: 4px 0 6px; color: var(--cb-blue-dark); }
.project-client { color: var(--cb-green-dark); font-weight: 600; font-size: 13.5px; }
.project-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding: 40px 0; }
.project-meta-box { background: var(--cb-gray-bg); border-radius: 10px; padding: 22px; }
.project-meta-box dt { font-weight: 700; color: var(--cb-blue-dark); margin-top: 12px; }
.project-meta-box dt:first-child { margin-top: 0; }
.project-meta-box dd { margin: 2px 0 0; color: #556; }
.project-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 10px; margin-top: 16px; }
.project-gallery-grid img { border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; }

/* News / blog */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; }
.news-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); transition: .2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0,0,0,.12); }
.news-card-img { aspect-ratio: 16/10; background: var(--cb-gray-bg); overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 16px 18px; }
.news-date { color: #98a2b3; font-size: 12.5px; font-weight: 600; text-transform: uppercase; }
.news-card-body h3 { margin: 6px 0; color: var(--cb-blue-dark); font-size: 1.05rem; }
.news-card-body h3 a:hover { color: var(--cb-orange); }
.news-excerpt { color: #556; font-size: 14px; }
.news-article { max-width: 820px; margin: 0 auto; padding: 40px 20px; }
.news-article img.featured { width: 100%; border-radius: 10px; margin-bottom: 24px; }
.news-article h1 { color: var(--cb-blue-dark); }
.news-article .news-meta { color: #98a2b3; font-size: 13.5px; margin-bottom: 20px; }
.news-content { line-height: 1.8; }
.news-content img { border-radius: 8px; }

/* Gallery */
.gallery-section { padding: 50px 0; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.gallery-filters a { padding: 8px 18px; border-radius: 20px; background: var(--cb-gray-bg); font-weight: 600; font-size: 13.5px; color: var(--cb-text); }
.gallery-filters a.active, .gallery-filters a:hover { background: var(--cb-orange); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; }
.gallery-item { border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--cb-gray-bg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; padding: 20px 12px 10px; font-size: 13px; opacity: 0; transition: .2s; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pagination a { padding: 8px 14px; border-radius: 6px; background: var(--cb-gray-bg); font-weight: 600; }
.pagination a.active { background: var(--cb-orange); color: #fff; }

/* About page */
.about-section { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-grid img { border-radius: 10px; box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.stats-strip { background: var(--cb-gray-bg); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 20px; text-align: center; }
.stat-item .stat-number { font-size: 2rem; font-weight: 800; color: var(--cb-orange); }
.stat-item .stat-label { color: #556; font-weight: 600; font-size: 13.5px; }

/* Static content pages (privacy/terms) */
.static-page { max-width: 820px; margin: 0 auto; padding: 40px 20px; line-height: 1.8; }
.static-page h3 { color: var(--cb-blue-dark); margin-top: 28px; }

@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; }
	.project-detail-grid { grid-template-columns: 1fr; }
}

/* Override: simple stacked form rows used on Contact / Quote Cart pages */
form .form-row { display: block; margin-bottom: 16px; }
form .form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
form .form-row input, form .form-row textarea {
	width: 100%; padding: 11px; border: 1px solid #ccc; border-radius: 6px; font-family: inherit; font-size: 14px;
}
.cart-lines .cart-line-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border: 1px solid #e6e9ee; border-radius: 8px; margin-bottom: 8px; background: var(--cb-gray-bg); }
.cart-lines .cart-line-item button { background: #c0392b; color: #fff; border: none; padding: 6px 12px; border-radius: 5px; cursor: pointer; font-size: 12.5px; }
.product-meta { color: #667; font-size: 14px; margin: 4px 0 10px; }
.single-product-info h1 { color: var(--cb-blue-dark); margin-bottom: 4px; }
