:root {
	--ds-accent: #2f7de1;
	--ds-accent-dark: #1d5db6;
	--ds-accent-light: #73abf1;
	--ds-accent-soft: #edf5ff;
	--ds-accent-rgb: 47, 125, 225;
	--ds-text: #24364f;
	--ds-muted: #6a7b90;
	--ds-border: #d9e4f1;
	--ds-soft: #f5f8fd;
	--ds-shadow: 0 18px 40px rgba(33, 68, 117, 0.08);
	--ds-grid-columns: 4;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	color: var(--ds-text);
	background: #fff;
	line-height: 1.7;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(217, 228, 241, 0.8);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 84px;
}

.site-title,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 800;
	color: #2d4f75;
}

.site-title__mark {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	transform: rotate(45deg);
	background: linear-gradient(135deg, var(--ds-accent), var(--ds-accent-light));
}

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

.main-navigation .menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-navigation .menu a,
.footer-menu a {
	color: #42556f;
	font-weight: 600;
	font-size: 0.95rem;
}

.main-navigation .current-menu-item > a,
.main-navigation .menu a:hover {
	color: var(--ds-accent);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-actions a,
.header-search-toggle,
.menu-toggle {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4d6077;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-actions a:hover,
.menu-toggle:hover {
	background: var(--ds-soft);
	color: var(--ds-accent);
	transform: translateY(-1px);
}

.header-search-toggle {
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	width: auto;
	height: auto;
	border-radius: 0;
	box-shadow: none;
	color: #4d6077;
}

.header-search-toggle:hover {
	background: transparent;
	color: var(--ds-accent);
	transform: none;
}

.header-actions svg {
	display: block;
	width: 20px;
	height: 20px;
}

.menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #36506d;
	margin: 4px auto;
	border-radius: 999px;
}

.header-search-panel {
	position: absolute;
	top: calc(100% - 6px);
	right: 16px;
	width: min(560px, calc(100vw - 32px));
	border: 1px solid rgba(217, 228, 241, 0.9);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 22px 42px rgba(28, 53, 89, 0.12);
	z-index: 40;
}

.header-search-panel__inner {
	padding: 18px;
}

.header-search-panel .search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
}

.header-search-panel .search-field {
	width: 100%;
	min-height: 52px;
	padding: 0 18px;
	border-radius: 14px;
	border: 1px solid var(--ds-border);
	background: #fff;
	color: #1f3552;
}

.header-search-panel .search-submit {
	min-height: 52px;
	padding: 0 22px;
	border-radius: 14px;
	border: 0;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(180deg, var(--ds-accent) 0%, var(--ds-accent-dark) 100%);
}

.hero {
	position: relative;
	overflow: clip;
	background: radial-gradient(circle at top right, rgba(var(--ds-accent-rgb), 0.14), transparent 25%), linear-gradient(180deg, #fdfefe 0%, var(--ds-accent-soft) 100%);
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto -10% -40px;
	height: 180px;
	background: radial-gradient(80% 100% at 50% 0%, rgba(var(--ds-accent-rgb), 0.22), transparent 70%);
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 40px;
	padding: 54px 0 76px;
}

.hero__content {
	max-width: 520px;
	animation: dsFadeUp 0.7s ease both;
}

.hero__content h1 {
	margin: 0 0 14px;
	font-size: clamp(2.5rem, 5vw, 3.8rem);
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.hero__content p {
	margin: 0 0 28px;
	font-size: 1.1rem;
	color: var(--ds-muted);
}

.hero__media {
	animation: dsFloatIn 0.8s ease 0.12s both;
}

.hero__media img {
	filter: drop-shadow(0 36px 48px rgba(var(--ds-accent-rgb), 0.18));
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border: 0;
	border-radius: 12px;
	font-weight: 700;
	background: linear-gradient(180deg, var(--ds-accent) 0%, var(--ds-accent-dark) 100%);
	color: #fff;
	box-shadow: 0 12px 28px rgba(var(--ds-accent-rgb), 0.24);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	color: #fff;
	filter: brightness(1.03);
	transform: translateY(-1px);
	box-shadow: 0 18px 32px rgba(var(--ds-accent-rgb), 0.24);
}

.store-section {
	padding: 32px 0 10px;
}

.store-section,
.value-strip,
.newsletter-wrap,
.site-footer__main {
	content-visibility: auto;
	contain-intrinsic-size: 1px 640px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--ds-border);
}

.section-heading--center {
	justify-content: center;
	text-align: center;
}

.section-heading--center p {
	margin: 10px auto 0;
	max-width: 640px;
	color: var(--ds-muted);
}

.section-heading h2,
.section-heading h1 {
	margin: 0;
	font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.product-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(var(--ds-grid-columns), minmax(0, 1fr));
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.product-grid .product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	background: #fff;
	border: 1px solid var(--ds-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(38, 72, 120, 0.06);
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover,
.product-grid .product:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(38, 72, 120, 0.12);
}

.woocommerce ul.products li.product a img,
.product-grid .product a img {
	margin: 0;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	background: #f6f9fe;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-grid .product .woocommerce-loop-product__title {
	font-size: 1.05rem;
	font-weight: 700;
	padding: 16px 16px 4px;
	color: var(--ds-text);
}

.woocommerce ul.products li.product .price,
.product-grid .product .price {
	display: block;
	padding: 0 16px 8px;
	color: var(--ds-text);
	font-size: 1.3rem;
	font-weight: 800;
}

.woocommerce ul.products li.product .star-rating,
.product-grid .product .star-rating {
	margin: 0 16px 12px !important;
	color: #ffb648;
}

.product-card__footer {
	padding: 0 16px 16px;
}

.product-card__button {
	width: 100%;
}

.product-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(180deg, var(--ds-accent-light) 0%, var(--ds-accent) 100%);
	box-shadow: 0 8px 18px rgba(var(--ds-accent-rgb), 0.22);
	z-index: 1;
}

.value-strip {
	padding: 22px 0 16px;
}

.value-strip__grid {
	display: grid;
	grid-template-columns: repeat(var(--ds-value-columns), minmax(0, 1fr));
	gap: 24px;
	padding: 20px 24px;
	background: linear-gradient(180deg, #fff 0%, var(--ds-accent-soft) 100%);
	border: 1px solid var(--ds-border);
	border-radius: 18px;
}

.value-item h3 {
	margin: 0;
	font-size: 1.05rem;
}

.value-item {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px 20px;
	min-height: 100%;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(var(--ds-accent-rgb), 0.14);
	border-radius: 18px;
	box-shadow: 0 14px 32px rgba(28, 53, 89, 0.05);
}

.value-item__heading {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: nowrap;
	text-align: left;
}

.value-item__icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid rgba(var(--ds-accent-rgb), 0.18);
	box-shadow: 0 10px 22px rgba(var(--ds-accent-rgb), 0.08);
	color: var(--ds-accent);
}

.value-item__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.value-item__body {
	min-width: 0;
	text-align: left;
}

.value-item__body p {
	font-size: 0.96rem;
	line-height: 1.65;
}

.value-item p {
	margin: 0;
	color: var(--ds-muted);
}

.store-cta-wrap {
	padding: 8px 0 46px;
	text-align: center;
}

.newsletter-wrap {
	background: linear-gradient(180deg, var(--ds-accent-soft) 0%, rgba(var(--ds-accent-rgb), 0.16) 100%);
	padding: 34px 0 0;
}

.newsletter-wrap__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 28px;
	padding: 32px;
	background: linear-gradient(135deg, #ffffff 0%, rgba(var(--ds-accent-rgb), 0.06) 100%);
	border: 1px solid rgba(var(--ds-accent-rgb), 0.18);
	border-radius: 24px 24px 0 0;
	box-shadow: 0 20px 46px rgba(25, 49, 84, 0.08);
}

.newsletter-wrap h2,
.site-footer h3,
.site-footer h4 {
	margin: 0 0 8px;
}

.newsletter-copy h2 {
	color: #111827;
	font-size: clamp(1.7rem, 2.5vw, 2.4rem);
	line-height: 1.1;
}

.newsletter-wrap p {
	margin: 0;
	color: #4b5563;
	max-width: 680px;
}

.newsletter-form {
	display: flex;
	align-items: center;
	gap: 12px;
	width: min(100%, 920px);
	padding: 10px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(var(--ds-accent-rgb), 0.12);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.newsletter-message {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
}

.newsletter-message--success {
	background: rgba(34, 197, 94, 0.12);
	color: #166534;
}

.newsletter-message--exists,
.newsletter-message--invalid,
.newsletter-message--error {
	background: rgba(239, 68, 68, 0.1);
	color: #991b1b;
}

.newsletter-form input {
	flex: 1;
	min-height: 50px;
	padding: 0 16px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: transparent;
	color: #1f3552;
}

.newsletter-form input::placeholder {
	color: #6f8096;
}

.newsletter-form button {
	min-height: 50px;
	padding: 0 24px;
	border-radius: 12px;
	border: 0;
	color: #fff;
	background: linear-gradient(180deg, var(--ds-accent) 0%, var(--ds-accent-dark) 100%);
	font-weight: 700;
}

.site-footer {
	background: #1e2d42;
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__main {
	padding: 42px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 28px;
}

.footer-column .widget-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 1rem;
}

.footer-column .widget {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.footer-column li,
.footer-column p,
.footer-column label {
	color: rgba(255, 255, 255, 0.75);
}

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

.footer-column select,
.footer-column input {
	width: 100%;
	min-height: 42px;
	padding: 0;
	border-radius: 0;
	border: 0;
	background: transparent;
	color: #fff;
}

.site-footer__bottom {
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: center;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.68);
	text-align: center;
}

.footer-menu {
	display: grid;
	gap: 10px;
}

.footer-menu li {
	list-style: none;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
}

.content-area,
.page-layout,
.shop-layout {
	padding: 36px 0 56px;
}

.page-entry,
.entry-card {
	background: #fff;
	border: 1px solid var(--ds-border);
	border-radius: 18px;
	box-shadow: var(--ds-shadow);
	overflow: hidden;
}

.page-entry__header,
.page-entry__content,
.entry-card__body {
	padding: 24px;
}

.entry-card {
	max-width: 860px;
	margin: 0 auto 24px;
}

.entry-card__title,
.page-entry__header h1 {
	margin: 0;
	font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.entry-card__meta,
.woocommerce-breadcrumb,
.woocommerce-review-link,
.woocommerce-product-rating {
	color: var(--ds-muted);
	font-size: 0.95rem;
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 40px;
	align-items: start;
}

.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__wrapper {
	border-radius: 20px;
	overflow: hidden;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	width: 76px !important;
}

.single-product .product_title {
	margin: 0 0 12px;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.05;
}

.product-audio-preview {
	margin: 16px 0 22px;
	padding: 14px;
	border: 1px solid var(--ds-border);
	border-radius: 16px;
	background: var(--ds-accent-soft);
}

.single-product .price {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 800;
	color: var(--ds-text);
}

.single-feature-list,
.single-benefits,
.digital-product-info ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	gap: 10px;
}

.single-feature-list li,
.single-benefits li,
.digital-product-info li {
	position: relative;
	padding-left: 22px;
	color: #41546d;
}

.single-feature-list li::before,
.single-benefits li::before,
.digital-product-info li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: var(--ds-accent);
}

.single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 18px;
}

.single-product .quantity .qty {
	min-height: 46px;
	border-radius: 12px;
	border: 1px solid var(--ds-border);
}

.single-product .woocommerce-tabs {
	margin-top: 48px;
}

.single-product .woocommerce-tabs .tabs,
.woocommerce div.product .related.products > h2 {
	display: none;
}

.single-product .woocommerce-Tabs-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: 30px;
	padding-top: 12px;
}

.single-product .woocommerce-Tabs-panel h2 {
	margin-top: 0;
	font-size: 1.8rem;
}

.digital-product-info {
	align-self: start;
	padding: 24px;
	background: linear-gradient(180deg, #fff 0%, var(--ds-accent-soft) 100%);
	border: 1px solid var(--ds-border);
	border-radius: 18px;
	box-shadow: var(--ds-shadow);
}

.digital-product-info h3 {
	margin-top: 0;
	margin-bottom: 18px;
	font-size: 1.2rem;
}

.related-heading {
	margin-top: 52px;
}

.woocommerce .woocommerce-pagination ul.page-numbers {
	border: 0;
	display: flex;
	gap: 10px;
	padding: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li {
	border: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li .page-numbers {
	border-radius: 12px;
	border: 1px solid var(--ds-border);
	padding: 10px 14px;
}

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

@keyframes dsFadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dsFloatIn {
	from {
		opacity: 0;
		transform: translateY(28px) scale(0.96);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 1100px) {
	.hero__inner,
	.single-product div.product,
	.single-product .woocommerce-Tabs-panel,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(min(3, var(--ds-grid-columns)), minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.site-header__inner {
		grid-template-columns: auto auto auto;
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.main-navigation {
		position: absolute;
		left: 16px;
		right: 16px;
		top: calc(100% + 10px);
		padding: 16px;
		background: #fff;
		border: 1px solid var(--ds-border);
		border-radius: 18px;
		box-shadow: var(--ds-shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.main-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-navigation .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.hero__inner,
	.newsletter-wrap__inner,
	.value-strip__grid {
		grid-template-columns: 1fr;
	}

	.product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.container {
		width: min(100% - 20px, 100%);
	}

	.site-header__inner {
		gap: 12px;
		min-height: 74px;
	}

	.header-actions {
		gap: 6px;
	}

	.header-actions a {
		width: 34px;
		height: 34px;
	}

	.header-search-toggle {
		width: auto;
		height: auto;
	}

	.hero__inner {
		padding: 32px 0 48px;
	}

	.hero__content h1,
	.single-product .product_title {
		font-size: 2rem;
	}

	.product-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.newsletter-form,
	.single-product form.cart {
		flex-direction: column;
	}

	.header-search-panel .search-form {
		grid-template-columns: 1fr;
	}

	.newsletter-form button,
	.newsletter-form input,
	.header-search-panel .search-submit,
	.header-search-panel .search-field,
	.single-product form.cart .button,
	.single-product form.cart .quantity {
		width: 100%;
	}
}
