/**
 * UK Flooring custom homepage styles.
 * Design tokens from Figma node 21:3400
 */

:root {
	--uk-bg: #f8f6f2;
	--uk-bg-case: #ede8dc;
	--uk-bg-case-card: #e8e3d8;
	--uk-primary: #b68a5a;
	--uk-primary-dark: #3d2b1a;
	--uk-accent: #d4aa7d;
	--uk-green: #598056;
	--uk-price: #c23a41;
	--uk-text: #2f2f2f;
	--uk-text-muted: rgba(47, 47, 47, 0.45);
	--uk-text-light: #fdf9f4;
	--uk-footer-bg: #1e1c1a;
	--uk-container: 1360px;
	--uk-container-wide: 1690px;
	--uk-font: "Alibaba PuHuiTi", "Alibaba PuHuiTi 2.0", "Alibaba Sans", "Helvetica Neue", Arial, sans-serif;
	--uk-eyebrow-offset: 0px;
}

/* Hide Woodmart default chrome on custom homepage */
body.uk-home-page .wd-page-wrapper > header,
body.uk-home-page .whb-header,
body.uk-home-page .whb-main-header,
body.uk-home-page .whb-clone,
body.uk-home-page .wd-header-banner,
body.uk-home-page .wd-hb-wrapp,
body.uk-home-page .wd-page-title,
body.uk-product-page .wd-page-title,
body.uk-home-page .page-title,
body.uk-product-page .page-title {
	display: none !important;
}

body.uk-home-page {
	--wd-header-h: 0px !important;
	--wd-header-general-h: 0px !important;
	--wd-header-general-sm-h: 0px !important;
	--wd-header-bottom-h: 0px !important;
	--wd-header-bottom-sm-h: 0px !important;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.uk-home-page .main-page-wrapper,
body.uk-product-page .main-page-wrapper {
	padding: 0;
	margin: 0;
}

body.uk-home-page.whb-sticky-prepared {
	padding-top: 0 !important;
}

body.uk-home-page .whb-sticky-prepared {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

body.uk-home-page #main-content,
body.uk-product-page #main-content,
body.uk-home-page .wd-content-layout,
body.uk-product-page .wd-content-layout {
	display: block !important;
	width: 100%;
	max-width: none;
	padding: 0 !important;
	margin: 0 !important;
}

body.uk-home-page .website-wrapper,
body.uk-home-page .wd-page-wrapper,
body.uk-product-page .website-wrapper,
body.uk-product-page .wd-page-wrapper {
	background: var(--uk-bg);
}

body.uk-home-page .wd-content-area,
body.uk-home-page .site-content,
body.uk-product-page .wd-content-area,
body.uk-product-page .site-content {
	padding: 0;
	margin: 0;
	max-width: none;
	width: 100%;
}

.uk-home {
	font-family: var(--uk-font);
	color: var(--uk-text);
	background: var(--uk-bg);
	overflow-x: hidden;
}

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

.uk-home-container {
	width: min(100% - 48px, var(--uk-container));
	margin-inline: auto;
}

.uk-home__main {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Buttons */
.uk-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 300px;
	min-height: 46px;
	padding: 13px 32px;
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 700;
	line-height: 19.5px;
	letter-spacing: 0.173em;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.uk-home-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.uk-home-btn--primary {
	background: var(--uk-primary);
	color: var(--uk-text-light);
}

.uk-home-btn--outline {
	background: transparent;
	border-color: rgba(253, 249, 244, 0.45);
	color: var(--uk-text-light);
}

.uk-home-btn--white {
	background: #fff;
	color: var(--uk-primary);
}

.uk-home-btn--outline-white {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

.uk-home-btn--small {
	padding: 8px 18px;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.uk-home-btn--sample.uk-home-btn--sample {
	min-width: 210px;
	min-height: 41px;
	padding: 12px 18px;
	appearance: none;
	background: var(--uk-green);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 16.5px;
	letter-spacing: 0.069em;
	cursor: pointer;
}

.uk-home-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--uk-primary);
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
}

/* Header */
.uk-home-header {
	position: relative;
	top: 0;
	z-index: 100;
	background: var(--uk-bg);
}

.uk-home-header__topbar {
	background: var(--uk-primary);
	color: #fff;
	border-bottom: 1.2px solid var(--uk-primary);
}

.uk-home-header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	padding-inline: 64px;
	font-size: 13px;
}

.uk-home-header__promo {
	margin: 0;
	font-size: 15px;
	line-height: 19.5px;
}

.uk-home-header__top-links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.uk-home-header__top-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	text-decoration: none;
}

.uk-home-header__main {
	background: var(--uk-bg);
}

.uk-home-header__brand-row {
	display: grid;
	grid-template-columns: 194px minmax(280px, 585px) auto;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	min-height: 104px;
	padding-inline: 46px 70px;
}

.uk-home-header__logo img {
	display: block;
	width: 194px;
	height: auto;
	max-height: 75px;
	mix-blend-mode: multiply;
	object-fit: contain;
}

.uk-home-header__nav-row {
	display: flex;
	justify-content: center;
	min-height: 77px;
	border-top: 1px solid rgba(47, 47, 47, 0.1);
	background: var(--uk-bg);
}

.uk-home-header__nav {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 24px;
}

.uk-home-header__nav-item {
	display: flex;
	align-items: stretch;
}

.uk-home-header__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 28px 16px;
	color: var(--uk-text);
	font-size: 18px;
	line-height: 20.25px;
	text-transform: uppercase;
	text-decoration: none;
}

.uk-home-mega {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 80;
	width: 100vw;
	height: 457px;
	background: var(--uk-bg);
	border-top: 0.5px solid rgba(182, 138, 90, 0.5);
	border-bottom: 0.5px solid rgba(182, 138, 90, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
	pointer-events: none;
}

.uk-home-header__nav-item--products:hover .uk-home-mega,
.uk-home-header__nav-item--products:focus-within .uk-home-mega {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.whb-header {
	position: relative;
}

.whb-header .wd-header-nav,
.whb-header .wd-nav-header {
	position: static;
}

.whb-header .uk-global-shop-mega-item {
	position: static;
}

.whb-header .uk-global-shop-mega-item > .wd-dropdown,
.whb-header .uk-global-shop-mega-item > .wd-dropdown-menu,
.whb-header .uk-global-shop-mega-item > .sub-menu-dropdown,
.whb-header .uk-global-shop-mega-item > .sub-menu {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.whb-header .uk-global-shop-mega-item > a::after {
	display: none !important;
	content: none !important;
}

.whb-header .uk-global-shop-mega__chevron {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-left: 6px;
	flex: 0 0 13px;
}

.whb-header .uk-global-shop-mega-item:hover > .uk-home-mega,
.whb-header .uk-global-shop-mega-item:focus-within > .uk-home-mega {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.uk-home-mega__inner {
	display: grid;
	grid-template-columns: minmax(0, 1044px) 340px;
	gap: 196px;
	width: min(100% - 340px, 1580px);
	margin-inline: auto;
	padding: 23px 0 29px;
}

.uk-home-mega__columns {
	display: grid;
	grid-template-columns: repeat(7, max-content);
	column-gap: 79px;
	row-gap: 24px;
	align-items: start;
}

.uk-home-mega__title {
	margin: 0 0 17px;
	color: var(--uk-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 22.75px;
	white-space: nowrap;
}

.uk-home-mega__column--price {
	min-width: 150px;
}

.uk-home-mega__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uk-home-mega__list li {
	margin: 0;
}

.uk-home-mega__link {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--uk-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 22.75px;
	text-decoration: none;
}

.uk-home-mega__link:hover {
	color: var(--uk-primary);
}

.uk-home-mega__column--price .uk-home-mega__link {
	white-space: nowrap;
}

.uk-home-mega__link--swatch {
	align-items: center;
}

.uk-home-mega__swatch {
	display: block;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	border-radius: 50%;
	background: var(--swatch-color);
}

.uk-home-mega__promo {
	display: block;
	width: 340px;
	height: 405px;
	object-fit: cover;
}

.uk-home-header__actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.uk-home-header__search {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 585px;
	max-width: 100%;
	height: 55px;
	padding: 18px 9px;
	background: rgba(255, 255, 255, 0.7);
	border: 0;
	color: rgba(47, 47, 47, 0.35);
}

.uk-home-header__search input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	outline: none;
	font: inherit;
	font-size: 14px;
	line-height: 19.5px;
	color: var(--uk-text);
}

.uk-home-header__search input::placeholder {
	color: rgba(47, 47, 47, 0.35);
}

.uk-home-header__cart,
.uk-home-header__account {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 40px;
	padding: 0;
	color: var(--uk-text);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
}

.uk-home-header__cart {
	gap: 12px;
}

.uk-home-header__cart img {
	display: block;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	object-fit: contain;
}

.uk-home-header__cart .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.uk-home-header__cart .woocommerce-Price-amount bdi,
.uk-home-header__cart .woocommerce-Price-currencySymbol {
	font-weight: inherit;
}

.uk-home-header__wishlist {
	display: none !important;
}

/* Legacy selectors kept harmless for any cached markup. */
.uk-home-header__main-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 92px;
}

.uk-home-header__main-inner .uk-home-header__logo img {
	display: block;
	height: 56px;
	width: auto;
}

.uk-home-header__main-inner .uk-home-header__nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.uk-home-header__main-inner .uk-home-header__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	color: var(--uk-text);
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
}

.uk-home-header__main-inner .uk-home-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.uk-home-header__main-inner .uk-home-header__search {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 300px;
	max-width: 100%;
	padding: 9px 16px;
	background: rgba(255, 255, 255, 0.6);
	border: 1.2px solid rgba(47, 47, 47, 0.15);
}

.uk-home-header__main-inner .uk-home-header__search input {
	flex: 1;
	border: 0;
	background: transparent;
	outline: none;
	font: inherit;
	font-size: 14px;
}

.uk-home-header__main-inner .uk-home-header__cart,
.uk-home-header__main-inner .uk-home-header__account {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--uk-text);
	text-decoration: none;
	font-size: 14px;
	white-space: nowrap;
}

.uk-home-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.uk-home-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--uk-text);
}

/* Hero */
.uk-home-hero {
	position: relative;
	min-height: 622px;
	display: flex;
	align-items: center;
}

.uk-home-hero__media {
	position: absolute;
	inset: 0;
}

.uk-home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uk-home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		118.56deg,
		rgba(45, 28, 14, 0.8) 6.17%,
		rgba(45, 28, 14, 0.54) 41.24%,
		rgba(45, 28, 14, 0.14) 67.53%,
		rgba(45, 28, 14, 0) 93.83%
	);
}

.uk-home-hero__fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 200px;
	background: linear-gradient(to top, rgba(45, 28, 14, 0.36), transparent);
}

.uk-home-hero__content {
	position: relative;
	z-index: 1;
	width: min(100% - 48px, 1400px);
	padding-block: 80px;
	padding-inline: 64px;
}

.uk-home-hero__copy {
	max-width: 580px;
}

.uk-home-hero__eyebrow {
	margin: 0;
	color: var(--uk-accent);
	font-size: 13px;
	line-height: 19.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.uk-home-hero__title {
	margin: 20px 0 0;
	color: var(--uk-text-light);
	font-size: clamp(42px, 5.6vw, 78px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.uk-home-hero__title span {
	display: block;
}

.uk-home-hero__divider {
	width: 48px;
	height: 3px;
	margin: 24px 0 0;
	background: var(--uk-primary);
}

.uk-home-hero__desc {
	margin: 24px 0 0;
	max-width: 440px;
	color: rgba(253, 249, 244, 0.7);
	font-size: 15px;
	line-height: 1.85;
	font-weight: 300;
}

.uk-home-hero__actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 26px;
	width: max-content;
	max-width: 100vw;
	margin-top: 36px;
}

/* Section head */
.uk-home-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 42px;
}

.uk-home-section-head__sub {
	margin: 0 0 8px;
	color: var(--uk-primary);
	font-size: 11px;
	line-height: 16.5px;
	font-weight: 300;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.uk-home-section-head__title {
	margin: 0;
	color: var(--uk-text);
	font-size: clamp(32px, 3.2vw, 40px);
	font-weight: 400;
	line-height: 46px;
	letter-spacing: 0;
}

/* Products */
.uk-home-products {
	padding: 80px 0 96px;
}

.uk-home-products__grid-container {
	width: min(100% - 48px, 1580px);
}

.uk-home-products__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	justify-content: center;
	gap: 32px;
}

.uk-home-product-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 464px;
	background: #fff;
	text-align: center;
}

.uk-home-product-card__image-wrap {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

.uk-home-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
}

.uk-home-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uk-home-product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	padding: 2px 8px;
	background: var(--uk-primary);
	color: #fff;
	font-size: 10px;
	line-height: 15px;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.uk-home-product-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding: 7px 28px 28px;
}

.uk-home-product-card__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}

.uk-home-product-card__spec {
	min-height: 15px;
	margin: 0 0 8px;
	color: rgba(47, 47, 47, 0.45);
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 0;
	text-align: center;
}

.uk-home-product-card__title a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--uk-primary-dark);
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.uk-home-product-card__price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 32px;
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 32px;
}

.uk-home-product-card__price .amount,
.uk-home-product-card__price-current {
	color: var(--uk-price);
	font-weight: 400;
}

.uk-home-product-card__price del,
.uk-home-product-card__price-old {
	margin-left: 0;
	color: rgba(47, 47, 47, 0.3);
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-decoration: line-through;
}

.uk-home-product-card__price del .amount,
.uk-home-product-card__price-old .amount {
	color: rgba(47, 47, 47, 0.3);
}

.uk-home-product-card .uk-home-btn--sample {
	width: min(210px, 100%);
	min-width: 0;
	min-height: 41px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 400;
	line-height: 16.5px;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

/* Case studies */
.uk-home-cases {
	padding: 53px 0;
	background: var(--uk-bg-case);
}

.uk-home-cases__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 40px;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.uk-home-cases__label,
.uk-home-brands__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--uk-primary);
	font-size: 10px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
}

.uk-home-cases__line,
.uk-home-brands__line {
	width: 24px;
	height: 1px;
	background: var(--uk-primary);
}

.uk-home-cases__title {
	margin: 0;
	color: var(--uk-text);
	font-size: clamp(36px, 3.2vw, 46px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
}

.uk-home-cases__intro {
	margin: 12px 0 0;
	color: rgba(47, 47, 47, 0.45);
	font-size: 16px;
	line-height: 1.5;
}

.uk-home-cases__view {
	color: var(--uk-primary);
	font-size: 13px;
	letter-spacing: 0.24em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.uk-home-cases__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.uk-home-case-card {
	background: var(--uk-bg-case-card);
	border: 1px solid rgba(47, 47, 47, 0.08);
	overflow: hidden;
}

.uk-home-case-card__media {
	position: relative;
	height: 424px;
	overflow: hidden;
	touch-action: none;
}

.uk-home-case-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uk-home-case-card__after {
	position: absolute;
	inset: 0;
	overflow: hidden;
	clip-path: inset(0 0 0 var(--case-position));
}

.uk-home-case-card__tag {
	position: absolute;
	bottom: 32px;
	z-index: 2;
	padding: 8px 14px;
	background: rgba(30, 28, 26, 0.82);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 1;
	text-transform: uppercase;
}

.uk-home-case-card__tag--before {
	left: 22px;
}

.uk-home-case-card__tag--after {
	right: 28px;
	background: var(--uk-primary);
}

.uk-home-case-card__range {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.uk-home-case-card__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--case-position);
	z-index: 3;
	width: 2px;
	background: rgba(255, 255, 255, 0.9);
	transform: translateX(-50%);
	pointer-events: none;
}

.uk-home-case-card__handle span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--uk-primary);
	font-size: 16px;
	font-weight: 700;
	transform: translate(-50%, -50%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.uk-home-case-card__body {
	min-height: 125px;
	padding: 30px 42px 32px;
}

.uk-home-case-card__body p {
	margin: 0;
	color: #7a7060;
	font-size: 18px;
	line-height: 1.55;
}

.uk-home-case-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.uk-home-case-card__link:hover p,
.uk-home-case-card__link:focus-visible p {
	color: var(--uk-primary-dark);
}

/* Brands */
.uk-home-brands {
	padding: 80px 0 86px;
	background: var(--uk-bg);
}

.uk-home-brands__head {
	width: min(100%, 1358px);
	margin: 0 auto 82px;
	text-align: left;
}

.uk-home-brands__label {
	justify-content: flex-start;
}

.uk-home-brands__title {
	margin: 0;
	color: var(--uk-text);
	font-size: 42px;
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: 0;
}

.uk-home-brands__logos {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	align-items: center;
	width: min(100%, 1358px);
	margin: 0 auto 31px;
}

.uk-home-brands__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 84px;
	padding: 8px 24px;
	background: transparent;
	border-right: 1px solid rgba(47, 47, 47, 0.08);
	border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.uk-home-brands__logo:last-child {
	border-right: 0;
}

.uk-home-brands__logo img {
	max-width: 100%;
	max-height: 64px;
	object-fit: contain;
	opacity: 1;
}

.uk-home-brands__stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: min(100%, 907px);
	margin: 0 auto;
}

.uk-home-brands__stat {
	display: flex;
	align-items: baseline;
	justify-content: center;
	min-height: 33px;
	padding: 0 32px;
	text-align: center;
}

.uk-home-brands__stat + .uk-home-brands__stat {
	border-left: 1px solid rgba(47, 47, 47, 0.12);
}

.uk-home-brands__stat strong {
	color: var(--uk-primary);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
}

.uk-home-brands__stat span {
	color: rgba(47, 47, 47, 0.4);
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* CTA */
.uk-home-cta {
	/* Full-bleed brown band — the stats row sits inside it, per the design. */
	padding: 56px 0 60px;
	background: var(--uk-primary);
}

.uk-home-cta__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.uk-home-cta__eyebrow {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.uk-home-cta__title {
	margin: 0;
	color: #fff;
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 400;
	line-height: 1.15;
}

.uk-home-cta__title span {
	display: block;
}

.uk-home-cta__desc {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 15px;
	line-height: 1.8;
}

.uk-home-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

/* Features */
.uk-home-features {
	padding: 0;
	background: var(--uk-bg);
	border-top: 2px solid #3d2b1a;
	border-bottom: 1px solid rgba(47, 47, 47, 0.06);
}

.uk-home-features .uk-home-container {
	width: min(100%, 1436px);
}

.uk-home-features__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(100%, 1309px);
	min-height: 148px;
	margin-inline: auto;
}

.uk-home-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	min-height: 148px;
	padding: 28px 33px 28px 32px;
	border-right: 1px solid rgba(47, 47, 47, 0.06);
}

.uk-home-feature:first-child {
	padding-left: 0;
}

.uk-home-feature:last-child {
	border-right: 0;
	padding-right: 0;
}

.uk-home-feature__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border: 1px solid rgba(182, 138, 90, 0.32);
	color: rgba(182, 138, 90, 0.86);
}

.uk-home-feature__icon svg {
	display: block;
	width: 16px;
	height: 16px;
	stroke-width: 1.2;
}

.uk-home-feature h3 {
	margin: 0 0 4px;
	color: #2f2f2f;
	font-size: 14px;
	line-height: 21px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.uk-home-feature p {
	margin: 0;
	color: rgba(47, 47, 47, 0.38);
	font-size: 13px;
	line-height: 22.1px;
}

/* Footer */
.uk-home-footer {
	padding: 52px 0 24px;
	background: var(--uk-bg);
	color: var(--uk-text);
}

.uk-home-footer .uk-home-container {
	width: min(100% - 48px, 1272px);
}

.uk-home-footer__main {
	position: relative;
	display: grid;
	grid-template-columns: minmax(390px, 470px) minmax(0, 1fr);
	gap: 164px;
	min-height: 319px;
	padding: 68px 0 50px;
	border-top: 2px solid var(--uk-primary);
	border-bottom: 2px solid var(--uk-primary);
}

.uk-home-footer__main::after {
	content: "";
	position: absolute;
	top: 68px;
	bottom: 50px;
	left: 537px;
	width: 2px;
	background: var(--uk-primary);
}

.uk-home-footer__brand {
	max-width: 470px;
}

.uk-home-footer__logo img {
	display: block;
	width: 351px;
	height: auto;
	max-width: 100%;
}

.uk-home-footer__newsletter-title {
	max-width: 470px;
	margin: 42px 0 0;
	color: var(--uk-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 21px;
}

.uk-home-footer__privacy {
	max-width: 470px;
	margin: 24px 0 0;
	color: #a1a1a1;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}

.uk-home-footer__privacy a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.uk-home-footer__social {
	display: flex;
	align-items: center;
	gap: 14px;
	width: auto;
	max-width: 100%;
	margin-top: 75px;
	padding: 0 25px;
}

.uk-home-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 47px;
	height: 47px;
	border: 2px solid #6d7b2b;
	border-radius: 50%;
	color: #6d7b2b;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	overflow: hidden;
	text-decoration: none;
	text-transform: lowercase;
	white-space: nowrap;
}

.uk-home-footer__links {
	display: grid;
	grid-template-columns: minmax(120px, 146px) minmax(150px, 186px) minmax(220px, 288px);
	gap: 90px;
	align-items: start;
	padding-top: 3px;
}

.uk-home-footer__col h4 {
	margin: 0 0 24px;
	color: var(--uk-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 23px;
	letter-spacing: 0.16em;
}

.uk-home-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.uk-home-footer__col li + li {
	margin-top: 14px;
}

.uk-home-footer__col a {
	color: var(--uk-text);
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	text-decoration: none;
}

.uk-home-footer__col--contacts a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.uk-home-footer__bottom {
	padding-top: 24px;
}

.uk-home-footer__bottom p {
	margin: 0;
	color: var(--uk-text);
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

.uk-home-footer__bottom a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Shared eyebrow label */
.uk-home-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	line-height: 16.5px;
	letter-spacing: 0.318em;
	text-transform: uppercase;
	color: var(--uk-primary);
}

.uk-home-eyebrow__line {
	display: block;
	width: 32px;
	height: 1px;
	background: var(--uk-primary);
}

/* Shop by Category */
.uk-home-categories {
	padding: 67px 0 80px;
	background: var(--uk-bg);
}

.uk-home-container--wide {
	width: min(100% - 48px, var(--uk-container-wide));
}

.uk-home-categories .uk-home-section-head {
	margin-bottom: 42px;
}

.uk-home-categories .uk-home-section-head__title {
	margin-left: 0;
}

.uk-home-categories__grid-container {
	width: min(100% - 48px, 1580px);
}

.uk-home-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.uk-home-category {
	position: relative;
	display: block;
	aspect-ratio: 518 / 416;
	overflow: hidden;
	background: #160e08;
	text-decoration: none;
}

.uk-home-category__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.65;
	transition: transform 0.5s ease, opacity 0.3s ease;
}

.uk-home-category:hover .uk-home-category__image {
	opacity: 0.78;
	transform: scale(1.04);
}

.uk-home-category__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(15, 8, 3, 0.92) 0%,
		rgba(15, 8, 3, 0.28) 50%,
		rgba(3, 2, 1, 0.2) 70%,
		rgba(0, 0, 0, 0.08) 100%
	);
}

.uk-home-category__index {
	position: absolute;
	top: 16px;
	left: 20px;
	font-size: 88px;
	line-height: 88px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.08);
}

.uk-home-category__badge {
	position: absolute;
	top: 20px;
	left: 57%;
	padding: 5px 10px;
	background: var(--uk-primary);
	font-size: 9px;
	line-height: 13.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}

.uk-home-category__body {
	position: absolute;
	top: 33.2%;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 28px;
}

.uk-home-category__rule {
	display: block;
	width: 32px;
	height: 1px;
	margin-bottom: 16px;
	background: var(--uk-primary);
}

.uk-home-category__title {
	font-family: var(--uk-font);
	font-size: 24px;
	font-weight: 400;
	line-height: 27.5px;
	letter-spacing: 0.3px;
	color: #fff;
}

.uk-home-category__bar {
	position: absolute;
	top: 81.25%;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--uk-primary);
}

/* CTA perks + stats */
.uk-home-cta__perks {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.75);
}

.uk-home-cta__perks li::before {
	content: "·";
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.5);
}

.uk-home-cta__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	text-align: center;
}

.uk-home-cta__stat strong {
	display: block;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
}

.uk-home-cta__stat span {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

/* Why Choose */
.uk-home-why {
	padding-block: 80px;
	background: var(--uk-bg);
}

.uk-home-why__inner {
	display: grid;
	grid-template-columns: minmax(0, 728fr) minmax(0, 480fr);
	gap: 64px;
	align-items: center;
}

.uk-home-why__title {
	display: flex;
	flex-direction: column;
	margin: 16px 0 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 60px;
	letter-spacing: -1.2px;
	color: var(--uk-primary-dark);
}

.uk-home-why__desc {
	max-width: 512px;
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 26px;
	color: #7a7060;
}

.uk-home-why__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 40px;
	margin-top: 40px;
}

.uk-home-why-point {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.uk-home-why-point__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	margin-top: 2px;
	border: 1.2px solid rgba(182, 138, 90, 0.3);
	font-size: 16px;
	line-height: 24px;
}

.uk-home-why-point__text h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--uk-text);
}

.uk-home-why-point__text p {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 19.5px;
	color: rgba(47, 47, 47, 0.5);
}

.uk-home-why__media {
	position: relative;
	aspect-ratio: 480 / 560;
}

.uk-home-why__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uk-home-why__frame {
	position: absolute;
	top: -16px;
	left: 16px;
	width: 100%;
	height: 100%;
	border: 1.2px solid rgba(182, 138, 90, 0.3);
}

.uk-home-why__badge {
	position: absolute;
	z-index: 2;
	left: -32px;
	bottom: 25px;
	padding: 24px 24px 24px 25px;
	background: #fff;
	border-left: 1.2px solid var(--uk-primary);
	box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
}

.uk-home-why__badge strong {
	display: block;
	font-size: 36px;
	font-weight: 400;
	line-height: 40px;
	color: var(--uk-primary);
}

.uk-home-why__badge span {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--uk-text);
}

/* Blog */
.uk-home-blog {
	padding-block: 80px;
	background: var(--uk-bg-case);
}

.uk-home-blog .uk-home-section-head__title {
	margin-left: 0;
}

.uk-home-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.uk-home-post {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1.2px solid rgba(47, 47, 47, 0.08);
}

.uk-home-post__media {
	display: block;
	height: 220px;
	overflow: hidden;
}

.uk-home-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.uk-home-post:hover .uk-home-post__media img {
	transform: scale(1.04);
}

.uk-home-post__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.uk-home-post__category {
	margin: 0 0 8px;
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--uk-primary);
}

.uk-home-post__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 400;
	line-height: 27.5px;
	color: var(--uk-primary-dark);
}

.uk-home-post__title a {
	color: inherit;
	text-decoration: none;
}

.uk-home-post__title a:hover {
	color: var(--uk-primary);
}

.uk-home-post__excerpt {
	flex: 1;
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 22.75px;
	color: rgba(47, 47, 47, 0.55);
}

.uk-home-post__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 17px;
	border-top: 1.2px solid rgba(47, 47, 47, 0.08);
	font-size: 12px;
	line-height: 16px;
	color: rgba(47, 47, 47, 0.4);
}

/* Product detail */
.uk-product-detail {
	min-height: 100vh;
	background: var(--uk-bg);
}

.uk-product-detail__main {
	width: min(100% - 48px, 1272px);
	margin-inline: auto;
	padding: 0 0 74px;
}

.uk-product-detail__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 62px;
	color: rgba(47, 47, 47, 0.38);
	font-size: 13px;
	line-height: 19.5px;
}

.uk-product-detail__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.uk-product-detail__breadcrumbs span {
	color: rgba(47, 47, 47, 0.2);
}

.uk-product-detail__breadcrumbs strong {
	color: var(--uk-text);
	font-weight: 400;
}

.uk-product-detail__hero {
	display: grid;
	grid-template-columns: 584px minmax(0, 584px);
	gap: 103px;
	align-items: start;
}

.uk-product-gallery__main {
	position: relative;
	width: 584px;
	height: 584px;
	background: #e9e4da;
	overflow: hidden;
}

.uk-product-gallery__main img,
.uk-product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uk-product-gallery__badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 8px 16px;
	background: var(--uk-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 16.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.uk-product-gallery__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 8px;
	min-height: 87px;
}

.uk-product-gallery__thumb {
	width: 87px;
	height: 87px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
}

.uk-product-gallery__thumb.is-active {
	border: 2px solid var(--uk-primary);
}

.uk-product-summary h1 {
	margin: 0;
	color: var(--uk-text);
	font-size: 38px;
	font-weight: 400;
	line-height: 47.84px;
	letter-spacing: 0;
	max-width: 584px;
}

.uk-product-summary__spec {
	margin: 12px 0 0;
	color: rgba(47, 47, 47, 0.48);
	font-size: 13px;
	line-height: 19.5px;
}

.uk-product-summary__spec span {
	color: var(--uk-primary);
}

.uk-product-summary__price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 25px;
	padding: 28px 0 33px;
	border-top: 1.2px solid rgba(47, 47, 47, 0.08);
	border-bottom: 1.2px solid rgba(47, 47, 47, 0.08);
}

.uk-product-summary__price {
	display: flex;
	align-items: baseline;
	flex-wrap: nowrap;
	gap: 8px 14px;
	min-width: 0;
	white-space: nowrap;
}

.uk-product-summary__price .amount,
.uk-product-summary__price-current {
	color: var(--uk-price);
	font-size: 42px;
	font-weight: 400;
	line-height: 42px;
	letter-spacing: 0;
	white-space: nowrap;
}

.uk-product-summary__price-old {
	color: rgba(47, 47, 47, 0.3);
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0;
	text-decoration: line-through;
	text-decoration-color: rgba(47, 47, 47, 0.24);
	white-space: nowrap;
}

.uk-product-summary__price-old .amount,
.uk-product-summary__price-old .woocommerce-Price-currencySymbol {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	text-decoration: inherit;
}

.uk-product-summary__price del,
.uk-product-summary__unit {
	color: rgba(47, 47, 47, 0.3);
	font-size: 15px;
	line-height: 15px;
	white-space: nowrap;
}

.uk-product-summary__unit sup {
	font-size: 0.62em;
	line-height: 0;
	vertical-align: super;
}

.uk-product-summary__price-row .uk-product-summary__sample,
.uk-product-summary__sample {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 267px;
	height: 47px;
	min-height: 47px;
	flex: 0 0 267px;
	padding: 0;
	appearance: none;
	background-color: var(--uk-green);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.uk-product-summary__price-row .uk-product-summary__sample:hover,
.uk-product-summary__price-row .uk-product-summary__sample:focus {
	background-color: #4a6b48;
	border: 0;
	color: #fff;
}

.uk-product-summary__sample-form,
.uk-home-product-card__sample-form {
	margin: 0;
}

.uk-product-summary__sample-form {
	display: inline-flex;
	width: 267px;
	flex: 0 0 267px;
}

.uk-home-product-card__sample-form {
	display: inline-flex;
}

.uk-product-detail .woocommerce-error,
.uk-product-detail .woocommerce-message,
.uk-product-detail .woocommerce-info {
	display: block;
	margin: 0 0 18px;
	padding: 14px 18px;
	border: 0;
	border-left: 3px solid #b81c23;
	background: #fdecea;
	color: #7a1b20;
	font-size: 14px;
	line-height: 1.6;
	list-style: none;
}

.uk-product-detail .woocommerce-message,
.uk-product-detail .woocommerce-info {
	border-left-color: var(--uk-green);
	background: #eef4ec;
	color: #35503a;
}

.uk-product-detail .woocommerce-error li,
.uk-product-detail .woocommerce-message li,
.uk-product-detail .woocommerce-info li {
	margin: 0;
}

.uk-product-calculator {
	margin-top: 0;
	padding: 28px 0 29px;
	border-bottom: 1.2px solid rgba(47, 47, 47, 0.08);
}

.uk-product-calculator__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.uk-product-calculator__head strong,
.uk-product-cart label {
	color: rgba(47, 47, 47, 0.6);
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.uk-product-calculator__head span {
	color: rgba(47, 47, 47, 0.35);
	font-size: 13px;
	line-height: 19.5px;
}

.uk-product-calculator__field {
	display: flex;
	align-items: stretch;
	margin-top: 16px;
	height: 53px;
	box-shadow: none;
}

.uk-product-calculator__field input {
	flex: 1;
	min-width: 0;
	height: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 0;
	background: #fff;
	color: var(--uk-text);
	font: inherit;
	font-size: 15px;
	font-weight: 400;
	text-align: left;
	outline: none;
	appearance: textfield;
}

.uk-product-calculator__field input::-webkit-outer-spin-button,
.uk-product-calculator__field input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.uk-product-calculator__field span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	background: #edeae4;
	color: rgba(47, 47, 47, 0.45);
	font-size: 13px;
	line-height: 19.5px;
}

.uk-product-calculator p {
	margin: 10px 0 0;
	color: rgba(47, 47, 47, 0.32);
	font-size: 13px;
	line-height: 19.5px;
}

.uk-product-cart {
	margin-top: 30px;
}

.uk-product-cart__row {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 17px;
}

.uk-product-cart__qty {
	display: flex;
	height: 48px;
}

.uk-product-cart__qty button,
.uk-product-cart__qty input {
	width: 48px;
	height: 48px;
	border: 1.2px solid rgba(47, 47, 47, 0.15);
	background: transparent;
	color: var(--uk-text);
	text-align: center;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
}

.uk-product-cart__qty input {
	width: 64px;
	border-inline: 0;
	appearance: textfield;
}

.uk-product-cart__qty input::-webkit-outer-spin-button,
.uk-product-cart__qty input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.uk-product-cart__total {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 158px;
	height: 46px;
	padding-left: 20px;
}

.uk-product-cart__total strong,
.uk-product-cart__total strong .amount {
	color: var(--uk-price);
	font-size: 22px;
	line-height: 22px;
	text-decoration: none;
}

.uk-product-cart__total-old {
	margin-top: 4px;
	color: rgba(47, 47, 47, 0.3);
	font-size: 13px;
	line-height: 19.5px;
	text-decoration: line-through;
}

.uk-product-cart__total-old .amount,
.uk-product-cart__total-old .woocommerce-Price-currencySymbol {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	text-decoration: inherit;
}

.uk-product-cart__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 268px;
	height: 47px;
	margin-left: auto;
	border: 0;
	background: var(--uk-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 19.5px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	cursor: pointer;
}

.uk-product-detail .uk-product-cart__row {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0;
}

.uk-product-detail .uk-product-cart__qty {
	display: flex;
	flex: 0 0 auto;
	height: 48px;
}

.uk-product-detail .uk-product-cart__qty button,
.uk-product-detail .uk-product-cart__qty input {
	box-sizing: border-box;
	display: block;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1.2px solid rgba(47, 47, 47, 0.15);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--uk-text);
	text-align: center;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
	line-height: 48px;
}

.uk-product-detail .uk-product-cart__qty input {
	width: 64px;
	border-inline: 0;
	appearance: textfield;
}

.uk-product-detail .uk-product-cart__button {
	width: 268px;
	height: 47px;
	margin-left: auto;
	border: 0;
	border-radius: 0;
	background: var(--uk-primary);
	box-shadow: none;
	color: #fff;
}

.uk-product-info {
	margin-top: 43px;
}

.uk-product-info__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	min-height: 61px;
	padding: 0 5px 24px 0;
	border: 0;
	border-bottom: 2px solid rgba(182, 138, 90, 0.65);
	background: transparent;
	color: #2f2f2f;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.24em;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
	appearance: none;
}

.uk-product-info__toggle:focus-visible {
	outline: 2px solid rgba(182, 138, 90, 0.65);
	outline-offset: 4px;
}

.uk-product-info__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: rgba(47, 47, 47, 0.28);
	transition: transform 0.2s ease;
}

.uk-product-info__chevron::before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.uk-product-info:not(.is-collapsed) .uk-product-info__chevron {
	transform: rotate(180deg);
}

.uk-product-info.is-collapsed .uk-product-info__body {
	display: none;
}

.uk-product-info__body {
	display: grid;
	grid-template-columns: minmax(0, 540px) minmax(0, 635px);
	gap: 93px;
	padding-top: 34px;
	padding-bottom: 54px;
	border-bottom: 1px solid rgba(182, 138, 90, 0.5);
	overflow: hidden;
}

.uk-product-info__text h2,
.uk-product-info__text h3 {
	margin: 0 0 8px;
	color: var(--uk-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.uk-product-info__text h3 {
	margin-top: 18px;
}

.uk-product-info__text p {
	margin: 0 0 12px;
	color: rgba(47, 47, 47, 0.72);
	font-size: 15px;
	line-height: 28.5px;
}

.uk-product-info__table {
	color: #7f7e7d;
	font-size: 14px;
	line-height: 18px;
}

.uk-product-info__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 15px;
}

.uk-product-info__row:nth-child(odd) {
	background: #fffdf9;
}

.uk-product-info__row span {
	color: var(--uk-text);
	font-weight: 400;
}

.uk-product-info__row strong {
	color: #7f7e7d;
	font-weight: 400;
	text-align: right;
}

.uk-product-related {
	margin-top: 0;
	padding-top: 17px;
	border-top: 0;
}

.uk-product-related > p {
	margin: 0 0 8px;
	color: var(--uk-primary);
	font-size: 12px;
	line-height: 18px;
}

.uk-product-related > h2 {
	margin: 0 0 24px;
	color: var(--uk-text);
	font-size: 24px;
	font-weight: 400;
	line-height: 30px;
}

.uk-product-related .uk-home-products__grid {
	grid-template-columns: repeat(4, minmax(0, 288px));
	justify-content: start;
	gap: 32px;
}

/* Responsive */
@media (max-width: 1200px) {
	.uk-home-products__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 24px;
	}

	.uk-product-detail__hero {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 48px;
	}

	.uk-product-gallery__main {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}

	.uk-product-info__body {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 48px;
	}

	.uk-product-related .uk-home-products__grid {
		grid-template-columns: repeat(3, minmax(0, 288px));
	}

	.uk-home-header__brand-row {
		grid-template-columns: 170px minmax(260px, 1fr) auto;
		padding-inline: 24px;
	}

	.uk-home-header__search {
		width: 100%;
	}

	.uk-home-brands__logos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.uk-home-brands__logo:nth-child(3n) {
		border-right: 0;
	}
}

@media (max-width: 992px) {
	.uk-home-header__brand-row {
		grid-template-columns: auto 1fr auto;
		min-height: 86px;
	}

	.uk-home-header__nav-row,
	.uk-home-header__search,
	.uk-home-header__actions .uk-home-header__wishlist {
		display: none;
	}

	.uk-home-header__toggle {
		display: flex;
	}

	.uk-home-header.is-open .uk-home-header__nav-row {
		display: flex;
		min-height: auto;
	}

	.uk-home-header.is-open .uk-home-header__nav {
		flex-direction: column;
		align-items: stretch;
		width: min(100% - 48px, var(--uk-container));
		padding-block: 12px;
	}

	.uk-home-header.is-open .uk-home-header__nav-link {
		padding: 12px 0;
	}

	.uk-home-mega {
		display: none;
	}

	.uk-home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uk-home-cases__grid,
	.uk-home-cta__inner,
	.uk-product-detail__hero,
	.uk-product-info__body {
		grid-template-columns: 1fr;
	}

	.uk-home-cases__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.uk-product-summary__price-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.uk-product-related .uk-home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 288px));
	}

	.uk-home-features__grid,
	.uk-home-brands__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uk-home-features .uk-home-container {
		width: min(100% - 48px, var(--uk-container));
	}

	.uk-home-feature,
	.uk-home-feature:first-child,
	.uk-home-feature:last-child {
		padding: 28px 32px;
	}

	.uk-home-brands__head {
		margin-bottom: 56px;
	}

	.uk-home-brands__stats {
		flex-wrap: wrap;
		row-gap: 12px;
	}

	.uk-home-categories__grid,
	.uk-home-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uk-home-why__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.uk-home-why__media {
		max-width: 480px;
	}

	.uk-home-cta__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uk-home-feature {
		border-right: 0;
		border-bottom: 1.2px solid rgba(47, 47, 47, 0.07);
	}

	.uk-home-footer__main {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.uk-home-footer__main::after {
		display: none;
	}

	.uk-home-footer__links {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 48px;
	}
}

@media (max-width: 640px) {
	:root {
		--uk-eyebrow-offset: 0px;
	}

	.uk-home-container {
		width: min(100% - 32px, var(--uk-container));
	}

	.uk-home-features .uk-home-container {
		width: min(100% - 32px, var(--uk-container));
	}

	.uk-home-header__topbar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding-inline: 0;
		padding-block: 8px;
	}

	.uk-home-header__promo {
		font-size: 12px;
	}

	.uk-home-header__brand-row {
		grid-template-columns: auto auto;
		gap: 16px;
		padding-inline: 16px;
	}

	.uk-home-header__logo img {
		width: 150px;
	}

	.uk-home-header__actions {
		display: none;
	}

	.uk-home-hero {
		min-height: 520px;
	}

	.uk-home-hero__content {
		padding-inline: 0;
	}

	.uk-home-hero__actions,
	.uk-home-cta__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: none;
	}

	.uk-home-btn {
		width: 100%;
	}

	.uk-home-section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.uk-home-case-card__media {
		height: 320px;
	}

	.uk-home-case-card__body {
		min-height: 0;
		padding: 24px;
	}

	.uk-home-case-card__body p {
		font-size: 16px;
	}

	.uk-home-products__grid,
	.uk-product-related .uk-home-products__grid,
	.uk-home-brands__logos,
	.uk-home-brands__stats,
	.uk-home-features__grid,
	.uk-home-categories__grid,
	.uk-home-blog__grid,
	.uk-home-why__grid {
		grid-template-columns: 1fr;
	}

	.uk-home-brands {
		padding: 64px 0;
	}

	.uk-home-brands__title {
		font-size: 32px;
	}

	.uk-home-brands__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uk-home-brands__logo:nth-child(3n) {
		border-right: 1px solid rgba(47, 47, 47, 0.08);
	}

	.uk-home-brands__logo:nth-child(2n) {
		border-right: 0;
	}

	.uk-home-brands__stats {
		flex-direction: column;
		align-items: stretch;
	}

	.uk-home-brands__stat {
		padding: 0;
	}

	.uk-home-brands__stat + .uk-home-brands__stat {
		border-left: 0;
	}

	.uk-product-detail__main {
		width: min(100% - 32px, 1272px);
	}

	.uk-product-summary h1 {
		font-size: 30px;
		line-height: 38px;
	}

	.uk-product-summary__price .amount,
	.uk-product-summary__price-current {
		font-size: 34px;
		line-height: 38px;
	}

	.uk-product-summary__sample,
	.uk-product-cart__button {
		width: 100%;
		flex-basis: auto;
	}

	.uk-product-detail .uk-product-cart__row {
		align-items: flex-start;
		flex-direction: column;
	}

	.uk-product-detail .uk-product-cart__button {
		margin-left: 0;
	}

	.uk-product-cart__total {
		width: auto;
		padding-left: 0;
	}

	.uk-home-container--wide {
		width: min(100% - 32px, var(--uk-container-wide));
	}

	.uk-home-why__title,
	.uk-home-section-head__title {
		font-size: 34px;
		line-height: 42px;
	}

	.uk-home-category__index {
		font-size: 64px;
		line-height: 64px;
	}

	.uk-home-category__badge {
		left: auto;
		right: 20px;
	}

	.uk-home-why__badge {
		left: 0;
	}

	.uk-home-footer__main {
		padding-top: 36px;
	}

	.uk-home-footer__links {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
