:root {
	--xp-red: #7EBAB5;
	--xp-red-dark: #5A9B96;
	--xp-dark: #123B3D;
	--xp-dark-2: #0E2F31;
	--xp-gray: #425A5C;
	--xp-muted: #C7DCDA;
	--xp-light: #F4FAF9;
	--xp-border: #DDEAE8;
	--xp-radius: 6px;
	--xp-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
	color: var(--xp-gray);
	font-family: "Lato", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	line-height: 1.7;
	background: #fff;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-content h1,
.brand-text,
.footer-brand,
.stat-value,
.product-title {
	font-family: "Poppins", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
	letter-spacing: -0.01em;
}

a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: var(--xp-red);
}

img {
	max-width: 100%;
	height: auto;
}

.btn {
	border-radius: 4px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.btn-danger {
	--bs-btn-bg: var(--xp-red);
	--bs-btn-border-color: var(--xp-red);
	--bs-btn-hover-bg: var(--xp-red-dark);
	--bs-btn-hover-border-color: var(--xp-red-dark);
	--bs-btn-active-bg: var(--xp-red-dark);
	--bs-btn-active-border-color: var(--xp-red-dark);
}

.btn-outline-danger {
	--bs-btn-color: var(--xp-red);
	--bs-btn-border-color: var(--xp-red);
	--bs-btn-hover-bg: var(--xp-red);
	--bs-btn-hover-border-color: var(--xp-red);
	--bs-btn-active-bg: var(--xp-red);
	--bs-btn-active-border-color: var(--xp-red);
}

.btn-outline-light:hover {
	color: var(--xp-dark);
}

.site-topbar {
	background: var(--xp-dark);
	color: #fff;
	font-size: 13px;
	padding: 8px 0;
}
.topbar-link,
.topbar-note {
	color: #fff;
	opacity: 0.92;
}
.topbar-link:hover {
	color: #fff;
	opacity: 1;
}

.site-header {
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}
.navbar-brand img {
	max-height: 62px;
	width: auto;
}
.brand-text {
	font-size: 24px;
	font-weight: 800;
	color: var(--xp-red);
	letter-spacing: 0.02em;
}
.navbar-nav .nav-link {
	font-weight: 600;
	color: var(--xp-gray);
	padding: 10px 14px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current_page_item > .nav-link {
	color: var(--xp-red);
}
.navbar-nav .dropdown-menu {
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	box-shadow: var(--xp-shadow);
}
.navbar-nav .dropdown-item {
	font-size: 14px;
	padding: 9px 16px;
}
.header-quote-btn {
	white-space: nowrap;
}
.navbar-brand .default-brand-img {
	max-height: 62px;
	width: auto;
}
.navbar-nav .sub-menu {
	position: absolute;
	z-index: 1000;
	display: none;
	min-width: 230px;
	margin: 0;
	padding: 10px 0;
	background: #fff;
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	box-shadow: var(--xp-shadow);
	list-style: none;
}
.navbar-nav .menu-item-has-children {
	position: relative;
}
.navbar-nav .menu-item-has-children:hover > .sub-menu,
.navbar-nav .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}
.navbar-nav .sub-menu .sub-menu {
	left: 100%;
	top: 0;
}
.navbar-nav .sub-menu a {
	display: block;
	padding: 9px 18px;
	color: var(--xp-gray);
	font-size: 14px;
	font-weight: 600;
}
.navbar-nav .sub-menu a:hover {
	color: var(--xp-red);
	background: var(--xp-light);
}
@media (max-width: 991.98px) {
	.navbar-nav .sub-menu {
		position: static;
		display: block;
		margin-left: 14px;
		border: 0;
		box-shadow: none;
		padding: 4px 0;
	}
}


.home-hero {
	position: relative;
}
.hero-swiper {
	height: min(70vw, 560px);
	min-height: 420px;
}
.hero-slide {
	position: relative;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #123B3D 0%, #4E8B88 55%, #A8CEC9 100%);
	background-size: cover;
	background-position: center;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 32, 34, 0.78) 0%, rgba(8, 32, 34, 0.42) 55%, rgba(8, 32, 34, 0.16) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #fff;
	max-width: 760px;
}
.hero-eyebrow {
	color: #fff;
	background: var(--xp-red);
	display: inline-block;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	border-radius: 4px;
	margin-bottom: 18px;
	text-shadow: none;
}
.hero-content h1 {
	font-size: clamp(34px, 5vw, 64px);
	line-height: 1.12;
	font-weight: 800;
	margin-bottom: 18px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}
.hero-content p {
	font-size: clamp(15px, 2vw, 19px);
	max-width: 640px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}
.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.hero-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}
.hero-quick-link {
	display: inline-flex;
	align-items: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 4px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
	transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-quick-link:hover {
	background: var(--xp-red);
	border-color: var(--xp-red);
	color: #fff;
}
.hero-swiper .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.65;
}
.hero-swiper .swiper-pagination-bullet-active {
	background: var(--xp-red);
	opacity: 1;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
	color: #fff;
}
.hero-fallback {
	min-height: 520px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #123B3D, #4E8B88);
	color: #fff;
}
.hero-fallback .hero-content {
	max-width: 100%;
}

.home-section {
	padding: 76px 0;
}
.section-heading {
	max-width: 720px;
	margin: 0 auto 42px;
}
.section-eyebrow {
	color: var(--xp-red);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 8px;
}
.section-title {
	color: var(--xp-dark);
	font-size: clamp(26px, 3.5vw, 42px);
	font-weight: 800;
	margin: 0;
}
.section-text {
	color: #606060;
}

.placeholder-media,
.placeholder-box {
	background: linear-gradient(135deg, #F8FCFB, #E3F1EF);
	border: 1px dashed #B7D5D1;
	border-radius: var(--xp-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5A9B96;
	font-weight: 700;
	min-height: 220px;
}
.placeholder-box {
	min-height: 220px;
	width: 100%;
}
.placeholder-box.large {
	min-height: 440px;
}
.placeholder-box.small {
	min-height: 180px;
}

.product-card,
.news-card,
.testimonial-card,
.application-card {
	background: #fff;
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover,
.news-card:hover,
.testimonial-card:hover,
.application-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xp-shadow);
}
.product-card-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #fff;
}
.product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-card-body,
.news-body,
.application-card {
	padding: 20px;
}
.product-card h3,
.news-card h3,
.application-card h3 {
	font-size: 17px;
	line-height: 1.45;
	margin: 0 0 8px;
}
.product-card h3 a,
.news-card h3 a,
.application-card h3 a {
	color: var(--xp-dark);
}
.product-card h3 a:hover,
.news-card h3 a:hover,
.application-card h3 a:hover {
	color: var(--xp-red);
}
.product-cat {
	color: var(--xp-red);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 8px;
}
.product-card p,
.news-card p,
.application-card p {
	font-size: 14px;
	color: #6c6c6c;
	margin-bottom: 12px;
}
	.product-more {
	display: inline-block;
	color: var(--xp-red);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--xp-red);
	border-radius: 4px;
	padding: 7px 12px;
	transition: background 0.2s ease, color 0.2s ease;
}
.product-card:hover .product-more {
	background: var(--xp-red);
	color: #fff;
}

.applications-section {
	background: var(--xp-light);
}
.application-tile,
.application-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 92px;
	padding: 12px;
	background: #fff;
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	font-weight: 700;
	color: var(--xp-dark);
	overflow: hidden;
}
.application-tile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 0;
}
.application-tile:hover {
	color: var(--xp-red);
	border-color: var(--xp-red);
	box-shadow: var(--xp-shadow);
}
.application-media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--xp-light);
}
.application-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.application-tile:hover .application-media img {
	transform: scale(1.05);
}
.application-name {
	display: block;
	padding: 12px 14px;
	min-height: 54px;
}
.application-icon {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--xp-red);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
}
.application-card {
	display: block;
}
.application-card .application-icon {
	margin-bottom: 16px;
}
.application-card a {
	color: var(--xp-red);
	font-weight: 700;
}

.feature-card {
	background: #fff;
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	padding: 30px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xp-shadow);
}
.feature-number {
	color: var(--xp-red);
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 16px;
}
.feature-card h3 {
	color: var(--xp-dark);
	font-size: 19px;
	font-weight: 800;
}
.feature-card p {
	margin: 0;
	color: #6c6c6c;
	font-size: 14px;
}

	.video-section {
	position: relative;
	background: var(--xp-dark);
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
	padding: 90px 0;
}
.video-section-bg {
	background-color: var(--xp-dark);
}
.video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 30, 32, 0.86) 0%, rgba(7, 30, 32, 0.68) 45%, rgba(7, 30, 32, 0.42) 100%);
}
.video-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 54px;
	border-radius: var(--xp-radius);
	background: linear-gradient(135deg, rgba(18, 59, 61, 0.96), rgba(18, 59, 61, 0.86)), var(--xp-dark);
	color: #fff;
}
.video-copy {
	max-width: 620px;
}
.video-copy .section-title {
	color: #fff;
}
.video-copy p {
	color: #e3f1ef;
	font-size: 17px;
}
.video-play,
.video-placeholder {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.video-play .play-icon,
.video-placeholder .play-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--xp-red);
	color: #fff;
	font-size: 22px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.quote-section {
	background: var(--xp-light);
}
.quote-assurance {
	font-size: 18px;
	font-weight: 800;
	color: var(--xp-dark);
	margin-top: 18px;
}

.stats-section {
	background: var(--xp-dark);
	color: #fff;
}
.stat-value {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 800;
	color: var(--xp-red);
}
.stat-label {
	color: #cfd3d8;
}

.testimonials-section {
	background: #f7f7f8;
}
.testimonial-swiper {
	padding-bottom: 46px;
}
.testimonial-card {
	padding: 30px;
	height: 100%;
}
	.testimonial-image {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 16px;
	border: 3px solid var(--xp-red);
	background: #fff;
}
.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stars {
	color: var(--xp-red);
	margin-bottom: 14px;
}
.testimonial-card blockquote {
	font-size: 17px;
	color: var(--xp-dark);
	margin-bottom: 18px;
}
.client-name {
	font-weight: 800;
	color: var(--xp-dark);
}
.client-position {
	font-size: 13px;
	color: #777;
}
.testimonial-swiper .swiper-pagination-bullet-active {
	background: var(--xp-red);
}

.news-media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--xp-light);
}
.news-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-date {
	font-size: 13px;
	color: var(--xp-red);
	font-weight: 700;
	margin-bottom: 8px;
}

.faq-section .accordion-item {
	border: 1px solid var(--xp-border);
	margin-bottom: 12px;
	border-radius: var(--xp-radius) !important;
	overflow: hidden;
}
.faq-section .accordion-button {
	font-weight: 700;
	color: var(--xp-dark);
}
.faq-section .accordion-button:not(.collapsed) {
	background: #fff;
	color: var(--xp-red);
}
.faq-section .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.cta-panel {
	background: var(--xp-dark);
	color: #fff;
	padding: 64px 24px;
	border-radius: var(--xp-radius);
}
.cta-panel h2 {
	font-size: clamp(26px, 4vw, 44px);
	font-weight: 800;
	margin-bottom: 16px;
}
.cta-panel p {
	color: #cfd3d8;
	max-width: 640px;
	margin: 0 auto 28px;
}

.inner-hero {
	background: var(--xp-dark);
	color: #fff;
	padding: 58px 0;
}
.inner-hero h1 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	margin-bottom: 12px;
}
.breadcrumb-row {
	color: #c8cdd3;
	font-size: 14px;
}
.breadcrumb-row a {
	color: #fff;
}
.breadcrumb-row .sep {
	margin: 0 8px;
	color: var(--xp-red);
}

.page-section {
	padding: 64px 0;
}
.single-content {
	background: #fff;
}
.single-content .entry-content {
	font-size: 16px;
}
.single-content .entry-content h2,
.single-content .entry-content h3 {
	color: var(--xp-dark);
	font-weight: 800;
	margin-top: 1.5em;
}
.pagination-row {
	margin-top: 44px;
}
.pagination-row .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
}
.pagination-row .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border: 1px solid var(--xp-border);
	border-radius: 4px;
	color: var(--xp-gray);
}
.pagination-row .page-numbers.current,
.pagination-row .page-numbers:hover {
	background: var(--xp-red);
	border-color: var(--xp-red);
	color: #fff;
}

.product-sidebar {
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	padding: 20px;
	position: sticky;
	top: 100px;
}
.product-sidebar h3 {
	font-size: 18px;
	color: var(--xp-dark);
	margin-bottom: 16px;
}
.product-sidebar ul li {
	margin-bottom: 8px;
}
.product-sidebar a {
	display: block;
	padding: 8px 10px;
	border-radius: 4px;
	color: var(--xp-gray);
}
.product-sidebar a:hover {
	background: #EAF5F3;
	color: var(--xp-red);
}

.product-title {
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 800;
	color: var(--xp-dark);
}
.product-gallery {
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	overflow: hidden;
}
.product-highlights {
	margin-top: 26px;
}
.product-highlights h2 {
	font-size: 20px;
	font-weight: 800;
	color: var(--xp-dark);
	margin-bottom: 12px;
}
.product-highlights ul {
	margin: 0;
	padding-left: 20px;
	color: var(--xp-gray);
}
.product-highlights li {
	margin-bottom: 6px;
}
.product-specs {
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	overflow: hidden;
	margin-top: 26px;
}
.product-specs > div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--xp-border);
}
.product-specs > div:last-child {
	border-bottom: 0;
}
.product-specs span {
	color: #777;
}
.product-specs strong {
	color: var(--xp-dark);
	text-align: right;
}

.about-highlight-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.about-highlight-grid > div {
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	padding: 24px;
}
.about-highlight-grid strong {
	display: block;
	color: var(--xp-red);
	font-size: 34px;
}
.about-highlight-grid span {
	color: var(--xp-gray);
}

.contact-info-panel {
	background: var(--xp-dark);
	color: #fff;
	padding: 34px;
	border-radius: var(--xp-radius);
	height: 100%;
}
.contact-info-panel h2 {
	font-weight: 800;
	margin-bottom: 22px;
}
.contact-info-panel a {
	color: #fff;
}
.contact-form {
	background: #fff;
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	padding: 34px;
	box-shadow: var(--xp-shadow);
}
.contact-form .form-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--xp-dark);
	margin-bottom: 6px;
}
.contact-form .form-control {
	border-color: #dbe5e3;
	border-radius: 4px;
	padding: 10px 12px;
}
.contact-form .form-control:focus {
	border-color: var(--xp-red);
	box-shadow: 0 0 0 0.2rem rgba(126, 186, 181, 0.18);
}

.site-footer {
	background: var(--xp-dark);
	color: var(--xp-muted);
	font-size: 15px;
}
.footer-brand img {
	max-height: 70px;
	width: auto;
}
.footer-brand {
	color: #fff;
	font-size: 22px;
	font-weight: 800;
}
.footer-title {
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 18px;
}
.footer-links li,
.footer-contact li {
	margin-bottom: 10px;
}
.footer-links a {
	color: var(--xp-muted);
}
.footer-links a:hover {
	color: var(--xp-red);
}
.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
}
.footer-social a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
	font-size: 13px;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}
.footer-social a svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}
.footer-social a:hover {
	border-color: var(--xp-red);
	background: var(--xp-red);
}
.footer-bottom {
	background: var(--xp-dark-2);
	padding: 18px 0;
	color: #8e969f;
	font-size: 13px;
}

.social-float {
	position: fixed;
	right: 16px;
	bottom: 22px;
	z-index: 1080;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.social-float-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-float-link:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
.social-float-link svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}
.social-whatsapp {
	background: #25D366;
}
.social-instagram {
	background: linear-gradient(45deg, #F58529 0%, #DD2A7B 55%, #8134AF 100%);
}
.social-linkedin {
	background: #0A66C2;
}
.social-facebook {
	background: #1877F2;
}

@media (max-width: 991.98px) {
	.hero-swiper {
		height: 70vw;
		min-height: 420px;
	}
	.site-header .navbar-collapse {
		padding: 14px 0;
	}
	.header-quote-btn {
		margin-top: 6px;
	}
}

@media (max-width: 767.98px) {
	.navbar-brand img {
		max-height: 46px;
		max-width: 150px;
		width: auto;
		height: auto;
		object-fit: contain;
	}
	.home-section {
		padding: 52px 0;
	}
	.hero-swiper {
		min-height: 480px;
		height: 100vw;
	}
	.hero-content h1 {
		font-size: 34px;
	}
	.about-highlight-grid {
		grid-template-columns: 1fr;
	}
	.video-panel {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px;
	}
}


.product-series-section {
	background: #fff;
}
.product-series-card {
	display: block;
	height: 100%;
	background: #fff;
	border: 1px solid var(--xp-border);
	border-radius: var(--xp-radius);
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-series-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xp-shadow);
	color: var(--xp-dark);
}
.product-series-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--xp-light);
}
.product-series-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.product-series-card:hover .product-series-media img {
	transform: scale(1.04);
}
.series-letter {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 56px;
	font-weight: 800;
	color: var(--xp-red);
	background: linear-gradient(135deg, #F8FCFB, #E3F1EF);
}
.product-series-body {
	padding: 20px;
}
.product-series-body h3 {
	color: var(--xp-dark);
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
}
.product-series-body p {
	min-height: 44px;
	margin-bottom: 12px;
	color: #6c6c6c;
	font-size: 14px;
}
.series-more {
	display: inline-block;
	color: var(--xp-red);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--xp-red);
	border-radius: 4px;
	padding: 7px 12px;
	transition: background 0.2s ease, color 0.2s ease;
}
.product-series-card:hover .series-more {
	background: var(--xp-red);
	color: #fff;
}


.quick-quote-btn,
button.header-quote-btn {
	white-space: nowrap;
}
#quickQuoteModal .modal-content {
	border: 0;
	border-radius: var(--xp-radius);
	overflow: hidden;
}
#quickQuoteModal .modal-header {
	background: var(--xp-dark);
	color: #fff;
	border-bottom: 0;
}
#quickQuoteModal .btn-close {
	filter: invert(1);
}
