:root {
	--ldc-primary: #12355b;
	--ldc-cta: #0f8bff;
	--ldc-text: #172033;
	--ldc-muted: #60708a;
	--ldc-border: #e5eaf2;
	--ldc-surface: #ffffff;
	--ldc-soft: #f5f8fc;
	--ldc-success: #167a4a;
	--ldc-danger: #b42318;
	--ldc-radius: 8px;
	--ldc-shadow: 0 12px 30px rgba(18, 53, 91, 0.08);
	--ldc-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ldc-text);
	font-family: var(--ldc-font);
	font-size: 16px;
	line-height: 1.6;
	background: var(--ldc-surface);
	text-rendering: optimizeLegibility;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
	flex: 0 0 auto;
}

a {
	color: var(--ldc-primary);
	text-decoration: none;
}

a:hover {
	color: var(--ldc-cta);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.button,
input[type="submit"] {
	min-height: 44px;
	border: 1px solid transparent;
	border-radius: var(--ldc-radius);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.72rem 1rem;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
	transform: translateY(-1px);
}

.button-primary,
.search-submit,
input[type="submit"] {
	color: #fff;
	background: var(--ldc-cta);
}

.button-emphasis {
	min-height: 52px;
	padding-inline: 1.3rem;
	box-shadow: 0 14px 28px rgba(15, 139, 255, 0.24);
}

.button-secondary {
	color: var(--ldc-primary);
	background: #fff;
	border-color: var(--ldc-border);
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
	padding: 0.7rem 0.85rem;
	color: var(--ldc-text);
	background: #fff;
}

textarea {
	min-height: 140px;
}

:focus-visible {
	outline: 3px solid rgba(15, 139, 255, 0.35);
	outline-offset: 2px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	color: #fff;
	background: var(--ldc-primary);
}

.container {
	width: min(100% - 2rem, 1180px);
	margin-inline: auto;
}

.narrow {
	width: min(100% - 2rem, 820px);
}

.section {
	padding-block: 3.5rem;
}

.site-header {
	position: relative;
	z-index: 50;
	min-height: 78px;
	border-bottom: 1px solid var(--ldc-border);
	background: rgba(255, 255, 255, 0.96);
}

.header-sticky .site-header {
	position: sticky;
	top: 0;
	backdrop-filter: blur(12px);
}

.header-inner {
	min-height: 78px;
	display: grid;
	grid-template-columns: auto minmax(220px, 1fr) auto;
	gap: 1rem;
	align-items: center;
}

.site-title {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	color: var(--ldc-primary);
	font-size: 1.35rem;
	font-weight: 800;
}

.custom-logo {
	max-height: 58px;
	width: auto;
}

.primary-navigation ul,
.mobile-navigation ul,
.footer-bottom ul {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a,
.mobile-navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--ldc-text);
	font-weight: 650;
}

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

.icon-link,
.menu-toggle,
.mobile-menu-close {
	min-width: 44px;
	min-height: 44px;
	padding: 0.55rem;
	color: var(--ldc-primary);
	background: #fff;
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
	display: inline-grid;
	place-items: center;
	line-height: 1;
}

.icon-link svg,
.menu-toggle svg,
.mobile-menu-close svg {
	width: 22px;
	height: 22px;
	display: block;
}

.icon-link span:not(.cart-count) {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.cart-link {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -0.4rem;
	right: -0.4rem;
	min-width: 1.25rem;
	min-height: 1.25rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	color: #fff;
	background: var(--ldc-cta);
	font-size: 0.75rem;
	font-weight: 800;
}

.menu-toggle {
	display: none;
}

.mobile-menu-panel {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(18, 53, 91, 0.22);
}

.mobile-menu-inner {
	min-height: 100%;
	margin-left: auto;
	padding-block: 1rem;
	background: #fff;
	box-shadow: var(--ldc-shadow);
}

.mobile-menu-close {
	margin-left: auto;
}

.mobile-navigation ul {
	display: block;
	margin-top: 1rem;
}

.mobile-navigation a {
	width: 100%;
	border-bottom: 1px solid var(--ldc-border);
}

.hero-section {
	padding-block: 4rem;
	background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
	gap: 2rem;
	align-items: center;
}

.eyebrow {
	margin: 0 0 0.55rem;
	color: var(--ldc-cta);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-content h1 {
	max-width: 760px;
	margin: 0;
	color: var(--ldc-primary);
	font-size: clamp(2.2rem, 4.8vw, 4.7rem);
	line-height: 1.02;
}

.hero-content > p:not(.eyebrow) {
	max-width: 620px;
	margin: 1rem 0 0;
	color: var(--ldc-muted);
	font-size: 1.12rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hero-visual {
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
	background: #fff;
	box-shadow: var(--ldc-shadow);
	overflow: hidden;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.section-heading h2,
.sale-banner h2,
.seo-section h2 {
	margin: 0;
	color: var(--ldc-primary);
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	line-height: 1.15;
}

.trust-grid,
.category-grid,
.package-grid,
.benefit-grid,
.review-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.trust-badge,
.category-card,
.package-card,
.benefit-card,
.review-card,
.entry-card,
.sale-banner {
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
	background: #fff;
}

.offer-grid,
.gallery-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
	gap: 2rem;
	align-items: center;
}

.single-offer-section {
	background: var(--ldc-soft);
}

.offer-copy h2,
.gallery-layout h2 {
	margin: 0;
	color: var(--ldc-primary);
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.08;
}

.offer-copy p,
.gallery-layout p {
	color: var(--ldc-muted);
}

.check-list {
	display: grid;
	gap: 0.55rem;
	margin: 1.2rem 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.8rem;
	font-weight: 700;
}

.check-list li::before {
	content: "";
	position: absolute;
	top: 0.35rem;
	left: 0;
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	background: var(--ldc-cta);
}

.offer-info-card,
.woocommerce-placeholder {
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
	background: #fff;
}

.offer-info-card {
	padding: 1.4rem;
	box-shadow: var(--ldc-shadow);
}

.woocommerce-placeholder {
	padding: 1.2rem;
}

.offer-info-card h3,
.woocommerce-placeholder h3 {
	margin-top: 0;
	color: var(--ldc-primary);
	font-size: 1.35rem;
}

.inline-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.4rem;
}

.color-mix {
	display: flex;
	gap: 0.55rem;
	margin: 0.8rem 0 1rem;
}

.color-dot {
	width: 32px;
	height: 32px;
	border: 3px solid #fff;
	border-radius: 999px;
	box-shadow: 0 0 0 1px var(--ldc-border), 0 8px 18px rgba(18, 53, 91, 0.12);
}

.color-blue {
	background: #0f8bff;
}

.color-red {
	background: #dc2626;
}

.color-yellow {
	background: #eab308;
}

.color-green {
	background: #16a34a;
}

.color-orange {
	background: #f97316;
}

.mini-spec-list {
	display: grid;
	gap: 0.55rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	color: var(--ldc-muted);
}

.offer-info-card p {
	color: var(--ldc-muted);
}

.package-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.package-card {
	display: grid;
	gap: 0.35rem;
	padding: 1rem;
	color: var(--ldc-text);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.package-card:hover {
	transform: translateY(-3px);
	border-color: var(--ldc-cta);
	box-shadow: var(--ldc-shadow);
}

.package-card strong {
	color: var(--ldc-primary);
	font-size: 1.35rem;
}

.package-price {
	color: var(--ldc-cta);
	font-size: 1.25rem;
	font-weight: 850;
}

.package-card em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 0.55rem;
	border-radius: var(--ldc-radius);
	color: #fff;
	background: var(--ldc-cta);
	font-style: normal;
	font-weight: 850;
}

.cta-band-section {
	padding-block: 1rem 3.5rem;
}

.cta-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1.5rem;
	border-radius: var(--ldc-radius);
	color: #fff;
	background: var(--ldc-primary);
	box-shadow: var(--ldc-shadow);
}

.cta-band h2,
.cta-band p {
	margin: 0;
}

.cta-band h2 {
	font-size: clamp(1.55rem, 3vw, 2.4rem);
	line-height: 1.15;
}

.cta-band p {
	margin-top: 0.4rem;
	color: #d8e8f8;
}

.cta-band .eyebrow {
	color: #9fd1ff;
}

.section-bottom-cta {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.home-slider,
.linedc-product-gallery {
	overflow: hidden;
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
	background: #fff;
	box-shadow: var(--ldc-shadow);
}

.home-slider-track,
.linedc-gallery-stage {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--ldc-soft);
}

.home-slide,
.linedc-gallery-slide {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 360ms ease;
}

.home-slide.is-active,
.linedc-gallery-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.home-slide img,
.linedc-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #fff;
}

.linedc-gallery-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	min-width: 44px;
	height: 44px;
	min-height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 999px;
	color: #fff;
	background: rgba(8, 39, 72, 0.72);
	box-shadow: 0 12px 24px rgba(8, 39, 72, 0.18);
	transform: translateY(-50%);
}

.linedc-gallery-arrow:hover,
.linedc-gallery-arrow:focus-visible {
	background: var(--ldc-cta);
}

.linedc-gallery-arrow span {
	display: block;
	margin-top: -0.08em;
	font-size: 2rem;
	line-height: 1;
}

.linedc-gallery-prev {
	left: 0.75rem;
}

.linedc-gallery-next {
	right: 0.75rem;
}

.home-slide figcaption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	color: #fff;
	background: var(--ldc-primary);
	font-weight: 800;
}

.home-slider-dots,
.linedc-gallery-thumbs {
	display: flex;
	gap: 0.5rem;
	padding: 0.8rem;
	overflow-x: auto;
}

.home-slider-dots button {
	width: 44px;
	min-width: 44px;
	height: 12px;
	min-height: 12px;
	padding: 0;
	border-radius: 999px;
	background: #d7e1ee;
}

.home-slider-dots button.is-active {
	background: var(--ldc-cta);
}

.linedc-gallery-thumbs button {
	width: 72px;
	min-width: 72px;
	height: 72px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	background: #fff;
}

.linedc-gallery-thumbs button.is-active {
	border-color: var(--ldc-cta);
}

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

.benefit-grid,
.review-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
	padding: 1.2rem;
}

.benefit-card h3,
.review-card strong {
	display: block;
	margin: 0 0 0.4rem;
	color: var(--ldc-primary);
	font-size: 1.1rem;
}

.benefit-card p,
.review-card p,
.review-card span {
	color: var(--ldc-muted);
}

.review-section {
	background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.review-section h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 4px;
	margin-top: 0.65rem;
	border-radius: 999px;
	background: var(--ldc-cta);
}

.review-card {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 1rem;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
	box-shadow: var(--ldc-shadow);
}

.review-photo {
	margin: 0;
	min-height: 100%;
	background: var(--ldc-soft);
}

.review-photo img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.review-content {
	display: grid;
	align-content: center;
	gap: 0.35rem;
	padding: 1.15rem;
}

.review-stars {
	color: #f5a524;
	font-size: 1.05rem;
	letter-spacing: 0;
}

.review-card strong {
	font-size: 1.2rem;
}

.review-card p {
	margin: 0.35rem 0 0;
	font-size: 1rem;
}

.trust-badge {
	display: grid;
	gap: 0.25rem;
	padding: 1rem;
}

.trust-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: var(--ldc-radius);
	color: var(--ldc-cta);
	background: #eef7ff;
	overflow: visible;
}

.trust-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.trust-badge strong {
	color: var(--ldc-primary);
}

.trust-badge span:last-child,
.entry-summary,
.archive-description,
.seo-section p,
.sale-banner p {
	color: var(--ldc-muted);
}

.category-card {
	display: grid;
	overflow: hidden;
	color: var(--ldc-primary);
	font-weight: 800;
}

.category-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: var(--ldc-soft);
}

.category-card span {
	padding: 0.9rem 1rem;
}

.sale-banner,
.form-message {
	margin-bottom: 0;
	font-weight: 700;
}

.form-message.success {
	color: var(--ldc-success);
}

.form-message.error {
	color: var(--ldc-danger);
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 2rem;
	align-items: start;
}

.entry-card {
	padding: 1.2rem;
	margin-bottom: 1rem;
}

.entry-thumbnail img,
.single-thumbnail img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--ldc-radius);
	background: var(--ldc-soft);
}

.entry-title {
	margin: 0.8rem 0 0.4rem;
	color: var(--ldc-primary);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	color: var(--ldc-muted);
	font-size: 0.9rem;
}

.entry-content > * {
	max-width: 820px;
}

.entry-content > .alignwide {
	max-width: 1180px;
}

.entry-content > .alignfull {
	max-width: none;
	margin-inline: calc(50% - 50vw);
	width: 100vw;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	align-items: center;
	margin-bottom: 1.25rem;
	color: var(--ldc-muted);
	font-size: 0.92rem;
	line-height: 1.4;
}

.breadcrumbs a,
.breadcrumb-current,
.breadcrumb-separator {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
}

.breadcrumb-separator {
	color: #91a0b6;
}

.widget-area {
	position: sticky;
	top: 96px;
}

.widget {
	padding: 1rem;
	margin-bottom: 1rem;
	border: 1px solid var(--ldc-border);
	border-radius: var(--ldc-radius);
}

.widget-title {
	margin-top: 0;
	color: var(--ldc-primary);
	font-size: 1.05rem;
}

.site-footer {
	padding: 3.5rem 0 1.2rem;
	color: #dfe9f5;
	background:
		linear-gradient(135deg, rgba(15, 139, 255, 0.12), rgba(22, 163, 74, 0.08)),
		#0f2238;
}

.site-footer a {
	color: #fff;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.15fr 1fr 0.85fr 1fr;
	gap: 1.2rem;
	align-items: stretch;
}

.footer-brand,
.footer-column {
	padding: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ldc-radius);
	background: rgba(255, 255, 255, 0.045);
}

.footer-brand .site-title,
.site-footer .custom-logo-link {
	margin-bottom: 0.9rem;
}

.footer-brand p,
.footer-column p,
.footer-column li {
	color: #b8c7d8;
}

.footer-column h2 {
	margin: 0 0 0.85rem;
	color: #fff;
	font-size: 1rem;
	line-height: 1.25;
}

.footer-column ul,
.footer-links nav {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column li {
	position: relative;
	padding-left: 1.1rem;
}

.footer-column li::before {
	content: "";
	position: absolute;
	top: 0.6rem;
	left: 0;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: #9fd1ff;
}

.footer-links a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	color: #dfe9f5;
}

.footer-links a:hover {
	color: #9fd1ff;
}

.footer-trust,
.footer-shop-links,
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
}

.footer-trust span {
	padding: 0.32rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	font-size: 0.85rem;
}

.payment-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem;
	margin-top: 1rem;
	padding: 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--ldc-radius);
	background: rgba(255, 255, 255, 0.06);
}

.payment-card span {
	display: grid;
	place-items: center;
	min-height: 34px;
	border-radius: 6px;
	color: #0f2238;
	background: #fff;
	font-size: 0.78rem;
	font-weight: 850;
}

.footer-bottom {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
	align-items: center;
	margin-top: 1.2rem;
	padding: 1.1rem 1.2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	color: #b8c7d8;
}

.footer-bottom-menu {
	grid-column: span 4;
}

.footer-bottom-copy {
	grid-column: span 2;
	text-align: right;
}

.footer-bottom-copy p {
	margin: 0;
	color: #b8c7d8;
}

.footer-bottom ul {
	gap: 1.1rem;
}

.footer-bottom a {
	color: #dfe9f5;
}

.mobile-bottom-bar {
	display: none;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 0.75rem;
	border-bottom: 1px solid var(--ldc-border);
	text-align: left;
}
