﻿/* -----------------------------------------------------------
   Defend.IT Systems – Global Design System Styles
   site.css
----------------------------------------------------------- */

/* ------------------------------
   1. Brand Variables
------------------------------ */
:root {
	--brand-primary: #0A1A2F;
	--brand-secondary: #0EA566;
	--brand-light: #F5F7FA;
	--space-xs: .25rem;
	--space-sm: .5rem;
	--space-md: 1rem;
	--space-lg: 2rem;
	--space-xl: 4rem;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--transition-fast: 0.2s ease;
	--transition-med: 0.35s ease;
	--bs-navbar-toggler-icon-bg: url("white hamburger svg");
}

/* ------------------------------
   2. Typography
------------------------------ */
body {
	font-family: "Roboto","Inter", "Segoe UI", Arial, sans-serif;
	color: #2C2C2C;
	background-color: white;
	line-height: 1.6;
}

h1, h2, h3, h4 {
	font-weight: 600;
	margin-bottom: var(--space-sm);
	color: var(--brand-primary);
}

p {
	margin-bottom: var(--space-md);
}

header {
	background: var(--brand-primary);
	color: var(--brand-light);
}

/* ------------------------------
   3. Layout Helpers
------------------------------ */
.section {
	padding: var(--space-xl) 0;
}

.section-light {
	background: var(--brand-light);
}

/* ------------------------------
   4. Buttons
------------------------------ */
.btn-primary {
	background-color: var(--brand-secondary);
	border-color: var(--brand-secondary);
	transition: var(--transition-fast);
}

	.btn-primary:hover {
		background-color: #0c8f58;
		border-color: #0c8f58;
	}

/* ------------------------------
   5. Cards (Clickable + Hover)
------------------------------ */
.card-clickable {
	border: none;
	border-radius: var(--radius-md);
	background: var(--brand-light);
	padding: var(--space-md);
	transition: var(--transition-med);
	cursor: pointer;

}

	.card-clickable:hover {
		transform: translateY(-4px);
		box-shadow: 0 8px 20px rgba(0,0,0,0.12);
		background: white;
		border-color: var(--brand-primary);
		box-shadow: 0 4px 12px rgba(0, 58, 120, 0.16);
	}

	/* Card title */
	.card-clickable h3 {
		font-size: 1.25rem;
		margin-bottom: var(--space-sm);
	}

.di-kit-card {
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	transition: transform .2s ease, box-shadow .2s ease;
}

	.di-kit-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 8px 20px rgba(0,0,0,0.12);
	}

.di-kit-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.di-kit-title {
	font-weight: 600;
}

.di-kit-desc {
	color: #555;
}
.di-carousel-card-wrapper {
	width: 100%;
}
.carousel-inner .carousel-item:only-child ~ .carousel-control-prev,
.carousel-inner .carousel-item:only-child ~ .carousel-control-next {
	display: none !important;
}

.di-kit-savings {
	background: #e8f8ef;
	color: #0a8a4a;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 600;
	display: inline-block;
	margin-top: 8px;
}


.di-card h5 {
	display: flex;
	align-items: flex-start; /* instead of center */

	flex-wrap: nowrap; /* Prevent wrapping */
	gap: 0.5rem; /* Adds spacing between icon and text */
}

	.di-card h5 i {
		flex-shrink: 0; /* Prevent icon from shrinking */
		font-size: 1.25rem; /* Adjust size if needed */
		line-height: 1; /* Helps vertical alignment */
		margin-top: 0.15rem; /* optional micro‑adjustment */
	}
	.di-card h5 span {
		flex: 1;
		min-width: 0; /* allows text to wrap properly */
	}


.di-card {
	background: #ffffff;
	border-radius: 0.75rem;
	border: 1px solid #e1e1e1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	padding: 0.75rem;
}

.di-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
	max-width: 100%;
}

	.di-card-link:hover .di-card {
		box-shadow: 0 4px 12px rgba(0, 58, 120, 0.16);
	}

.di-image-wrapper {
	position: relative;
	overflow: hidden;
	background: transparent;
}

.di-card-img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

.di-glass-badge {
	position: absolute;
	top: 0;
	left: 0;
	padding: 6px 12px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	z-index: 3;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom-right-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.25);
}




/* ------------------------------
   6. Hero Section
------------------------------ */

.di-hero-title {
	font-weight: 700;
	color: var(--brand-primary);
}

.di-hero-card {
	background: var(--brand-primary);
	color: #ffffff;
	border-radius: 0.75rem;
}

	.di-hero-card h5 {
		color: #ffffff;
	}



.hero {
	background: var(--brand-primary);
	color: white;
	padding: var(--space-xl) 0;
	text-align: center;
}

	.hero h1 {
		font-size: 2.5rem;
	}

.di-list-check {
	list-style: none;
	padding-left: 0;
}

	.di-list-check li::before {
		content: "✓";
		color: var(--di-accent);
		font-weight: bold;
		margin-right: .5rem;
	}

.di-link {
	color: var(--accent);
	cursor: pointer;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 1.9rem;
	}
}

/* ------------------------------
   7. Images
------------------------------ */
.img-left {
	float: left;
	margin-right: var(--space-md);
	margin-bottom: var(--space-md);
}

.img-responsive {
	width: 100%;
	height: auto;
	border-radius: var(--radius-sm);
}

/* ------------------------------
   8. Navigation Tweaks
------------------------------ */
.navbar {
	padding: var(--space-sm) var(--space-md);
	color: var(--brand-light);
	font-weight: 400;
}

.navbar-nav .nav-link:hover {
	color: var(--brand-secondary) !important;
}

.navbar-brand {
	font-weight: 700;
	/*color: var(--brand-primary) !important;*/
	color: var(--brand-light);
	background: var(--brand-primary);
}

.navbar-nav {
	font-weight: 400;
	/*color: var(--brand-primary) !important;*/
	color: var(--brand-light);
	background: var(--brand-primary);
}
.nav-link {
	color: var(--brand-light);
	font-weight: 400;
}
/* ------------------------------
   9. Footer
------------------------------ */
.footer {
	background: var(--brand-primary);
	padding: var(--space-lg) 0;
	text-align: left;
}


/* ------------------------------
   10. Utility Classes
------------------------------ */
.text-muted-small {
	font-size: .875rem;
	color: #777;
}

.rounded-sm {
	border-radius: var(--radius-sm);
}

.rounded-md {
	border-radius: var(--radius-md);
}

.rounded-lg {
	border-radius: var(--radius-lg);
}

.shadow-soft {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ------------------------------
   11. Responsive Grid Helpers
------------------------------ */
@media (max-width: 576px) {
	.mobile-center {
		text-align: center;
	}
}

/* ------------------------------
   12.  FAQ Page Layout
------------------------------ */

/* FAQ Page Layout */
.faq-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.faq-title {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
	color: #1a1a1a;
}

/* Accordion Item Styling */
.faq-item {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid #e5e5e5 !important;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

	.faq-item .accordion-button {
		font-size: 1.1rem;
		font-weight: 600;
		padding: 1.2rem 1.5rem;
		color: #222;
		background: #fff;
		border: none;
		box-shadow: none;
	}

		.faq-item .accordion-button:not(.collapsed) {
			background: #f8f9fa;
			color: #000;
		}

		.faq-item .accordion-button:focus {
			box-shadow: none;
		}

.faq-answer {
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
	padding: 1.2rem 1.5rem;
}

	/* Icon Styling */
	.faq-question i,
	.faq-answer i {
		font-size: 1.2rem;
		color: #0d6efd;
	}

/* Hover effect */
.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	color: #0077cc; /* hover colour */
}


.service-areas-hero {
	margin-bottom: 2rem;
}

.service-areas-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 2rem;
}

.suburb-group h2 {
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
}

.suburb-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.suburb-group li {
	margin: 0.25rem 0;
}

.suburb-group a {
	text-decoration: none;
	color: #0055aa;
}

	.suburb-group a:hover {
		text-decoration: underline;
		color: var(--brand-secondary);
	}


.suburb-hero {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #0a1a2f, #0f2f4f);
	color: white;
	margin-bottom: 2rem;
}

.suburb-hero__content {
	max-width: 900px;
	margin: 0 auto;
}

.suburb-hero h1 {
	font-size: 2.4rem;
	color: var(--brand-light);
	margin-bottom: 1rem;
}

.suburb-hero p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	padding: 0.8rem 1.6rem;
	background: #ffcc33;
	color: #000;
	font-weight: bold;
	border-radius: 6px;
	text-decoration: none;
}

	.cta-button:hover {
		background: #ffdd55;
		color: var(--brand-secondary);
	}

.suburb-risk {
	padding: 2rem;
	background: #f7f9fc;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.risk-score {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 1rem;
}

.risk-number {
	font-size: 3rem;
	font-weight: bold;
	color: #0a2a4a;
}

.risk-label {
	font-size: 1.2rem;
	font-weight: 600;
	color: #555;
}

.suburb-recommendations {
	padding: 2rem;
	background: #f4f7fb;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.recommendation-block {
	margin-bottom: 1.5rem;
}

	.recommendation-block h3 {
		margin-bottom: 0.5rem;
		color: #0a2a4a;
	}

.suburb-risk {
	padding: 2rem;
	background: #f7f9fc;
	border-radius: 8px;
	margin-bottom: 2rem;
}


.suburb-layout {
	padding: 2rem;
	background: #eef3f8;
	border-radius: 8px;
	margin-bottom: 2rem;
}

	.suburb-layout h3 {
		margin-top: 1.5rem;
		color: #0a2a4a;
	}

.suburb-hero-banner {
	position: relative;
	height: 420px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	color: #fff;
}

	.suburb-hero-banner .overlay {
		position: absolute;
		inset: 0;
		background: rgba(0,0,0,0); /* adjustable */
		z-index: 1;
	}
.hero-content {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	padding: 1.4rem 1.8rem;
	background: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--brand-light);
	border-radius: 10px;
	max-width: 520px;
}
	.hero-content h1 {
	color: var(--brand-light);
	}

/* ------------------------------
   BLOG POST LAYOUT
------------------------------ */
/* WRAPPER */
.blog-post-wrapper {
	max-width: 1050px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

/* HERO */
.blog-post-hero {
	text-align: center;
	margin-bottom: 2.5rem;
}

	.blog-post-hero h1 {
		font-size: 2.4rem;
		font-weight: 800;
		margin-bottom: .5rem;
		color: var(--brand-light);
	}

/* CARD CONTAINER */
.blog-card {
	background-color: var(--brand-primary);
	color: var(--brand-light);
	border-radius: 12px;
	padding: 1.2rem;
	transition: box-shadow .25s ease, transform .25s ease;
	border: 1px solid #e8e8e8;
}

	.blog-card:hover {
		box-shadow: 0 6px 18px rgba(0,0,0,0.08);
		transform: translateY(-3px);
	}

/* IMAGE */
.blog-card-image-link {
	display: block;
	margin-bottom: 1rem;
}

.blog-image-wrapper {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
	background: #f0f0f0;
}

	.blog-image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

/* CONTENT */
.blog-card-content {
	padding: 0 .2rem;
}

/* TITLE */
.blog-card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #222;
	text-decoration: none;
	display: inline-block;
	margin-bottom: .4rem;
	transition: color .2s ease;
}

	.blog-card-title:hover {
		color: var(--brand-secondary);
	}

/* META */
.blog-card-meta {
	font-size: .9rem;
	color: #777;
	margin-bottom: .8rem;
}

/* EXCERPT */
.blog-card-excerpt {
	color: #444;
	margin-bottom: 1rem;
}

/* READ MORE */
.blog-card-readmore {
	font-weight: 600;
	color: #0077cc;
	text-decoration: none;
}

	.blog-card-readmore:hover {
		text-decoration: underline;
		color: var(--brand-secondary);
	}



.blog-post-meta {
	color: #666;
	font-size: .95rem;
	margin-bottom: 1.5rem;
}

.blog-image-wrapper {
	width: 100%;
	aspect-ratio: 19 / 9; /* consistent shape */
	overflow: hidden;
	border-radius: 12px;
	background: #f5f5f5; /* optional placeholder */
}

	.blog-image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}


.blog-post-hero-image {
	width: 100%;
	max-width: 900px; /* optional: constrain max width */
	height: 420px; /* fixed height for consistency */
	object-fit: cover; /* crop without distortion */
	border-radius: 12px;
	display: block;
	margin: 0 auto;
}

/* FEATURED POST CARD */
.featured-post-card {
	background: #f9f9f9; /* subtle card background */
	border-radius: 14px;
	padding: 1.8rem;
	margin-bottom: 2.5rem;
	border: 1px solid #e6e6e6;
	transition: box-shadow .25s ease, transform .25s ease;
}

	.featured-post-card:hover {
		box-shadow: 0 8px 22px rgba(0,0,0,0.08);
		transform: translateY(-3px);
	}

/* Featured post title */
.featured-post-title {
	font-size: 2rem;
	font-weight: 800;
	margin-top: 1.2rem;
	margin-bottom: .6rem;
}

	.featured-post-title a {
		color: #222;
		text-decoration: none;
		transition: color .2s ease;
	}

		.featured-post-title a:hover {
			color: var(--brand-secondary);
		}

/* Featured post meta */
.featured-post-meta {
	color: #777;
	font-size: .95rem;
	margin-bottom: 1rem;
}

/* Featured post excerpt */
.featured-post-excerpt {
	color: #444;
	font-size: 1.05rem;
	margin-bottom: 1.2rem;
}


/* CONTENT */
.blog-post-content {
	font-size: 1.15rem;
	line-height: 1.75;
	color: #222;
}

	.blog-post-content h2 {
		margin-top: 2rem;
		margin-bottom: 1rem;
		font-size: 1.9rem;
		font-weight: 700;
	}

	.blog-post-content h3 {
		margin-top: 1.5rem;
		margin-bottom: .75rem;
		font-size: 1.5rem;
		font-weight: 700;
	}

	.blog-post-content p {
		margin-bottom: 1.25rem;
	}

	.blog-post-content img {
		width: 100%;
		border-radius: 10px;
		margin: 1.5rem 0;
	}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.blog-layout {
	background: var(--brand-primary);
	color: var(--brand-light);
	padding: 2rem;
}

	.blog-layout img {
		max-width: 100%;
		border-radius: 8px;
		margin: 1.5rem 0;
	}

	.blog-layout h1,
	.blog-layout h2,
	.blog-layout h3 {
		color: var(--brand-light);
	}



.blog-card {
	background: #fafafa;
	transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}

	.blog-card:nth-child(odd) {
		background: #f5f5f5;
	}

	.blog-card:hover {
		box-shadow: 0 8px 22px rgba(0,0,0,0.08);
		transform: translateY(-4px);
		background: #ffffff;
	}

.blog-card-badge {
	display: inline-block;
	background: #0077cc;
	color: #fff;
	padding: .25rem .6rem;
	border-radius: 6px;
	font-size: .75rem;
	font-weight: 600;
	margin-bottom: .6rem;
}


/* TAGS */
.blog-post-tags {
	margin-top: 2rem;
}

.blog-tag {
	display: inline-block;
	background: #eef6ff;
	color: #0077cc;
	padding: .35rem .75rem;
	border-radius: 6px;
	margin-right: .5rem;
	text-decoration: none;
	font-size: .9rem;
}

	.blog-tag:hover {
		background: #d9ecff;
	}




/* RELATED POSTS */
.related-posts {
	margin-top: 3rem;
}

	.related-posts h3 {
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
	}

/* ------------------------------
   13. Product Page Layout
------------------------------ */
.di-product-card {
	background-color: #e9ecef; /* slightly darker grey */
	border-radius: 0.5rem;
	transition: all 0.25s ease;
	border: 1px solid transparent;
	position: relative;
	overflow: visible; /* IMPORTANT */
}


.product-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--space-xl) var(--space-md);
}

/* Base container */
.breadcrumbs {
	font-size: .9rem;
	margin-bottom: var(--space-md);
	color: #666;
	opacity: 0;
	transform: translateY(4px);
	animation: breadcrumbFadeIn .4s ease-out forwards;
}

.swatch {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #ccc;
	display: inline-block;
	margin-right: 8px;
}


/* Fade-in animation */
@keyframes breadcrumbFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Track */
.breadcrumbs-track {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	flex-wrap: nowrap;
	white-space: nowrap;
}

/* Crumbs */
.crumb {
	color: var(--brand-primary);
	text-decoration: none;
	position: relative;
	transition: color .2s ease, transform .2s ease;
}

	/* Hover micro-lift */
	.crumb:hover {
		color: var(--brand-secondary);
		transform: translateY(-1px);
	}

/* Chevron separator */
.crumb-separator {
	display: inline-flex;
	align-items: center;
	opacity: .6;
	transition: opacity .2s ease;
}

.crumb:hover + .crumb-separator {
	opacity: 1;
}

/* Separator animation */
.crumb-separator {
	color: #aaa;
	opacity: .7;
	transition: opacity .2s ease;
}

.crumb:hover + .crumb-separator {
	opacity: 1;
}

/* Main layout: images + summary */
.product-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	margin-bottom: var(--space-xl);
}

.product-hero-image-wrapper {
	max-height: 480px;
	overflow: hidden;
	border-radius: 12px;
}

.description-frame {
	background: #f8f9fa; /* same light grey tone as spec alt rows */
	border: 1px solid #e2e2e2; /* subtle border */
	border-radius: 6px;
	padding: 20px 24px; /* tighter spacing */
	line-height: 1.55;
}

	/* Optional: tighten spacing inside markdown */
	.description-frame p,
	.description-frame ul,
	.description-frame ol {
		margin-bottom: 0.75rem;
	}

.product-hero-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.carousel-inner {
	max-width: 600px; /* controls the width */
	margin: 0 auto; /* centers the carousel */
}

.carousel-item img {
	max-height: 350px; /* controls the height */
	width: auto; /* prevents stretching */
	margin: 0 auto; /* centers the image */
	object-fit: contain; /* keeps full image visible */
	border-radius: 12px;
}

.carousel-zoom {
	transition: transform 0.3s ease;
	cursor: zoom-in;
}

	.carousel-zoom:hover {
		transform: scale(1.15);
	}

.carousel-item img {
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.carousel-item {
	padding: 10px 0;
}

/* Make carousel arrows high‑contrast */
.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: invert(1) brightness(200%);
	opacity: 0.9;
}

/* Optional: add a subtle circular background for visibility */
.carousel-control-prev,
.carousel-control-next {
	width: 48px;
	height: 48px;
	top: 50%;
	transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.55); /* dark circle */
	border-radius: 50%;
	padding: 12px;
}

/* Hover effect for clarity */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.85);
}

/* ------------------------------
   14. Image Gallery
------------------------------ */

.product-images {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	max-width: 480px;
	margin: 0 auto;
}

	.product-images .main-image {
		width: 100%;
		max-width: 480px; /* keeps image at a sane size */
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}

		.product-images .main-image img {
			width: 100%;
			height: auto;
			object-fit: contain;
			border-radius: var(--radius-md);
			box-shadow: 0 4px 12px rgba(0,0,0,0.08);
			background: white;
			padding: var(--space-sm);
		}

.thumbnail-strip {
	display: flex;
	gap: var(--space-sm);
	overflow-x: auto;
	padding-bottom: var(--space-xs);
}

	.thumbnail-strip .thumb {
		width: 80px;
		height: 80px;
		object-fit: contain;
		border-radius: var(--radius-sm);
		background: white;
		padding: var(--space-xs);
		border: 1px solid #e1e1e1;
		cursor: pointer;
		transition: var(--transition-fast);
	}

		.thumbnail-strip .thumb:hover {
			border-color: var(--brand-secondary);
			box-shadow: 0 2px 6px rgba(0,0,0,0.08);
		}

		


/* ------------------------------
   15. Product Summary (Right Column)
------------------------------ */

.product-summary h1 {
	font-size: 2rem;
	margin-bottom: var(--space-sm);
}

.short-desc {
	font-size: 1.05rem;
	color: #444;
	margin-bottom: var(--space-md);
}

.price {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brand-secondary);
	margin-bottom: var(--space-md);
}

.datasheet-link {
	display: inline-block;
	margin-top: var(--space-sm);
	color: var(--brand-primary);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition-fast);
}

	.datasheet-link:hover {
		color: var(--brand-secondary);
	}

/* ------------------------------
   16. Long Description
------------------------------ */

.product-description {
	margin-bottom: var(--space-xl);
}

	.product-description article {
		background: var(--brand-light);
		padding: var(--space-lg);
		border-radius: var(--radius-md);
		box-shadow: 0 2px 6px rgba(0,0,0,0.04);
	}

	/* Markdown headings inside description */
	.product-description h2,
	.product-description h3 {
		margin-top: var(--space-md);
	}

/* ------------------------------
   17. Specifications Table
------------------------------ */

.product-specs {
	margin-bottom: var(--space-xl);
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

	.spec-table tr:nth-child(even) {
		background: var(--brand-light);
	}

	.spec-table td {
		padding: var(--space-sm) var(--space-md);
		font-size: .95rem;
	}

.spec-key {
	font-weight: 600;
	color: var(--brand-primary);
	width: 35%;
}

/* ------------------------------
   18. Tags
------------------------------ */

.product-tags {
	margin-bottom: var(--space-xl);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.tag {
	background: var(--brand-light);
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--radius-sm);
	font-size: .85rem;
	text-decoration: none;
	color: var(--brand-primary);
	border: 1px solid #e1e1e1;
	transition: var(--transition-fast);
}

	.tag:hover {
		background: white;
		border-color: var(--brand-secondary);
		color: var(--brand-secondary);
		box-shadow: 0 2px 6px rgba(0,0,0,0.06);
	}

/* ------------------------------
   18. Product Grid
------------------------------ */

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: var(--space-lg);
	margin-top: var(--space-lg);
}

.product-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	transition: transform .15s ease, box-shadow .15s ease;
}

	.product-card:hover {
		transform: translateY(-3px);
		box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	}

.product-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.product-card-image {
	width: 100%;
	height: 180px;
	object-fit: contain;
	background: #f7f7f7;
}

.product-card-body {
	padding: var(--space-md);
}

.product-card-title {
	font-size: 1.1rem;
	margin-bottom: var(--space-sm);
}

.product-card-category {
	font-size: .85rem;
	color: #777;
	margin-bottom: var(--space-sm);
}

.product-card-summary {
	font-size: .9rem;
	color: #555;
}



/* ------------------------------
   MOBILE
------------------------------ */
@media (max-width: 700px) {
	.featured-post {
		grid-template-columns: 1fr;
	}

	.featured-post-content h2 {
		font-size: 1.6rem;
	}
}




/* ------------------------------
   MOBILE
------------------------------ */
/* Responsive */
@media (max-width: 600px) {
	.faq-title {
		font-size: 1.8rem;
	}

	.faq-item .accordion-button {
		font-size: 1rem;
		padding: 1rem;
	}
	.blog-container {
		padding: 1.5rem 1rem;
		font-size: 1rem;
	}

		.blog-container h1 {
			font-size: 2rem;
		}

		.blog-container h2 {
			font-size: 1.6rem;
		}
@media (max-width: 768px) {
  .card-content {
    flex-direction: row; /* not column */
  }
}
	/* MOBILE COLLAPSING --------------------------------------- */
	@media (max-width: 576px) {

		/* Hide middle crumbs */
		.breadcrumbs-track .crumb:nth-child(n+3):not(:last-child),
		.breadcrumbs-track .crumb-separator:nth-child(n+4):not(:last-child) {
			display: none;
		}

		/* Insert ellipsis between first and last */
		.breadcrumbs-track::before {
			content: "…";
			color: #999;
			margin: 0 .25rem;
		}
	}



}
