@charset "UTF-8";

/* ============================================================
   Guowei Chemical — Full Visual Redesign
   Deep navy + warm amber · editorial layout · bento grids
   ============================================================ */

:root {
	--color-bg: #f4f1ec;
	--color-bg-alt: #ebe6de;
	--color-surface: #ffffff;
	--color-dark: #0c1222;
	--color-dark-soft: #151d30;
	--color-navy: #1a2744;
	--color-text: #3d4659;
	--color-text-muted: #6b7589;
	--color-heading: #0c1222;
	--color-accent: #d4a017;
	--color-accent-light: #f0c040;
	--color-accent-dark: #a67c00;
	--color-border: rgba(12, 18, 34, 0.1);
	--color-border-strong: rgba(12, 18, 34, 0.18);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 32px;
	--shadow-sm: 0 2px 8px rgba(12, 18, 34, 0.06);
	--shadow-md: 0 8px 32px rgba(12, 18, 34, 0.1);
	--shadow-lg: 0 20px 60px rgba(12, 18, 34, 0.14);
	--font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
	--header-h: 4.5rem;
	--container: min(1200px, 92vw);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Base Typography ---- */

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	min-width: 0;
	padding-top: var(--header-h);
	-webkit-font-smoothing: antialiased;
}

body, input, select, textarea {
	font-family: var(--font-body);
	color: var(--color-text);
}

a {
	color: var(--color-navy);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

a:hover {
	color: var(--color-accent-dark);
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: none;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

p {
	margin: 0 0 1.25em;
}

strong, b {
	color: var(--color-heading);
	font-weight: 600;
}

hr {
	border-color: var(--color-border);
}

hr.major {
	margin: 3em 0;
	border-color: var(--color-border-strong);
}

/* ---- Header ---- */

#skel-layers-wrapper {
	padding-top: 0;
}

#header {
	background: rgba(12, 18, 34, 0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
	height: var(--header-h);
	line-height: 1;
	display: block !important;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

#header .header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container);
	height: 100%;
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 2rem);
}

#header .header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	height: 100%;
	padding: 0.5rem 0;
}

#header .header-logo img {
	position: static !important;
	left: auto !important;
	height: 2.6rem;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	filter: brightness(1.05);
}

#header nav {
	position: static;
	height: auto;
	line-height: 1;
	right: auto;
	top: auto;
}

#header nav > ul {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

#header nav > ul > li {
	margin-left: 0;
	display: block;
}

#header nav > ul > li a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.55em 0.85em;
	border-radius: var(--radius-sm);
	transition: color 0.2s, background 0.2s;
}

#header nav > ul > li a:hover {
	color: #fff;
	background: rgba(212, 160, 23, 0.15);
}

#header nav > ul > li a.is-active {
	color: #fff;
	background: rgba(212, 160, 23, 0.22);
	box-shadow: inset 0 -2px 0 var(--color-accent);
}

#header nav > ul > li.nav-cta a {
	background: var(--color-accent);
	color: var(--color-dark) !important;
	border-radius: 999px;
	padding: 0.55em 1.2em;
	box-shadow: none;
}

#header nav > ul > li.nav-cta a:hover {
	background: var(--color-accent-light);
	color: var(--color-dark) !important;
}

#header nav > ul > li.nav-cta a.is-active {
	background: var(--color-accent-light);
	color: var(--color-dark) !important;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.header-actions {
	display: none;
	align-items: center;
	gap: 0.4rem;
	flex-shrink: 0;
	margin-left: auto;
}

.header-social {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

/* Mobile menu toggle */
.nav-toggle {
	display: none;
	appearance: none;
	border: none;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transition: transform 0.25s var(--ease), opacity 0.2s;
}

#header.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

#header.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

#header.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Disable legacy skel mobile layers — prevents nav DOM move flash */
#navButton,
#navPanel {
	display: none !important;
}

/* ---- Buttons ---- */

.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	vertical-align: middle;
	background: var(--color-dark);
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	height: auto;
	line-height: 1;
	padding: 0.95em 1.8em;
	transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

input[type="submit"]:hover,
.button:hover {
	background: var(--color-navy);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.button.special,
input[type="submit"].special {
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
	color: var(--color-dark) !important;
}

.button.special:hover,
input[type="submit"].special:hover {
	background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
	color: var(--color-dark) !important;
}

.button.alt {
	background: transparent;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.35);
	color: #fff !important;
}

.button.alt:hover {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
}

.button.big {
	font-size: 0.88rem;
	padding: 1.05em 2.2em;
}

/* ---- Hero Banner ---- */

#banner {
	background: var(--color-dark);
	padding: 0;
	min-height: calc(100vh - var(--header-h));
	min-height: calc(100dvh - var(--header-h));
	display: flex;
	align-items: stretch;
	text-align: left;
	position: relative;
	overflow: hidden;
}

#banner:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(12, 18, 34, 0.92) 40%, rgba(12, 18, 34, 0.6) 100%),
		url("../images/Sodium_Bicarbonate_news_2.WEBP") center/cover no-repeat;
	z-index: 0;
}

#banner::after {
	content: "";
	position: absolute;
	right: -10%;
	top: 50%;
	transform: translateY(-50%);
	width: min(55vw, 680px);
	height: min(55vw, 680px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

#banner .inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 3vw, 2rem);
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 2.5rem;
	box-sizing: border-box;
}

#banner .banner-content {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

#banner .banner-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0 0 1.2em;
	padding: 0;
	border: none;
	border-radius: 0;
}

#banner .banner-kicker::before {
	content: "";
	width: 2.5rem;
	height: 2px;
	background: var(--color-accent);
}

#banner h2 {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	line-height: 1.05;
	margin: 0 0 0.4em;
	color: #fff;
	max-width: 14ch;
}

#banner .banner-subtitle {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 1.5em;
	letter-spacing: 0.04em;
}

#banner .banner-desc {
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 38em;
	margin: 0 0 2em;
	color: rgba(255, 255, 255, 0.72);
}

#banner .banner-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55em;
	list-style: none;
	padding: 0;
	margin: 0 0 2.5em;
	justify-content: flex-start;
}

#banner .banner-tags li {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 0.45em 1em;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	letter-spacing: 0.03em;
}

#banner .actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85em;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
}

#banner .actions li {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

#banner .button {
	min-width: 0;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

/* ---- Section Wrappers ---- */

.wrapper {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.wrapper.style1 {
	background: var(--color-bg);
	color: var(--color-text);
}

.wrapper.style2 {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.75);
}

.wrapper.style2 h2,
.wrapper.style2 h3 {
	color: #fff;
}

.wrapper.style2 header p {
	color: rgba(255, 255, 255, 0.5);
}

.wrapper.style2 .button.alt {
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3);
	color: #fff !important;
}

.wrapper.style2 .button.alt:hover {
	background: rgba(255, 255, 255, 0.08);
}

#main.wrapper {
	background: var(--color-bg);
	padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ---- Global layout (fix skel grid conflicts) ---- */

.container {
	width: 100% !important;
	max-width: var(--container) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: clamp(1rem, 3vw, 2rem) !important;
	padding-right: clamp(1rem, 3vw, 2rem) !important;
	box-sizing: border-box;
}

#main .container {
	width: 100%;
	max-width: var(--container);
	box-sizing: border-box;
}

.row {
	box-sizing: border-box;
}

.row > .3u,
.row > .4u,
.row > .6u,
.row > .8u,
.row > .12u {
	box-sizing: border-box;
}

/* ---- Global list & button resets (override skel/template) ---- */

ul.actions {
	list-style: none;
	margin: 0;
	padding: 0;
	cursor: default;
}

ul.actions li {
	padding: 0;
	margin: 0;
	vertical-align: baseline;
}

.wrapper ul.actions,
#two ul.actions,
#three ul.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85em;
	align-items: center;
}

.wrapper ul.actions li,
#two ul.actions li,
#three ul.actions li {
	display: block;
}

.wrapper ul.actions .button,
#two ul.actions .button,
#three ul.actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0;
}

.product-tabs,
.banner-tags,
.market-list,
#header nav > ul,
.footer-bottom .copyright {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.product-tabs li {
	padding: 0;
	margin: 0;
	display: block;
}

.product-tabs button {
	white-space: nowrap;
	line-height: 1.4;
	vertical-align: middle;
}

.banner-tags li {
	padding-left: 0;
}

#main-content .row:not(.product-grid) {
	margin-left: 0 !important;
	width: 100%;
}

#main-content .row:not(.product-grid)::after {
	display: none;
}

#main-content .row:not(.product-grid) > * {
	float: none !important;
	padding-left: 0 !important;
	width: 100%;
}

section.wrapper,
#main.wrapper {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ---- Section Headers ---- */

header.major {
	text-align: left;
	margin: 0 0 3em;
	padding-left: 1.25rem;
	border-left: 4px solid var(--color-accent);
	box-sizing: border-box;
}

header.major h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	margin-bottom: 0.35em;
}

header.major h2 + p {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.5;
	text-transform: none;
	letter-spacing: 0;
}

/* ---- Products Grid (Homepage) ---- */

#one .product-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 0 !important;
	padding: 0;
	width: 100%;
	list-style: none;
	flex-wrap: unset !important;
	margin-left: 0 !important;
}

#one .product-grid > * {
	padding-left: 0 !important;
	margin-bottom: 0 !important;
	float: none !important;
	width: auto !important;
}

#one .product-card {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	border-top: none;
	box-shadow: var(--shadow-sm);
	padding: 0;
	margin: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#one .product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

#one .product-card .product-image {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	padding-top: 68%;
	margin: 0;
	border-radius: 0;
	background: linear-gradient(160deg, #f0ebe3 0%, #e8e2d8 100%);
	text-decoration: none;
	flex-shrink: 0;
}

#one .product-card .product-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border: 0;
	border-radius: 0;
}

#one .product-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.25rem 1.5rem 1.5rem;
	min-width: 0;
}

#one .product-card h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-heading);
	margin: 0 0 0.5rem;
	padding: 0;
	border: none;
	line-height: 1.3;
}

#one .product-card p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.65;
	margin: 0;
	padding: 0;
	flex: 1;
}

#one .product-card::after {
	content: "";
	display: block;
	height: 3px;
	background: linear-gradient(90deg, var(--color-accent), transparent);
	margin-top: auto;
}


/* ---- News Preview (Homepage) ---- */

#two .container {
	max-width: var(--container);
}

#two .news-preview {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	background: var(--color-surface);
	border-radius: var(--radius-xl);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

#two .news-preview-image {
	display: block;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--color-bg-alt);
}

#two .news-preview-image img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	display: block;
	border-radius: var(--radius-md);
}

#two .news-preview-body h3 {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	color: var(--color-heading);
	margin: 0 0 0.75em;
	padding-left: 0;
	border: none;
}

#two .news-preview-body p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.75;
	margin-bottom: 1.5em;
}

#two .news-tag-pill {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent-dark);
	background: rgba(212, 160, 23, 0.12);
	padding: 0.35em 0.85em;
	border-radius: 999px;
	margin-bottom: 1em;
}

/* ---- About Preview (Homepage) ---- */

#three .about-preview {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.75);
	border-radius: var(--radius-xl);
	padding: clamp(2rem, 5vw, 3.5rem);
	position: relative;
	overflow: hidden;
}

@media (min-width: 640px) {
	#three .about-preview {
		grid-template-columns: auto 1fr;
		gap: clamp(2rem, 5vw, 3rem);
	}
}

#three .about-preview::before {
	content: "GW";
	position: absolute;
	right: -0.05em;
	bottom: -0.15em;
	font-family: var(--font-display);
	font-size: clamp(8rem, 18vw, 14rem);
	color: rgba(255, 255, 255, 0.03);
	line-height: 1;
	pointer-events: none;
}

#three .about-preview-label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent);
	padding-top: 0.5rem;
}

#three .about-preview h2 {
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 0.75em;
}

#three .about-preview p {
	font-size: 1rem;
	line-height: 1.8;
	max-width: 52em;
	margin-bottom: 1.75em;
}

#three .about-preview .button {
	background: var(--color-accent);
	color: var(--color-dark) !important;
}

#three .about-preview .button:hover {
	background: var(--color-accent-light);
}

/* ---- Footer & Form ---- */

#footer {
	background: linear-gradient(180deg, var(--color-dark-soft) 0%, var(--color-dark) 100%);
	color: rgba(255, 255, 255, 0.78);
	padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
	border-top: 4px solid var(--color-accent);
}

#footer .container {
	max-width: var(--container);
	padding-bottom: 0;
}

.footer-header {
	text-align: center;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.footer-header h2 {
	color: #fff;
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	margin: 0 0 0.4em;
}

.footer-header p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 1rem;
	margin: 0;
}

.inquiry-form {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	margin: 0;
}

#footer .inquiry-form {
	max-width: 960px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
}

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

@media (min-width: 640px) {
	.inquiry-form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.inquiry-form-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.form-field {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.form-field-full {
	grid-column: 1 / -1;
}

.inquiry-form label {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 0.45em;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-family: var(--font-body);
	color: #fff;
	line-height: 1.4;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select {
	height: 2.85em;
	padding: 0 1em;
}

.inquiry-form select {
	padding-right: 2.5em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4a017' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1em center;
	background-size: 10px 6px;
	cursor: pointer;
}

.inquiry-form textarea {
	min-height: 9em;
	padding: 0.85em 1em;
	resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.inquiry-form select {
	color: rgba(255, 255, 255, 0.9);
}

.inquiry-form select:invalid,
.inquiry-form select option[value=""] {
	color: rgba(255, 255, 255, 0.35);
}

.inquiry-form select option {
	background: var(--color-dark-soft);
	color: #fff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
	border-color: var(--color-accent);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.22);
}

.inquiry-form-actions {
	margin-top: 1.35rem;
	text-align: center;
}

.inquiry-form-actions input[type="submit"] {
	width: auto;
	min-width: 14rem;
	margin: 0;
	padding: 1em 2.5em;
	cursor: pointer;
}

.inquiry-form-actions input[type="submit"]:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.inquiry-form-message {
	display: none;
	border-radius: var(--radius-sm);
	font-size: 0.92rem;
	padding: 0.85em 1.1em;
	margin-bottom: 1.15rem;
}

.inquiry-form-message.success {
	display: block;
	background: rgba(72, 160, 90, 0.15);
	border: 1px solid rgba(72, 160, 90, 0.45);
	color: #9fd4a8;
}

.inquiry-form-message.error {
	display: block;
	background: rgba(200, 80, 80, 0.15);
	border: 1px solid rgba(200, 80, 80, 0.45);
	color: #f0a0a0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.25rem 0 clamp(1.25rem, 3vw, 2rem);
	text-align: center;
}

.footer-bottom .copyright {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.8rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom .copyright li {
	border-left: none;
	display: block;
	margin: 0;
	padding: 0;
}

#footer a {
	color: var(--color-accent-light);
	transition: color 0.2s;
}

#footer a:hover {
	color: #fff;
}

@media (max-width: 736px) {
	.inquiry-form {
		padding: 1.25rem;
	}

	.footer-header {
		text-align: left;
	}

	.inquiry-form-actions input[type="submit"] {
		width: 100%;
		min-width: 0;
	}
}

/* ---- Social Links (header mobile + desktop float) ---- */

.social-float a,
.header-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.4em;
	height: 2.4em;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	flex-shrink: 0;
	position: relative;
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.header-social a {
	width: 2rem;
	height: 2rem;
}

.social-float a::after,
.header-social a::after {
	content: "";
	width: 54%;
	height: 54%;
	background: #fff;
	-webkit-mask: center / contain no-repeat;
	mask: center / contain no-repeat;
}

.social-float .social-fb::after,
.header-social .social-fb::after {
	-webkit-mask-image: url("../images/icons/social/facebook.svg");
	mask-image: url("../images/icons/social/facebook.svg");
}

.social-float .social-x::after,
.header-social .social-x::after {
	-webkit-mask-image: url("../images/icons/social/x.svg");
	mask-image: url("../images/icons/social/x.svg");
}

.social-float .social-wa::after,
.header-social .social-wa::after {
	-webkit-mask-image: url("../images/icons/social/whatsapp.svg");
	mask-image: url("../images/icons/social/whatsapp.svg");
}

.social-float .social-ig::after,
.header-social .social-ig::after {
	-webkit-mask-image: url("../images/icons/social/instagram.svg");
	mask-image: url("../images/icons/social/instagram.svg");
}

.social-float .social-tt::after,
.header-social .social-tt::after {
	-webkit-mask-image: url("../images/icons/social/tiktok.svg");
	mask-image: url("../images/icons/social/tiktok.svg");
}

.social-float a:hover,
.header-social a:hover {
	transform: scale(1.08);
}

.header-social .social-fb,
.social-float .social-fb {
	background: #1877f2 !important;
}

.header-social .social-fb:hover,
.social-float .social-fb:hover {
	background: #166fe5 !important;
	color: #fff;
}

.header-social .social-x,
.social-float .social-x {
	background: #000 !important;
}

.header-social .social-x:hover,
.social-float .social-x:hover {
	background: #222 !important;
	color: #fff;
}

.header-social .social-wa,
.social-float .social-wa {
	background: #25d366 !important;
}

.header-social .social-wa:hover,
.social-float .social-wa:hover {
	background: #20bd5a !important;
	color: #fff;
}

.header-social .social-ig,
.social-float .social-ig {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.header-social .social-ig:hover,
.social-float .social-ig:hover {
	background: linear-gradient(45deg, #e0852e, #d55f37, #c9223e, #b81f5c, #a9157d) !important;
	color: #fff;
}

.header-social .social-tt,
.social-float .social-tt {
	background: #010101 !important;
}

.header-social .social-tt:hover,
.social-float .social-tt:hover {
	background: #333 !important;
	color: #fff;
}

.social-float {
	position: fixed;
	z-index: 10001;
	display: flex;
	align-items: center;
	top: auto;
	bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
	right: max(1.5rem, env(safe-area-inset-right, 0px));
	left: auto;
	flex-direction: row;
	flex-wrap: nowrap;
	background: var(--color-dark);
	border: none;
	border-radius: 999px;
	padding: 0.4em 0.5em;
	box-shadow: var(--shadow-lg);
	gap: 0.3em;
	max-width: calc(100vw - 2rem);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

@media (max-width: 980px) {
	.header-actions {
		display: flex;
	}

	.header-social {
		gap: 0.28rem;
	}

	.header-social a {
		width: 1.85rem;
		height: 1.85rem;
	}

	.social-float {
		display: none !important;
	}
}

/* ---- Inner Pages: Shared Headers ---- */

.page-header,
.news-page-header,
.products-page-header {
	margin-bottom: 3em;
	text-align: left;
	padding-bottom: 1.5em;
	border-bottom: 1px solid var(--color-border);
	position: relative;
}

.page-header::after,
.news-page-header::after,
.products-page-header::after {
	content: "";
	display: block;
	width: 4rem;
	height: 3px;
	background: var(--color-accent);
	margin: 1.25em 0 0;
	border-radius: 2px;
}

.page-header h2,
.news-page-header h2,
.products-page-header h2 {
	margin-bottom: 0.35em;
}

.page-header p,
.news-page-header p,
.products-page-header p,
.contact-intro {
	color: var(--color-text-muted);
	margin: 0;
	font-size: 1rem;
}

.contact-intro {
	text-align: left;
	max-width: 720px;
	margin: 0 0 2.5em;
	line-height: 1.75;
}

/* ---- About Page ---- */

.section-block {
	margin-bottom: 3em;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: var(--color-surface);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
}

.section-block h3 {
	border-left: none;
	padding-left: 0;
	margin-bottom: 1em;
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--color-heading);
	display: flex;
	align-items: center;
	gap: 0.75em;
}

.section-block h3::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	background: var(--color-accent);
	border-radius: 50%;
	flex-shrink: 0;
}

.section-block p {
	font-size: 0.95rem;
	color: var(--color-text);
	line-height: 1.8;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid var(--color-border);
}

.info-table th,
.info-table td {
	padding: 0.85em 1.1em;
	border-color: var(--color-border);
	font-size: 0.92rem;
}

.info-table th {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	width: 30%;
}

.info-table td {
	background: var(--color-bg);
	color: var(--color-text);
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1em;
}

@media (min-width: 640px) {
	.feature-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 960px) {
	.feature-grid.cols-3 {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.feature-card {
	padding: 1.4rem 1.5rem;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
	border-color: var(--color-accent);
	box-shadow: var(--shadow-sm);
}

.feature-card h4 {
	margin: 0 0 0.5em;
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-navy);
}

.feature-card p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin: 0;
}

.market-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7em;
	margin: 0.8em 0 0;
	padding: 0;
	list-style: none;
}

.market-list li {
	background: rgba(212, 160, 23, 0.12);
	border-radius: 999px;
	padding: 0.5em 1.1em;
	font-size: 0.85rem;
	color: var(--color-accent-dark);
	font-weight: 600;
}

/* ---- Contact Page ---- */

.contact-channels {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 2.5em;
}

@media (min-width: 640px) {
	.contact-channels {
		grid-template-columns: repeat(3, 1fr);
	}
}

.contact-channel {
	padding: 1.25rem 1.5rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
}

.contact-channel h4 {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.6em;
	padding: 0;
	border: none;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8fa8c4;
}

.contact-channel h4::before {
	content: "";
	display: block;
	width: 3px;
	height: 1.1em;
	background: #1565c0;
	border-radius: 1px;
	flex-shrink: 0;
}

.contact-channel a {
	display: block;
	font-size: 0.95rem;
	font-weight: 500;
	color: #2c6fad;
	text-decoration: none;
	line-height: 1.5;
	word-break: break-word;
	transition: color 0.2s var(--ease);
}

.contact-channel a:hover {
	color: #1565c0;
	text-decoration: underline;
}

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

@media (min-width: 640px) {
	.info-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 960px) {
	.info-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.info-card {
	padding: 1.3rem 1.4rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.info-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.info-card h4 {
	margin: 0 0 0.5em;
	padding-left: 0;
	border-left: none;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent-dark);
}

.info-card p {
	font-size: 0.92rem;
	color: var(--color-text);
	line-height: 1.6;
	margin: 0;
}

.contact-tip {
	margin-top: 2.5em;
	padding: 1.25rem 1.5rem;
	background: var(--color-dark);
	border: none;
	border-radius: var(--radius-md);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.92rem;
	line-height: 1.65;
	text-align: left;
}

.contact-tip strong {
	color: var(--color-accent);
}

/* ---- News Page ---- */

.news-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	width: 100%;
}

@media (min-width: 960px) {
	.news-list {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

.news-item {
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1.6rem 1.75rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.news-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.news-meta {
	margin-bottom: 0.75em;
}

.news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5em;
	margin-bottom: 0.75em;
}

.news-body {
	flex: 1;
}

.news-body p:last-child {
	margin-bottom: 0;
}

.news-date {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	font-weight: 500;
}

.news-item h3 {
	margin: 0 0 0.85em;
	padding-left: 0;
	border-left: none;
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1.35;
	color: var(--color-heading);
}

.news-body p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.75;
}

.news-body a {
	color: var(--color-accent-dark);
	font-weight: 600;
}

.news-tag {
	border-radius: 999px;
	padding: 0.3em 0.85em;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: rgba(26, 39, 68, 0.08);
	color: var(--color-navy);
}

.news-tag.export { background: rgba(42, 106, 64, 0.1); color: #2a6a40; }
.news-tag.quality { background: rgba(138, 90, 24, 0.1); color: #8a5a18; }
.news-tag.logistics { background: rgba(90, 58, 136, 0.1); color: #5a3a88; }
.news-tag.inventory { background: rgba(58, 74, 104, 0.1); color: #3a4a68; }
.news-tag.partnership { background: rgba(136, 58, 72, 0.1); color: #883a48; }

/* ---- Products Page overrides ---- */

.product-tabs button {
	border-color: var(--color-navy);
	color: var(--color-navy);
	border-radius: 999px;
	font-weight: 600;
}

.product-tabs button:hover {
	background: rgba(26, 39, 68, 0.06);
}

.product-tabs button.active {
	background: var(--color-dark);
	border-color: var(--color-dark);
	color: #fff;
}

.product-panel-title {
	background: var(--color-dark);
	border: none;
	border-radius: var(--radius-md);
	color: #fff;
}

.product-panel-title h3 {
	color: #fff;
}

.product-panel-title p {
	color: rgba(255, 255, 255, 0.6);
}

.spec-table th {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.9);
}

.spec-table td {
	background: var(--color-bg);
}

.faq-item {
	border-color: var(--color-border);
	border-radius: var(--radius-md);
}

.faq-item summary {
	color: var(--color-heading);
	font-weight: 600;
}

.faq-item[open] {
	border-color: var(--color-accent);
}

.products-featured-img {
	margin-bottom: 2em;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.products-featured-img img {
	display: block;
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 0;
}

/* ---- Responsive ---- */

@media (min-width: 960px) {
	#banner .inner {
		grid-template-columns: 1fr 1fr;
	}

	#banner .banner-content {
		max-width: 36rem;
	}
}

@media (max-width: 980px) {
	#skel-layers-wrapper {
		padding-top: 0 !important;
	}

	body {
		padding-top: var(--header-h);
	}

	#header {
		display: block !important;
	}

	#header .header-logo img {
		height: 2rem;
		max-width: 130px;
	}

	.header-actions {
		display: flex;
	}

	.social-float {
		display: none !important;
	}

	#one .product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.nav-toggle {
		display: flex;
	}

	#header nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-dark);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: var(--shadow-lg);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
		transition: max-height 0.35s var(--ease), opacity 0.25s;
	}

	#header.nav-open nav {
		max-height: 20rem;
		opacity: 1;
		pointer-events: auto;
	}

	#header nav > ul {
		flex-direction: column;
		align-items: stretch;
		padding: 0.5rem 1rem 1rem;
		gap: 0;
	}

	#header nav > ul > li a {
		display: block;
		padding: 0.75em 0.85em;
		font-size: 0.82rem;
	}

	#header nav > ul > li.nav-cta a {
		text-align: center;
		margin-top: 0.35rem;
	}
}

@media (max-width: 736px) {
	:root {
		--header-h: 3.75rem;
	}

	#header .header-logo img {
		height: 2rem;
	}

	#header nav > ul {
		gap: 0;
	}

	#header nav > ul > li a {
		font-size: 0.68rem;
		padding: 0.45em 0.5em;
	}

	#banner .inner {
		padding: clamp(2rem, 6vh, 4rem) 1rem;
	}

	#banner h2 {
		max-width: none;
		font-size: clamp(1.85rem, 8vw, 2.5rem);
	}

	#banner .banner-desc {
		font-size: 0.95rem;
	}

	#banner .actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	#banner .actions li {
		width: 100%;
	}

	#banner .actions .button {
		width: 100%;
		max-width: 100%;
		text-align: center;
		padding: 0.9em 1.25em;
		font-size: 0.8rem;
		letter-spacing: 0.04em;
		white-space: normal;
	}

	#banner .actions .button.big {
		padding: 0.9em 1.25em;
	}

	header.major {
		margin-bottom: 2.5em;
	}

	#one .product-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	#two .news-preview {
		grid-template-columns: 1fr;
		padding: 1.25rem;
	}

	#three .about-preview {
		grid-template-columns: 1fr;
		padding: 1.75rem;
	}

	#three .about-preview-label {
		writing-mode: horizontal-tb;
		transform: none;
	}

	.page-header,
	.news-page-header,
	.products-page-header {
		margin-bottom: 2em;
	}

	.news-item {
		padding: 1.2rem 1rem;
	}

	.news-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.info-table th,
	.info-table td {
		font-size: 0.88rem;
		padding: 0.65em 0.75em;
	}

	.info-table th {
		width: auto;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	#banner .banner-tags li {
		font-size: 0.68rem;
	}

	.header-social a {
		width: 1.7rem;
		height: 1.7rem;
	}

	#header .header-logo img {
		max-width: 95px;
	}
}
