:root {
	--primary: #032e25;
	/* Deepest luxurious jasmine dark green (from tissue paper image) */
	--primary-light: #074538;
	/* Medium-dark rich jasmine green */
	--accent: #0d7a57;
	/* Vibrant forest jasmine green (from cover book image) */
	--accent-hover: #11996d;
	/* Light accent hover jasmine green */
	--accent-light: #e8f5f1;
	/* Very soft background green tint */
	--bg-light: #f2f7f5;
	/* Concrete green-tinted light background */
	--bg-card: #ffffff;
	--border-color: #dbebe5;
	/* Delicate greenish border */
	--text-dark: #032e25;
	--text-muted: #5c756f;
	--shadow-sm: 0 1px 3px rgba(3, 46, 37, 0.05), 0 1px 2px rgba(3, 46, 37, 0.02);
	--shadow-md: 0 4px 6px -1px rgba(3, 46, 37, 0.08), 0 2px 4px -1px rgba(3, 46, 37, 0.04);
	--shadow-lg: 0 10px 15px -3px rgba(3, 46, 37, 0.08), 0 4px 6px -2px rgba(3, 46, 37, 0.03);
	--shadow-premium: 0 20px 40px -10px rgba(3, 46, 37, 0.15);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Premium Scrollbar (Modern Jasmine Green Construction Theme) */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-light);
	border-left: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
	border: 2px solid var(--bg-light);
	border-radius: 10px;
	transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--accent-hover) 0%, var(--primary-light) 100%);
}

/* Firefox Support */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--accent) var(--bg-light);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', 'Noto Sans Thai', sans-serif;
	background-color: var(--bg-light);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Outfit', 'Noto Sans Thai', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Sticky Glassmorphism Header */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(219, 235, 229, 0.8);
	padding: 0.8rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

header.scrolled {
	padding: 0.6rem 2rem;
	box-shadow: var(--shadow-md);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	color: var(--primary);
}

.logo i {
	font-size: 2.2rem;
	color: var(--accent);
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover i {
	transform: rotate(360deg) scale(1.1);
}

.logo-img {
	height: 45px;
	width: auto;
	object-fit: contain;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
	transform: scale(1.08);
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-brand {
	font-size: 1.6rem;
	font-weight: 800;
	font-family: 'Outfit', sans-serif;
	line-height: 1;
	color: var(--primary);
	letter-spacing: 0.05em;
}

.logo-sub {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	color: var(--primary);
	/* color: var(--text-muted); */
	margin-top: 2px;
}

nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

nav a {
	text-decoration: none;
	color: var(--primary-light);
	font-weight: 500;
	font-size: 0.95rem;
	transition: var(--transition);
	position: relative;
	padding: 0.5rem 0;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: var(--transition);
}

nav a:hover {
	color: var(--accent);
}

nav a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.75rem 1.6rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-family: 'Outfit', 'Noto Sans Thai', sans-serif;
}

.btn-primary {
	background-color: var(--accent);
	color: white;
	box-shadow: 0 4px 14px rgba(13, 122, 87, 0.3);
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(13, 122, 87, 0.4);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-light);
	color: var(--primary-light);
}

.btn-outline:hover {
	background: var(--primary-light);
	color: white;
	transform: translateY(-2px);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--primary);
	cursor: pointer;
}

/* Parallax Hero Section (James Hardie style architecture presentation) */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background-image: linear-gradient(to right, rgba(3, 46, 37, 0.95) 30%, rgba(3, 46, 37, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 4rem 2rem;
	text-align: left;
}

.hero-content {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.hero-text h1 {
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-text h1 span {
	color: var(--accent);
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	color: #cbd5e1;
	max-width: 650px;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(13, 122, 87, 0.15);
	border: 1px solid rgba(13, 122, 87, 0.4);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
}

.hero-visual {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: var(--shadow-premium);
}

.hero-spec-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.hero-spec-icon {
	width: 50px;
	height: 50px;
	background: rgba(13, 122, 87, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--accent);
}

.hero-spec-info h4 {
	font-size: 1.1rem;
	color: white;
}

.hero-spec-info p {
	font-size: 0.85rem;
	color: #cbd5e1;
	margin: 0;
}

/* Stats section */
.stats-section {
	background-color: var(--primary);
	color: white;
	padding: 4rem 2rem;
}

.stats-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.stat-card h3 {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 0.5rem;
	font-weight: 800;
}

.stat-card p {
	font-size: 1rem;
	color: #cbd5e1;
}

/* Catalog Section */
.catalog-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Search & Filter bar styling */
.filter-container {
	background: white;
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	margin-bottom: 3.5rem;
	border: 1px solid var(--border-color);
}

.search-box {
	position: relative;
	max-width: 600px;
	margin: 0 auto 2rem auto;
}

.search-box input {
	width: 100%;
	padding: 1.1rem 1.5rem 1.1rem 3.5rem;
	border-radius: 50px;
	border: 2px solid var(--border-color);
	font-size: 1.05rem;
	font-family: inherit;
	transition: var(--transition);
	color: var(--primary);
}

.search-box input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(13, 122, 87, 0.1);
}

.search-box i {
	position: absolute;
	left: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 1.2rem;
}

.search-box .clear-search {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	font-size: 1.2rem;
	display: none;
}

/* Premium Tabs navigation */
.category-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 1rem;
}

.tab-btn {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	color: var(--primary-light);
	padding: 0.8rem 1.4rem;
	border-radius: 50px;
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
	transition: var(--transition);
	font-family: 'Outfit', 'Noto Sans Thai', sans-serif;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.tab-btn i {
	font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
	box-shadow: var(--shadow-sm);
}

.tab-btn.active i {
	color: var(--accent);
}

/* Products Grid Layout */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	transition: opacity 0.3s ease;
}

/* Product Card */
.product-card {
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid var(--border-color);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-premium);
	border-color: rgba(13, 122, 87, 0.3);
}

.product-img-wrapper {
	position: relative;
	padding-bottom: 90%;
	/* Aspect ratio square-ish */
	background-color: #f1f5f9;
	overflow: hidden;
}

.product-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-img {
	transform: scale(1.06);
}

.category-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(3, 46, 37, 0.85);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 2;
	backdrop-filter: blur(4px);
}

.product-info {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-name-eng {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.2rem;
	line-height: 1.2;
}

.product-name-th {
	font-size: 0.95rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 0.8rem;
}

.product-short-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-grow: 1;
}

.product-meta-specs {
	border-top: 1px solid var(--border-color);
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.meta-spec-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
}

.meta-spec-label {
	color: var(--text-muted);
	font-weight: 500;
}

.meta-spec-val {
	color: var(--primary);
	font-weight: 600;
	text-align: right;
}

.card-action-btn {
	width: 100%;
	background-color: var(--primary-light);
	color: white;
	text-align: center;
	padding: 0.8rem;
	font-weight: 600;
	border-radius: 6px;
	transition: var(--transition);
	text-decoration: none;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
}

.product-card:hover .card-action-btn {
	background-color: var(--accent);
	box-shadow: 0 4px 10px rgba(13, 122, 87, 0.2);
}

/* Creative Portfolio & Application Gallery (Inspired by James Hardie) */
.gallery-section {
	background-color: white;
	padding: 6rem 2rem;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	padding-bottom: 75%;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg);
}

.gallery-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(3, 46, 37, 0.95) 20%, rgba(3, 46, 37, 0));
	padding: 2rem 1.5rem;
	color: white;
}

.gallery-overlay h4 {
	font-size: 1.25rem;
	margin-bottom: 0.3rem;
}

.gallery-overlay p {
	font-size: 0.85rem;
	color: #cbd5e1;
}

/* Premium Modal Details Styling */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(3, 46, 37, 0.7);
	backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	padding: 2rem;
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.modal-box {
	background: white;
	width: 100%;
	max-width: 1000px;
	height: 90vh;
	max-height: 700px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-premium);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	position: relative;
	transform: scale(0.95);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-box {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	width: 36px;
	height: 36px;
	background: rgba(3, 46, 37, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	color: var(--primary);
	font-size: 1.1rem;
	transition: var(--transition);
	z-index: 10;
}

.modal-close:hover {
	background: var(--accent);
	color: white;
	transform: rotate(90deg);
}

.modal-gallery {
	position: relative;
	background-color: var(--primary);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-body {
	padding: 3rem 2.5rem;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.modal-header-info {
	margin-bottom: 1.5rem;
}

.modal-badge {
	display: inline-block;
	background: var(--accent-light);
	color: var(--accent);
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.modal-title-eng {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.2;
}

.modal-title-th {
	font-size: 1.1rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Modal Tabs menu */
.modal-nav {
	display: flex;
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 1.5rem;
	gap: 1.5rem;
}

.modal-nav-btn {
	background: none;
	border: none;
	padding: 0.6rem 0;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-muted);
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.modal-nav-btn.active {
	color: var(--accent);
}

.modal-nav-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
}

.modal-tab-content {
	display: none;
	flex-grow: 1;
}

.modal-tab-content.active {
	display: block;
}

/* Specs list styling */
.specs-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}

.specs-table th,
.specs-table td {
	padding: 0.8rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.9rem;
}

.specs-table th {
	font-weight: 600;
	color: var(--text-muted);
	width: 35%;
	background-color: var(--bg-light);
}

.specs-table td {
	color: var(--primary);
	font-weight: 500;
}

.product-full-desc {
	color: var(--primary-light);
	font-size: 0.95rem;
	line-height: 1.7;
	white-space: pre-line;
}

/* Interactive Calculator Interface */
.calculator-card {
	background: var(--bg-light);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.calculator-header {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.2rem;
}

.calculator-header i {
	font-size: 1.4rem;
	color: var(--accent);
}

.calculator-header h4 {
	font-size: 1.05rem;
	color: var(--primary);
}

.calc-row {
	margin-bottom: 1rem;
}

.calc-row label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}

.calc-input-group {
	display: flex;
	align-items: center;
	position: relative;
}

.calc-input-group input {
	width: 100%;
	padding: 0.8rem 3rem 0.8rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary);
}

.calc-input-group span {
	position: absolute;
	right: 1rem;
	font-size: 0.9rem;
	color: var(--text-muted);
	font-weight: 600;
}

.calc-result-box {
	background: var(--accent-light);
	border: 1px dashed var(--accent);
	border-radius: 8px;
	padding: 1.2rem;
	text-align: center;
	margin-top: 1.5rem;
}

.calc-result-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.calc-result-val {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1.2;
}

.calc-result-val small {
	font-size: 1rem;
	font-weight: 600;
	margin-left: 0.4rem;
}

/* Form Styling inside modal */
.inquiry-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-group label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
}

.form-group input,
.form-group textarea {
	padding: 0.8rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-family: inherit;
	font-size: 0.9rem;
	transition: var(--transition);
	color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(13, 122, 87, 0.15);
}

.form-submit-btn {
	background-color: var(--accent);
	color: white;
	padding: 0.9rem;
	font-weight: 700;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	font-size: 0.95rem;
	font-family: 'Outfit', 'Noto Sans Thai', sans-serif;
	margin-top: 0.5rem;
}

.form-submit-btn:hover {
	background-color: var(--accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(13, 122, 87, 0.2);
}

/* Success State inside modal */
.modal-success-state {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem 1.5rem;
	flex-grow: 1;
}

.modal-success-state.active {
	display: flex;
}

.success-icon-wrapper {
	width: 80px;
	height: 80px;
	background-color: #f0fdf4;
	border: 2px solid #22c55e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #22c55e;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popSuccess {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.modal-success-state h3 {
	font-size: 1.5rem;
	color: #166534;
	margin-bottom: 0.8rem;
}

.modal-success-state p {
	font-size: 0.95rem;
	color: var(--text-muted);
	max-width: 320px;
	margin-bottom: 2rem;
}

/* Premium Toast System */
.toast-container {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1100;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.toast {
	background: white;
	color: var(--primary);
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: var(--shadow-lg);
	border-left: 4px solid var(--accent);
	display: flex;
	align-items: center;
	gap: 1rem;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-weight: 500;
	font-size: 0.9rem;
}

.toast.active {
	transform: translateY(0);
	opacity: 1;
}

.toast i {
	font-size: 1.2rem;
	color: var(--accent);
}

/* Footer */
footer {
	background-color: var(--primary);
	color: white;
	padding: 6rem 2rem 2rem 2rem;
	border-top: 4px solid var(--accent);
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto 4rem auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 3rem;
}

.footer-col h4 {
	font-size: 1.1rem;
	color: white;
	margin-bottom: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--accent);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: white;
	text-decoration: none;
	margin-bottom: 1.5rem;
}

.footer-logo i {
	font-size: 2rem;
	color: var(--accent);
}

.footer-logo-img {
	height: 38px;
	width: auto;
	object-fit: contain;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo:hover .footer-logo-img {
	transform: scale(1.08);
}

.footer-logo span {
	font-size: 1.4rem;
	font-weight: 800;
	font-family: 'Outfit', sans-serif;
	letter-spacing: 0.05em;
}

.footer-desc {
	color: #94a3b8;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.footer-socials {
	display: flex;
	gap: 1rem;
}

.social-icon {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e1;
	text-decoration: none;
	transition: var(--transition);
	font-size: 1rem;
}

.social-icon:hover {
	background-color: var(--accent);
	color: white;
	transform: translateY(-3px);
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.8rem;
}

.footer-col ul li a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition);
}

.footer-col ul li a:hover {
	color: var(--accent);
	padding-left: 5px;
}

.contact-info-list {
	list-style: none;
}

.contact-info-list li {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.2rem;
	font-size: 0.9rem;
	color: #cbd5e1;
}

.contact-info-list i {
	color: var(--accent);
	font-size: 1.1rem;
	margin-top: 3px;
}

.contact-info-list a {
	color: #cbd5e1;
	text-decoration: none;
	transition: var(--transition);
}

.contact-info-list a:hover {
	color: white;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #cbd5e1;
	font-size: 0.85rem;
}

.footer-bottom-links {
	display: flex;
	gap: 2rem;
}

.footer-bottom-links a {
	color: #cbd5e1;
	text-decoration: none;
	transition: var(--transition);
}

.footer-bottom-links a:hover {
	color: white;
}

/* Mobile Drawer Styling */
@media (max-width: 992px) {
	header {
		padding: 0.8rem 1.5rem;
	}

	.menu-toggle {
		display: block;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: white;
		box-shadow: var(--shadow-lg);
		flex-direction: column;
		align-items: flex-start;
		padding: 6rem 2rem;
		gap: 2rem;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
		z-index: 99;
	}

	nav.active {
		right: 0;
	}

	.header-actions {
		display: none;
		/* will embed inside navigation drawer if needed */
	}

	.hero {
		background-attachment: scroll;
		padding: 6rem 1.5rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-text h1 {
		font-size: 2.8rem;
	}

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

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.modal-box {
		grid-template-columns: 1fr;
		height: 85vh;
		max-height: initial;
	}

	.modal-gallery {
		height: 200px;
	}

	.modal-body {
		padding: 2rem 1.5rem;
	}

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

@media (max-width: 600px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}

	.footer-bottom-links {
		flex-direction: column;
		gap: 0.8rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

/* Custom Added Sections Styling */

/* Product Highlights Section styling */
.highlights-section {
	padding: 6rem 2rem;
	background-color: white;
}

.highlight-tag {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	z-index: 2;
	color: white;
	text-transform: uppercase;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.tag-new {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.tag-recommended {
	background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.tag-bestseller {
	background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

/* Standards Section styling */
.standards-section {
	padding: 6rem 2rem;
	background-color: var(--primary);
	color: white;
	position: relative;
	overflow: hidden;
}

.standards-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(13, 122, 87, 0.15) 0%, rgba(0,0,0,0) 70%);
	z-index: 1;
}

.standards-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 2;
}

.standard-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 2rem;
	transition: var(--transition);
	backdrop-filter: blur(10px);
}

.standard-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(13, 122, 87, 0.4);
	transform: translateY(-5px);
}

.standard-icon {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.standard-card h4 {
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
	color: white;
}

.standard-card p {
	font-size: 0.9rem;
	color: #cbd5e1;
	line-height: 1.6;
}

/* Knowledge Section styling */
.knowledge-section {
	padding: 6rem 2rem;
	background-color: var(--bg-light);
}

.knowledge-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}

.knowledge-card {
	background: white;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.knowledge-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-premium);
	border-color: rgba(13, 122, 87, 0.3);
}

.knowledge-img-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	overflow: hidden;
	background-color: #f1f5f9;
}

.knowledge-img-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.knowledge-card:hover .knowledge-img-wrapper img {
	transform: scale(1.05);
}

.knowledge-info {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.knowledge-date {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.knowledge-card h3 {
	font-size: 1.3rem;
	color: var(--primary);
	margin-bottom: 0.8rem;
	line-height: 1.4;
}

.knowledge-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-grow: 1;
	line-height: 1.6;
}

.view-knowledge-btn {
	background: none;
	border: none;
	color: var(--accent);
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	padding: 0;
	transition: var(--transition);
	margin-top: auto;
}

.view-knowledge-btn:hover {
	color: var(--accent-hover);
	gap: 0.8rem;
}
