/* Design tokens */
:root {
	--ut-bg: #f2f7fb;
	--ut-surface: #ffffff;
	--ut-surface-alt: #e9f2f8;
	--ut-text: #16223b;
	--ut-muted: #5a6983;
	--ut-primary: #0f79b6;
	--ut-primary-dark: #0b5e8f;
	--ut-accent: #ff934a;
	--ut-border: #d4e2ee;
	--ut-shadow: 0 20px 45px rgba(13, 35, 64, 0.08);
	--ut-radius: 18px;
	--ut-header-offset: 0px;
}

/* Base */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

html {
	scroll-padding-top: calc(var(--ut-header-offset) + 12px);
}

body {
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--ut-text);
	background:
		radial-gradient(circle at 8% 6%, rgba(15, 121, 182, 0.13), transparent 34%),
		radial-gradient(circle at 92% 4%, rgba(255, 147, 74, 0.12), transparent 32%),
		var(--ut-bg);
}

html,
body {
	overflow-x: clip;
}

@supports not (overflow: clip) {
	html,
	body {
		overflow-x: hidden;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Sora", "Trebuchet MS", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ut-text);
}

a {
	color: var(--ut-primary);
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: var(--ut-primary-dark);
}

:is(.mid-content, .ut-container) {
	width: min(1260px, 100vw);
	max-width: 1260px;
	margin-inline: auto;
	box-sizing: border-box;
	padding-inline: clamp(12px, 4vw, 20px);
}

/* Semantic class aliases added in templates (`ut-*`) */
/*
Class groups:
- `ut-site-*`: global shell, header, nav, footer
- `ut-layout-*`: main content/sidebar wrappers used across templates
- `ut-social-icons*`: social rail wrapper/items/labels
- `ut-wc-*`: WooCommerce layout wrappers
These are aliases layered on top of legacy classes/IDs so visuals stay unchanged.
*/
@supports (display: flow-root) {
	:where(.ut-layout-shell, .ut-site-footer__widgets, .ut-site-footer__bottom-inner) {
		display: flow-root;
	}
}

.parallax-section.default_template.ut-default-fallback-bg {
	background:
		radial-gradient(circle at 10% 8%, rgba(15, 121, 182, 0.16), transparent 34%),
		radial-gradient(circle at 92% 12%, rgba(255, 147, 74, 0.16), transparent 36%),
		linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.parallax-section {
	scroll-margin-top: calc(var(--ut-header-offset) + 12px);
}
/* Section spacing tune (micro adjustments) */
.parallax-section h2 {
	margin-bottom: 54px;
}

.parallax-section .page-content {
	margin-top: 14px;
}

.parallax-section .page-content > :last-child,
.parallax-section .service-content > :last-child,
.parallax-section .blog-excerpt > :last-child,
.parallax-section .call-to-action .page-content > :last-child {
	margin-bottom: 0;
}

.parallax-section .mid-content > :last-child {
	margin-bottom: 0;
}

.parallax-section.service_template {
	padding-bottom: 48px;
}

.btn-wrap {
	margin-top: 26px;
}

@media screen and (max-width: 768px) {
	.parallax-section h2 {
		margin-bottom: 44px;
	}

	.parallax-section .page-content {
		margin-top: 12px;
	}

	.parallax-section.service_template {
		padding-bottom: 44px;
	}

	.btn-wrap {
		margin-top: 22px;
	}
}

/* Header / navigation */
:is(#masthead, .ut-site-header) {
	background: linear-gradient(135deg, #0f2238 0%, #153655 65%, #0d4f7c 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 14px 35px rgba(4, 18, 32, 0.25);
	padding: 18px 0;
}

:is(#masthead, .ut-site-header) :is(.flex-box, .ut-site-header__row) {
	gap: 24px;
}

body.parallax-on :is(#masthead, .ut-site-header) {
	backdrop-filter: blur(10px);
}

body.admin-bar.parallax-on :is(#masthead, .ut-site-header) {
	top: 32px;
}

:is(#site-logo, .ut-site-branding) {
	width: auto;
}

.site-title {
	margin-top: 0;
}

.site-title a,
.site-description {
	color: #f7fbff;
}

.site-description {
	opacity: 0.86;
}

:is(.main-navigation, .ut-site-nav) {
	max-width: none;
	position: relative;
}

:is(.main-navigation, .ut-site-nav) > ul {
	float: none;
	display: flex;
	gap: 6px;
	align-items: center;
}

:is(.main-navigation, .ut-site-nav) > ul > li {
	float: none;
}

:is(.main-navigation, .ut-site-nav) > ul > li > a {
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #f3f9ff;
}

#top-menu li.active a,
:is(.main-navigation, .ut-site-nav) > ul > li > a:hover,
:is(.main-navigation, .ut-site-nav) .current_page_item > a,
:is(.main-navigation, .ut-site-nav) .current-menu-item > a {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
}

:is(.main-navigation, .ut-site-nav) ul ul {
	top: calc(100% + 12px);
	background: var(--ut-surface);
	border: 1px solid var(--ut-border);
	border-radius: 14px;
	box-shadow: var(--ut-shadow);
	padding: 8px 0;
	overflow: hidden;
	min-width: 0;
	box-sizing: border-box;
}

:is(.main-navigation, .ut-site-nav) ul ul a {
	color: var(--ut-text);
	padding: 11px 16px;
	border-bottom-color: #edf3f8;
}

:is(.main-navigation, .ut-site-nav) ul ul li:last-child a {
	border-bottom: 0;
}

:is(.menu-toggle, .ut-site-nav__toggle) {
	display: none;
	align-items: center;
	justify-content: center;
	height: 44px;
	width: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	cursor: pointer;
}

:is(.menu-toggle, .ut-site-nav__toggle) i {
	font-size: 1.1rem;
}

:is(.menu-toggle, .ut-site-nav__toggle):hover,
:is(.menu-toggle, .ut-site-nav__toggle):focus {
	background: rgba(255, 255, 255, 0.24);
}

:is(.menu-toggle, .ut-site-nav__toggle).is-open {
	background: #fff;
	color: var(--ut-primary);
}

#content {
	background: transparent;
}

#content > :is(.mid-content, .ut-container) {
	margin-top: 32px;
}

.hentry,
#comments,
:is(#secondary, .ut-layout-sidebar) .widget,
.page-header,
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation,
.site-main .posts-navigation {
	background: var(--ut-surface);
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
	box-shadow: var(--ut-shadow);
}

.hentry {
	padding: clamp(24px, 4vw, 40px);
}

.entry-thumb {
	margin: calc(clamp(24px, 4vw, 40px) * -1) calc(clamp(24px, 4vw, 40px) * -1) 28px;
	border-radius: var(--ut-radius) var(--ut-radius) 0 0;
	overflow: hidden;
}

.entry-thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.45s ease;
}

.article-wrap:hover .entry-thumb img {
	transform: scale(1.03);
}

.entry-header h1.entry-title a,
.entry-title a {
	color: var(--ut-text);
}

.entry-content {
	color: #2a3956;
}

.posted-on {
	left: 24px;
	top: -18px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	box-shadow: 0 12px 26px rgba(8, 70, 111, 0.3);
}

.posted-on:before {
	display: none;
}

.entry-footer {
	font-size: 0.92rem;
	color: var(--ut-muted);
}

.entry-footer span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-right: 14px;
}

.entry-footer a {
	color: var(--ut-muted);
}

.edit-link {
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	border-radius: 999px;
	padding: 7px 16px;
}

.edit-link a {
	color: #fff;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.pagination .nav-links a,
.pagination .nav-links span.current {
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	border-radius: 12px;
	border: 0;
	color: #fff;
}

:is(
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="tel"],
	textarea,
	select
) {
	border-radius: 12px;
	border: 1px solid var(--ut-border);
	background: #fff;
}

:is(
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="tel"],
	textarea,
	select
):focus {
	border-color: #7fb4d4;
	box-shadow: 0 0 0 3px rgba(15, 121, 182, 0.15);
	outline: 0;
}

/* Contact Form 7 compatibility inside parallax sections */
.parallax-section .wpcf7-form-control-wrap {
	display: block;
	inline-size: 100%;
}

.parallax-section .wpcf7-form-control-wrap > textarea.wpcf7-form-control.wpcf7-textarea {
	display: block;
	margin: 0 auto;
	padding: 10px 15px;
	inline-size: 100%;
	max-inline-size: 100%;
	box-sizing: border-box;
	border: 1px solid #06c;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.4);
	color: inherit;
	block-size: auto;
	min-block-size: 120px;
	line-height: 1.5;
	resize: vertical;
}

.parallax-section .wpcf7-form-control-wrap > textarea.wpcf7-form-control.wpcf7-textarea:focus {
	border-color: #7fb4d4;
	box-shadow: 0 0 0 3px rgba(15, 121, 182, 0.15);
	outline: 0;
}

:is(#secondary, .ut-layout-sidebar) h2.widget-title {
	border-bottom-width: 2px;
	border-bottom-color: var(--ut-primary);
}

.tagcloud a {
	border-radius: 999px;
	border: 1px solid var(--ut-border);
	background: #f4f9fd;
	color: #234;
}

/* Footer */
:is(.top-footer, .ut-site-footer__top) {
	background: linear-gradient(135deg, #0e1f34 0%, #113452 80%);
	color: #e3edf8;
}

:is(.top-footer, .ut-site-footer__top) :is(a, h1, h2, h3, h4) {
	color: #f2f8ff;
}

:is(.bottom-footer, .ut-site-footer__bottom) {
	background: #0a1727;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #d4e0ee;
}

:is(.bottom-footer, .ut-site-footer__bottom) :is(.site-info, .ut-site-footer__info) {
	color: #9eb4ce;
}

:is(#go-top, .ut-back-to-top) {
	right: 22px;
	bottom: 22px;
	border-radius: 14px;
	box-shadow: 0 14px 28px rgba(5, 30, 55, 0.3);
}

:is(#go-top, .ut-back-to-top) a {
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	border-radius: 14px;
}

/* Social rail */
:is(.social-icons, .ut-social-icons) {
	position: fixed !important;
	left: max(12px, env(safe-area-inset-left)) !important;
	inset-inline-start: max(12px, env(safe-area-inset-left)) !important;
	top: 50vh !important;
	right: auto !important;
	bottom: auto !important;
	transform: translateY(-50%) !important;
	margin: 0;
	padding: 0;
	width: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 2140 !important;
}

body.admin-bar :is(.social-icons, .ut-social-icons) {
	top: calc(50vh + 14px) !important;
}

:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) {
	--ut-social-hover-bg: #1a4f79;
	--ut-social-hover-color: #f4f9ff;
	height: 50px;
	width: 50px;
	line-height: 50px;
	margin: 0;
	border-radius: 14px;
	background: #123652;
	color: #f4f9ff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 10px 22px rgba(7, 25, 42, 0.28);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) i {
	line-height: 1;
	font-size: 2rem;
}

:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link):hover {
	transform: translateX(4px);
	background: var(--ut-social-hover-bg);
	color: var(--ut-social-hover-color);
	box-shadow: 0 14px 28px rgba(7, 25, 42, 0.34);
}

.social-icons a.facebook,
.ut-social-icons a.facebook {
	--ut-social-hover-bg: #1877f2;
}

.social-icons a.twitter,
.ut-social-icons a.twitter {
	--ut-social-hover-bg: #1d9bf0;
}

.social-icons a.linkedin,
.ut-social-icons a.linkedin {
	--ut-social-hover-bg: #0a66c2;
}

.social-icons a.instagram,
.ut-social-icons a.instagram {
	--ut-social-hover-bg: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
}

.social-icons a.whatsapp,
.ut-social-icons a.whatsapp {
	--ut-social-hover-bg: #25d366;
	--ut-social-hover-color: #fff;
}

:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) :is(span, .ut-social-icons__label) {
	position: absolute;
	left: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%) translateX(6px);
	background: #0d2236;
	color: #edf6ff;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	padding: 7px 10px;
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.1;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) :is(span, .ut-social-icons__label):after {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%) !important;
	border-style: solid;
	border-width: 6px;
	border-color: transparent #0d2236 transparent transparent;
	margin: 0;
	left: auto;
}

:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link):hover :is(span, .ut-social-icons__label) {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

@media screen and (max-width: 900px) {
	:is(.social-icons, .ut-social-icons) {
		left: max(8px, env(safe-area-inset-left)) !important;
		gap: 6px;
	}

	:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) {
		width: 42px;
		height: 42px;
		line-height: 42px;
		border-radius: 12px;
	}

	:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) i {
		font-size: 1.55rem;
	}

	:is(.social-icons, .ut-social-icons) :is(a, .ut-social-icons__link) :is(span, .ut-social-icons__label) {
		display: none;
	}
}

/* Slider runtime state */
.ultratheme-slider .overlay-dot {
	pointer-events: none;
}

.ultratheme-slider .glide__wrapper {
	position: relative;
	overflow: hidden;
}

.ultratheme-slider .glide__track {
	position: relative;
}

.ultratheme-slider .glide__arrow {
	z-index: 150;
}

.ultratheme-slider.ut-slider-ready .glide__slide {
	float: none !important;
	width: 100% !important;
}

.ultratheme-slider.ut-slider-ready.ut-transition-slide .glide__track {
	display: flex;
	transition: transform var(--ut-slider-speed, 500ms) ease;
}

.ultratheme-slider.ut-slider-ready.ut-transition-slide .glide__track.ut-no-transition {
	transition: none;
}

.ultratheme-slider.ut-slider-ready.ut-transition-slide .glide__slide {
	flex: 0 0 100%;
	max-width: 100%;
}

.ultratheme-slider.ut-slider-ready.ut-transition-fade .glide__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--ut-slider-speed, 500ms) ease;
}

.ultratheme-slider.ut-slider-ready.ut-transition-fade .glide__slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.ultratheme-slider.full-screen-yes .glide__wrapper,
.ultratheme-slider.full-screen-yes .glide__track,
.ultratheme-slider.full-screen-yes .glide__slide {
	min-height: 70vh;
}

/* Motion + reveals (consolidated from assets/css/scroll-animations.css). */
.animated {
	will-change: opacity, transform;
}

html.ut-animate-ready .wow {
	--ut-wow-duration: 1.15s;
	--ut-wow-delay: 0s;
	--ut-wow-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ut-wow-x: 0px;
	--ut-wow-y: 42px;
	opacity: 0;
	transform: translate3d(var(--ut-wow-x), var(--ut-wow-y), 0);
	transition-property: opacity, transform;
	transition-duration: var(--ut-wow-duration), var(--ut-wow-duration);
	transition-delay: var(--ut-wow-delay), var(--ut-wow-delay);
	transition-timing-function: var(--ut-wow-ease), var(--ut-wow-ease);
	will-change: opacity, transform;
}

html.ut-animate-ready .wow.fadeIn {
	--ut-wow-x: 0px;
	--ut-wow-y: 0px;
}

html.ut-animate-ready .wow.fadeInLeft {
	--ut-wow-x: -52px;
	--ut-wow-y: 0px;
}

html.ut-animate-ready .wow.fadeInRight {
	--ut-wow-x: 52px;
	--ut-wow-y: 0px;
}

html.ut-animate-ready .wow.fadeInUp {
	--ut-wow-x: 0px;
	--ut-wow-y: 48px;
}

html.ut-animate-ready .wow.fadeInDown {
	--ut-wow-x: 0px;
	--ut-wow-y: -48px;
}

html.ut-animate-ready .wow.ut-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.ultratheme-slider.ut-slider-ready.ut-transition-slide .glide__track,
	.ultratheme-slider.ut-slider-ready.ut-transition-fade .glide__slide {
		transition-duration: 0.01ms !important;
	}

	.wow,
	.wow.ut-revealed {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.blog .hentry,
	.archive .hentry {
		animation: ut-fade-up 0.55s ease both;
	}

	.blog .hentry:nth-of-type(2n),
	.archive .hentry:nth-of-type(2n) {
		animation-delay: 0.08s;
	}
}

@keyframes ut-fade-up {
	from {
		transform: translateY(16px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive navigation */
@media screen and (max-width: 1000px) {
	:is(.main-navigation, .ut-site-nav) {
		width: auto;
		text-align: left;
	}

	:is(.main-navigation, .ut-site-nav) > ul {
		display: none;
		position: absolute;
		right: 0;
		left: auto;
		top: calc(100% + 10px);
		width: min(330px, 90vw);
		padding: 12px;
		border-radius: 16px;
		background: #10263f;
		border: 1px solid rgba(255, 255, 255, 0.14);
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
		z-index: 101;
	}

	:is(.main-navigation, .ut-site-nav) > ul > li {
		display: block;
		border: 0;
	}

	:is(.main-navigation, .ut-site-nav) > ul > li > a {
		color: #f3f8ff;
		border-radius: 12px;
		padding: 11px 12px;
	}

	:is(.main-navigation, .ut-site-nav) ul ul {
		position: static;
		display: block;
		margin-top: 8px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.05);
		border: 0;
		box-shadow: none;
	}

	:is(.main-navigation, .ut-site-nav) ul ul a {
		color: #d8e7f7;
		border: 0;
		padding: 8px 10px;
	}

	:is(.menu-toggle, .ut-site-nav__toggle) {
		display: flex;
	}
}

@media screen and (min-width: 1001px) {
	:is(.main-navigation, .ut-site-nav) > ul {
		display: flex !important;
	}

	.logo-top :is(.main-navigation, .ut-site-nav) > ul {
		display: inline-flex !important;
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	:is(#primary, .ut-layout-main),
	:is(#secondary, .ut-layout-sidebar) {
		float: none;
		width: 100%;
	}

	:is(#secondary, .ut-layout-sidebar) {
		margin-top: 22px;
	}

	#content > :is(.mid-content, .ut-container) {
		margin-top: 24px;
	}

	:is(#site-logo, .ut-site-branding),
	.logo-top :is(#site-logo, .ut-site-branding) {
		width: auto;
		max-width: 75%;
	}

	:is(#masthead, .ut-site-header) {
		padding: 14px 0;
	}
}

@media screen and (max-width: 480px) {
	.ultratheme-slider .slider-caption {
		display: block;
		padding: 0 18px;
		top: 50%;
		transform: translateY(-50%) !important;
	}

	.ultratheme-slider .slider-caption .caption-title {
		width: 100%;
		font-size: clamp(1.35rem, 7vw, 2rem);
		line-height: 1.25;
		margin-bottom: 12px;
	}

	.ultratheme-slider .slider-caption .caption-description {
		width: 100%;
		font-size: clamp(0.95rem, 4.2vw, 1.15rem);
		line-height: 1.4;
		margin-bottom: 12px;
	}

	.ultratheme-slider .slider-caption .caption-description p {
		margin-bottom: 12px;
	}

	.ultratheme-slider .slider-caption .caption-description a {
		font-size: 0.95rem;
		padding: 10px 14px;
	}
}

@media screen and (max-width: 782px) {
	body.admin-bar.parallax-on :is(#masthead, .ut-site-header) {
		top: 46px;
	}
}

:is(#site-logo, .ut-site-branding) .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

:is(#site-logo, .ut-site-branding) .custom-logo {
	height: auto;
	width: auto;
	max-height: 64px;
	max-width: 320px;
}

@media (max-width: 1000px) {
	:is(#site-logo, .ut-site-branding) .custom-logo {
		max-height: 52px;
		max-width: 240px;
	}
}



/* WooCommerce Catalog Refresh */
:is(.woocommerce-area, .ut-wc-main) {
	background: var(--ut-surface);
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
	box-shadow: var(--ut-shadow);
	padding: clamp(18px, 2.4vw, 28px);
}

.woocommerce .woocommerce-breadcrumb {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	border: 1px solid var(--ut-border);
	border-radius: 999px;
	padding: 8px 14px;
	margin-bottom: 18px;
	background: #f4f9fd;
	color: var(--ut-muted);
	font-size: 0.9rem;
	line-height: 1.25;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--ut-primary-dark);
	text-decoration: none;
	font-weight: 600;
}

.woocommerce .woocommerce-breadcrumb a:hover {
	color: var(--ut-primary);
	text-decoration: underline;
}

.woocommerce .page-title {
	margin-bottom: 18px;
}

.woocommerce .woocommerce-result-count {
	color: var(--ut-muted);
	font-size: 0.94rem;
	margin: 0 0 16px;
}

.woocommerce .woocommerce-ordering {
	margin: 0 0 16px;
}

.woocommerce .woocommerce-ordering select {
	border: 1px solid var(--ut-border);
	border-radius: 12px;
	background: #fff;
	color: var(--ut-text);
	padding: 8px 12px;
	min-height: 42px;
}

:is(.woocommerce, .woocommerce-page) ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0 !important;
	padding: 0;
}

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

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

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

:is(.woocommerce, .woocommerce-page) ul.products::before,
:is(.woocommerce, .woocommerce-page) ul.products::after {
	content: none !important;
	display: none !important;
}

:is(.woocommerce, .woocommerce-page) ul.products li.product {
	float: none !important;
	clear: none !important;
	width: auto !important;
	margin: 0 !important;
	position: relative;
	overflow: hidden;
	min-width: 0;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid var(--ut-border);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(10, 29, 50, 0.08);
	padding: 0 0 14px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

:is(.woocommerce, .woocommerce-page) ul.products li.product:is(.first, .last) {
	clear: none !important;
}

:is(.woocommerce, .woocommerce-page) ul.products li.product:hover {
	background: #fff;
	border-color: #b8d2e8;
	box-shadow: 0 18px 36px rgba(10, 29, 50, 0.14);
	transform: translateY(-4px);
}

:is(.woocommerce, .woocommerce-page) ul.products li.product a {
	color: inherit;
	text-decoration: none;
}

:is(.woocommerce, .woocommerce-page) ul.products li.product a :is(
	img.attachment-woocommerce_thumbnail,
	img.size-woocommerce_thumbnail
) {
	margin-bottom: 0;
	width: calc(100% - 28px);
	margin-inline: auto;
	margin-top: 14px;
	aspect-ratio: 1 / 1;
	max-height: 200px;
	object-fit: contain;
	object-position: center;
	transition: transform 0.35s ease;
}

:is(.woocommerce, .woocommerce-page) ul.products li.product:hover a :is(
	img.attachment-woocommerce_thumbnail,
	img.size-woocommerce_thumbnail
) {
	transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3,
.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title {
	border: 0;
	margin: 0;
	padding: 14px 16px 6px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.35;
	font-size: 1rem !important;
	font-weight: 700;
	color: #22334a;
}

.woocommerce ul.products li.product .price {
	color: #21324a;
	font-size: 1rem !important;
	font-weight: 700;
	padding: 0 16px;
	margin: 0 0 12px;
	text-align: center;
}

.woocommerce ul.products li.product .price del {
	opacity: 0.55;
	margin-right: 0.4rem;
}

.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
	margin: 0;
	top: 12px;
	left: 12px;
	right: auto !important;
	min-height: 0;
	line-height: 1;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	box-shadow: 0 10px 22px rgba(11, 46, 78, 0.28);
}

.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button {
	position: relative;
	left: 50%;
	right: auto !important;
	bottom: auto !important;
	float: none !important;
	transform: translate3d(-50%, 0, 0);
	margin: 0;
	width: fit-content;
	max-width: calc(100% - 28px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 0;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px 14px;
	text-align: center;
	white-space: nowrap;
}

.woocommerce ul.products li.product:hover .button.add_to_cart_button {
	transform: translate3d(-50%, 0, 0);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:focus {
	background: linear-gradient(135deg, #0b5e8f 0%, #084b72 100%);
	color: #fff;
}

/* WooCommerce Blocks (Product Collection) */
.parallax-section .wp-block-woocommerce-product-collection {
	margin: 0;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-5,
.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive > .wc-block-product {
	min-width: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ut-border);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(10, 29, 50, 0.08);
	padding: 0 0 14px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive > .wc-block-product:hover {
	border-color: #b8d2e8;
	box-shadow: 0 18px 36px rgba(10, 29, 50, 0.14);
	transform: translateY(-4px);
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-image,
.parallax-section .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-image {
	margin: 0;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-image a {
	display: block;
	position: relative;
	text-decoration: none;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-image img,
.parallax-section .wp-block-woocommerce-product-collection img.attachment-woocommerce_thumbnail,
.parallax-section .wp-block-woocommerce-product-collection img.size-woocommerce_thumbnail {
	display: block;
	width: calc(100% - 28px);
	margin-inline: auto;
	margin-top: 14px;
	margin-bottom: 0;
	aspect-ratio: 1 / 1;
	max-height: 200px;
	object-fit: contain !important;
	object-position: center;
	transition: transform 0.35s ease;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-product:hover .wc-block-components-product-image img,
.parallax-section .wp-block-woocommerce-product-collection .wc-block-product:hover img.attachment-woocommerce_thumbnail,
.parallax-section .wp-block-woocommerce-product-collection .wc-block-product:hover img.size-woocommerce_thumbnail {
	transform: scale(1.02);
}

.parallax-section .wp-block-woocommerce-product-collection h2.wp-block-post-title {
	margin: 0 !important;
	padding: 14px 16px 6px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.35 !important;
	font-size: 1rem !important;
	font-weight: 700;
	color: #22334a;
}

.parallax-section .wp-block-woocommerce-product-collection h2.wp-block-post-title a {
	color: inherit;
	text-decoration: none;
}

.parallax-section .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-price,
.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-price {
	margin: 0 0 12px;
	padding: 0 16px;
	text-align: center;
	color: #21324a;
	font-size: 1rem !important;
	font-weight: 700;
}

.parallax-section .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-button,
.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-button {
	margin: auto 0 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-button__button.wp-block-button__link {
	margin: 0;
	width: fit-content;
	max-width: calc(100% - 28px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 0;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-button__button.wp-block-button__link:hover,
.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-button__button.wp-block-button__link:focus {
	background: linear-gradient(135deg, #0b5e8f 0%, #084b72 100%);
	color: #fff;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-sale-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	right: auto;
	margin: 0;
	min-height: 0;
	line-height: 1;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	box-shadow: 0 10px 22px rgba(11, 46, 78, 0.28);
	color: #fff;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-product-sale-badge__text {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.parallax-section .wp-block-woocommerce-product-collection .wc-block-components-notices {
	margin: 0 0 14px;
}

@media screen and (max-width: 1200px) {
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-5,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 900px) {
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-5,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-4,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-5,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-4,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-3,
	.parallax-section .wp-block-woocommerce-product-collection .wc-block-product-template__responsive.columns-2 {
		grid-template-columns: 1fr;
	}
}


.parallax-section .page-content .woocommerce + p,
.parallax-section .page-content .wp-block-woocommerce-product-collection + p {
	margin-top: 24px;
	margin-bottom: 0;
}

.parallax-section .page-content .woocommerce + p .btn,
.parallax-section .page-content .wp-block-woocommerce-product-collection + p .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.woocommerce a.added_to_cart {
	display: none !important;
}

.post-type-archive-product .woocommerce-message .button.wc-forward,
.tax-product_cat .woocommerce-message .button.wc-forward,
.tax-product_tag .woocommerce-message .button.wc-forward,
.woocommerce-shop .woocommerce-message .button.wc-forward {
	display: none;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 26px;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li :is(a, span) {
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 10px;
	background: #e8f2fa;
	color: #1f3550;
	font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li a:is(:focus, :hover),
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	color: #fff;
}

.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) {
	margin-top: 24px;
	border: 1px solid var(--ut-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(10, 29, 50, 0.08);
	overflow: hidden;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-end;
	margin: 0;
	padding: 10px 12px 0;
	border: 0;
	border-bottom: 1px solid var(--ut-border);
	background: #f4f9fd;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	background: transparent;
	margin: 0;
	padding: 0;
	border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 10px 10px 0 0;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	color: #39506b;
	border: 1px solid transparent;
	text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: #fff;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	border-color: transparent;
}

.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) .panel {
	margin: 0;
	padding: 20px 22px 22px;
	background: #fff;
	color: #253a53;
}

.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) .panel > h2 {
	margin-top: 0;
	font-size: 1.12rem;
	color: #1e324b;
}

@media screen and (max-width: 640px) {
	.woocommerce div.product .woocommerce-tabs ul.tabs {
		padding: 8px 8px 0;
		gap: 6px;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding: 8px 10px;
		font-size: 0.86rem;
	}

	.woocommerce div.product .woocommerce-tabs .panel,
	.woocommerce div.product .wc-tabs-wrapper .panel {
		padding: 16px 14px 18px;
	}
}

@media screen and (max-width: 1100px) {
	:is(.woocommerce, .woocommerce-page) ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media screen and (max-width: 640px) {
	:is(.woocommerce, .woocommerce-page) ul.products {
		grid-template-columns: 1fr;
	}

	:is(.woocommerce, .woocommerce-page).columns-4 ul.products,
	:is(.woocommerce, .woocommerce-page) ul.products.columns-4 {
		grid-template-columns: 1fr;
	}
}

/* WooCommerce single product */
body.single-product.woocommerce .woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 0 0 18px;
	padding: 10px 14px;
	border: 1px solid rgba(15, 121, 182, 0.12);
	border-radius: 14px;
	background:
		radial-gradient(circle at 10% 20%, rgba(15, 121, 182, 0.08), transparent 46%),
		radial-gradient(circle at 88% 10%, rgba(255, 147, 74, 0.1), transparent 42%),
		linear-gradient(180deg, #fbfdff 0%, #f1f7fc 100%);
	box-shadow: 0 10px 22px rgba(10, 29, 50, 0.06);
	color: var(--ut-muted);
	font-size: 0.9rem;
}

body.single-product.woocommerce .woocommerce-breadcrumb a {
	font-weight: 700;
}

body.single-product.woocommerce .woocommerce-notices-wrapper :is(.woocommerce-message, .woocommerce-info, .woocommerce-error) {
	border: 1px solid var(--ut-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 22px rgba(10, 29, 50, 0.06);
	color: #253a53;
}

body.single-product.woocommerce .woocommerce-notices-wrapper .woocommerce-message::before,
body.single-product.woocommerce .woocommerce-notices-wrapper .woocommerce-info::before,
body.single-product.woocommerce .woocommerce-notices-wrapper .woocommerce-error::before {
	color: var(--ut-primary);
}

body.single-product.woocommerce div.product {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(18px, 2vw, 24px);
	align-items: start;
	margin: 0;
}

body.single-product.woocommerce div.product::before,
body.single-product.woocommerce div.product::after {
	content: none !important;
	display: none !important;
}

body.single-product.woocommerce div.product > :is(.woocommerce-tabs, .wc-tabs-wrapper, .related.products, .upsells.products) {
	grid-column: 1 / -1;
}

body.single-product.woocommerce div.product > span.onsale {
	top: 18px;
	left: 18px;
	right: auto !important;
	z-index: 4;
}

body.single-product.woocommerce div.product :is(div.images, div.summary) {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

body.single-product.woocommerce div.product div.images {
	position: relative;
	border: 1px solid var(--ut-border);
	border-radius: 22px;
	padding: clamp(14px, 1.8vw, 20px);
	background:
		radial-gradient(circle at 12% 10%, rgba(15, 121, 182, 0.11), transparent 48%),
		radial-gradient(circle at 88% 14%, rgba(255, 147, 74, 0.12), transparent 50%),
		linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
	box-shadow: var(--ut-shadow);
}

body.single-product.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	margin: 0;
}

body.single-product.woocommerce div.product div.images .woocommerce-product-gallery__image a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(280px, 36vw, 460px);
	padding: clamp(12px, 1.4vw, 18px);
	border: 1px solid rgba(15, 121, 182, 0.1);
	border-radius: 16px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.single-product.woocommerce div.product div.images img {
	width: 100%;
	height: auto;
	max-height: clamp(240px, 34vw, 420px);
	object-fit: contain;
	object-position: center;
}

body.single-product.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
	gap: 10px;
	margin-top: 12px !important;
}

body.single-product.woocommerce div.product div.images .flex-control-thumbs li {
	float: none;
	width: auto;
	margin: 0;
}

body.single-product.woocommerce div.product div.images .flex-control-thumbs img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	padding: 6px;
	border: 1px solid var(--ut-border);
	border-radius: 12px;
	background: #fff;
	opacity: 0.78;
	transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.single-product.woocommerce div.product div.images .flex-control-thumbs li:hover img,
body.single-product.woocommerce div.product div.images .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: #7fb4d4;
	box-shadow: 0 0 0 3px rgba(15, 121, 182, 0.12);
}

body.single-product.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	top: 12px;
	right: 12px;
	border-radius: 999px;
	border: 1px solid var(--ut-border);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 18px rgba(10, 29, 50, 0.12);
}

body.single-product.woocommerce div.product div.summary {
	border: 1px solid var(--ut-border);
	border-radius: 22px;
	padding: clamp(18px, 2vw, 24px);
	background:
		radial-gradient(circle at 90% 6%, rgba(255, 147, 74, 0.09), transparent 42%),
		linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
	box-shadow: var(--ut-shadow);
}

body.single-product.woocommerce div.product div.summary > :first-child {
	margin-top: 0;
}

body.single-product.woocommerce div.product .product_title {
	margin: 0 0 12px;
	font-size: clamp(1.55rem, 2.4vw, 2.15rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

body.single-product.woocommerce div.product .woocommerce-product-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	color: var(--ut-muted);
	font-size: 0.9rem;
}

body.single-product.woocommerce div.product .star-rating {
	color: var(--ut-accent);
}

body.single-product.woocommerce div.product :is(p.price, span.price) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--ut-primary-dark);
	font-weight: 800;
	font-size: clamp(1.25rem, 2vw, 1.8rem);
}

body.single-product.woocommerce div.product :is(p.price, span.price):empty {
	display: none;
	margin: 0;
}

body.single-product.woocommerce div.product :is(p.price, span.price) del {
	opacity: 0.5;
	font-size: 0.7em;
}

body.single-product.woocommerce div.product :is(p.price, span.price) ins {
	text-decoration: none;
	background: rgba(15, 121, 182, 0.08);
	border: 1px solid rgba(15, 121, 182, 0.1);
	border-radius: 10px;
	padding: 2px 8px;
}

body.single-product.woocommerce div.product .woocommerce-product-details__short-description {
	margin: 0 0 16px;
	padding: 14px 16px;
	border: 1px solid rgba(15, 121, 182, 0.1);
	border-radius: 14px;
	background: linear-gradient(180deg, #fbfdff 0%, #f2f8fd 100%);
	color: #2b3f59;
	line-height: 1.65;
}

body.single-product.woocommerce div.product .stock {
	display: inline-flex;
	align-items: center;
	margin: 0 0 14px;
	padding: 7px 11px;
	border-radius: 999px;
	border: 1px solid #bfe3cb;
	background: #eaf8ef;
	color: #236a42;
	font-weight: 700;
	font-size: 0.84rem;
	line-height: 1.2;
}

body.single-product.woocommerce div.product .stock.out-of-stock {
	border-color: #efc3bf;
	background: #fff1f0;
	color: #a13832;
}

body.single-product.woocommerce div.product form.cart:not(.variations_form) {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	margin: 0 0 14px;
	padding: 14px;
	border: 1px solid var(--ut-border);
	border-radius: 16px;
	background: #f7fbff;
}

body.single-product.woocommerce div.product form.cart:not(.variations_form)::before,
body.single-product.woocommerce div.product form.cart:not(.variations_form)::after {
	content: none !important;
	display: none !important;
}

body.single-product.woocommerce div.product form.variations_form.cart {
	margin: 0 0 14px;
	padding: 14px;
	border: 1px solid var(--ut-border);
	border-radius: 16px;
	background: #f7fbff;
}

body.single-product.woocommerce div.product form.variations_form table.variations {
	margin: 0 0 12px;
	border: 0;
}

body.single-product.woocommerce div.product form.variations_form table.variations :is(th, td) {
	padding: 6px 0;
	vertical-align: middle;
}

body.single-product.woocommerce div.product form.variations_form .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
}

body.single-product.woocommerce div.product form.variations_form .woocommerce-variation-add-to-cart::before,
body.single-product.woocommerce div.product form.variations_form .woocommerce-variation-add-to-cart::after {
	content: none !important;
	display: none !important;
}

body.single-product.woocommerce div.product form.cart .quantity {
	float: none;
	margin: 0;
}

body.single-product.woocommerce div.product form.cart .qty {
	min-height: 46px;
	min-width: 84px;
	padding-inline: 10px;
	border: 1px solid var(--ut-border);
	border-radius: 12px;
	background: #fff;
	color: var(--ut-text);
	text-align: center;
	font-weight: 700;
}

body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 16px;
	border-radius: 12px;
	border: 0;
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	color: #fff;
	box-shadow: 0 12px 24px rgba(11, 46, 78, 0.16);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.single-product.woocommerce div.product form.cart:not(.variations_form) .button.single_add_to_cart_button {
	flex: 1 1 220px;
}

body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button:focus {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(11, 46, 78, 0.22);
	filter: saturate(1.04);
}

body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button.disabled,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button:disabled,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button:disabled:hover {
	background: linear-gradient(135deg, #8db5cf 0%, #7aa7c2 100%);
	box-shadow: none;
	transform: none;
	filter: none;
}

body.single-product.woocommerce div.product .product_meta {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--ut-border);
	display: grid;
	gap: 8px;
	color: var(--ut-muted);
	font-size: 0.9rem;
}

body.single-product.woocommerce div.product .product_meta > span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

body.single-product.woocommerce div.product .product_meta a {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid #d4e5f2;
	background: #edf5fc;
	color: var(--ut-primary-dark);
	font-weight: 600;
	text-decoration: none;
}

body.single-product.woocommerce div.product .product_meta a:hover,
body.single-product.woocommerce div.product .product_meta a:focus {
	border-color: #b9d6ea;
	background: #e4f1fb;
	color: var(--ut-primary);
}

body.single-product.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) {
	margin-top: 2px;
}

body.single-product.woocommerce div.product :is(.related.products, .upsells.products) {
	margin-top: 2px;
	padding: clamp(16px, 2vw, 22px);
	border: 1px solid var(--ut-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(10, 29, 50, 0.08);
}

body.single-product.woocommerce div.product :is(.related.products, .upsells.products) > h2 {
	margin: 0 0 16px;
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	line-height: 1.15;
}

body.single-product.woocommerce table.shop_attributes {
	border: 0;
	margin: 0;
}

body.single-product.woocommerce table.shop_attributes th,
body.single-product.woocommerce table.shop_attributes td {
	padding: 10px 12px;
	border-bottom: 1px solid #edf3f8;
}

body.single-product.woocommerce table.shop_attributes tr:last-child th,
body.single-product.woocommerce table.shop_attributes tr:last-child td {
	border-bottom: 0;
}

@media screen and (max-width: 1100px) {
	body.single-product.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	body.single-product.woocommerce div.product > span.onsale {
		top: 14px;
		left: 14px;
	}
}

@media screen and (max-width: 640px) {
	body.single-product.woocommerce .woocommerce-breadcrumb {
		padding: 9px 12px;
		font-size: 0.86rem;
	}

	body.single-product.woocommerce div.product :is(div.images, div.summary) {
		border-radius: 18px;
		padding: 14px;
	}

	body.single-product.woocommerce div.product div.images .woocommerce-product-gallery__image a {
		min-height: 220px;
		padding: 12px;
	}

	body.single-product.woocommerce div.product form.cart:not(.variations_form),
	body.single-product.woocommerce div.product form.variations_form.cart {
		padding: 12px;
		border-radius: 14px;
	}

	body.single-product.woocommerce div.product form.cart:not(.variations_form) {
		display: grid;
		grid-template-columns: 1fr;
	}

	body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button {
		width: 100%;
		flex-basis: 100%;
	}

	body.single-product.woocommerce div.product :is(.related.products, .upsells.products) {
		padding: 14px;
		border-radius: 16px;
	}
}

/* WooCommerce single product (tabs-only polish) */
body.single-product.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) {
	border-color: rgba(15, 121, 182, 0.14);
	box-shadow: 0 12px 26px rgba(10, 29, 50, 0.06);
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 12px 12px 0;
	background:
		radial-gradient(circle at 8% 0%, rgba(15, 121, 182, 0.1), transparent 50%),
		linear-gradient(180deg, #f6fbff 0%, #edf5fc 100%);
	border-bottom-color: rgba(15, 121, 182, 0.12);
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 121, 182, 0.1);
	border-bottom: 0;
	box-shadow: 0 6px 14px rgba(10, 29, 50, 0.04);
	color: #36506d;
	transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:hover,
body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:focus {
	background: linear-gradient(180deg, #f8fcff 0%, #eaf4fc 100%);
	border-color: rgba(15, 121, 182, 0.32);
	color: #123a5b;
	box-shadow: 0 8px 16px rgba(8, 49, 77, 0.07);
	transform: translateY(-1px);
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a[aria-selected="true"] {
	background: linear-gradient(135deg, var(--ut-primary) 0%, var(--ut-primary-dark) 100%);
	border-color: transparent;
	color: #fff;
	box-shadow:
		0 10px 20px rgba(8, 49, 77, 0.14),
		inset 0 -2px 0 rgba(255, 255, 255, 0.24);
	transform: translateY(-1px);
}

body.single-product.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) .panel {
	background:
		radial-gradient(circle at 98% 0%, rgba(15, 121, 182, 0.05), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description > h2 {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	padding: 0 0 8px;
	border: 0;
	border-bottom: 1px solid rgba(15, 121, 182, 0.14);
	background: transparent;
	font-size: 1rem;
	line-height: 1.25;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description h2:not(:first-child) {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin: 14px 0 8px;
	padding: 7px 10px;
	border-left: 2px solid var(--ut-primary);
	border-radius: 8px;
	background: rgba(15, 121, 182, 0.035);
	font-size: 0.96rem;
	line-height: 1.3;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description h2 i {
	flex: 0 0 auto;
	color: var(--ut-primary);
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description ul {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	display: grid;
	gap: 3px;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description ul li {
	position: relative;
	margin: 0;
	padding: 2px 8px 2px 24px;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid #e8eff6;
	background: transparent;
	line-height: 1.4;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description ul li::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 50%;
	width: 5px;
	height: 5px;
	transform: translateY(-50%);
	border-radius: 999px;
	background: var(--ut-primary);
	box-shadow: 0 0 0 2px rgba(15, 121, 182, 0.06);
}

@media screen and (max-width: 640px) {
	body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
		padding: 10px 10px 0;
	}

	body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		box-shadow: none;
	}
}

/* WooCommerce single product (layout + readability tune) */
body.single-product.woocommerce :is(#primary, .ut-layout-main).woocommerce-area {
	float: none;
	width: min(100%, 1040px);
	margin-inline: auto;
}

body.single-product.woocommerce div.product {
	gap: clamp(20px, 2.4vw, 30px);
}

body.single-product.woocommerce div.product div.summary {
	padding: clamp(20px, 2.1vw, 26px);
}

body.single-product.woocommerce div.product .product_title {
	margin-bottom: 14px;
	line-height: 1.12;
}

body.single-product.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 0.97rem;
	line-height: 1.7;
}

body.single-product.woocommerce div.product form.cart:not(.variations_form),
body.single-product.woocommerce div.product form.variations_form.cart {
	padding: 16px;
}

body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button {
	transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

body.single-product.woocommerce div.product .product_meta {
	gap: 10px;
}

body.single-product.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) {
	margin-top: 20px;
}

body.single-product.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) .panel {
	padding: 22px 24px 24px;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description {
	font-size: 0.97rem;
	line-height: 1.65;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description h2:not(:first-child) {
	margin-top: 16px;
}

body.single-product.woocommerce div.product .woocommerce-Tabs-panel--description ul li {
	padding: 2px 8px 2px 24px;
}

@media screen and (max-width: 768px) {
	body.single-product.woocommerce :is(#primary, .ut-layout-main).woocommerce-area {
		width: 100%;
	}

	body.single-product.woocommerce div.product :is(.woocommerce-tabs, .wc-tabs-wrapper) .panel {
		padding: 16px 14px 18px;
	}

	body.single-product.woocommerce div.product form.cart:not(.variations_form),
	body.single-product.woocommerce div.product form.variations_form.cart {
		padding: 12px;
	}
}
