:root {
	--dkw-navy: #243656;
	--dkw-accent: #f1b51c;
	--dkw-cream: #f7f5ef;
	--dkw-text: #1f2d4d;
	--dkw-border: #e5e1d7;
	--dkw-hero-title: #ffffff;
	--dkw-hero-text: rgba(255, 255, 255, 0.88);
	--dkw-page-bg: #ffffff;
	--dkw-card-bg: #ffffff;
	--dkw-button-bg: #111111;
	--dkw-button-text: #ffffff;
	--dkw-icon-color: #243656;
	--dkw-icon-hover: #f1b51c;
	--dkw-icon-active: #f1b51c;
	--dkw-hero-overlay: rgba(255, 255, 255, 0.12);
	--dkw-container-max: 1280px;
	--dkw-sidebar-width: 280px;
	--dkw-hero-min-height: 220px;
}

.dkw-page {
	font-family: inherit;
	color: var(--dkw-text);
	background: var(--dkw-page-bg);
}

.dkw-header-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	color: #fff;
	text-decoration: none;
	line-height: 1;
}

.dkw-header-link:hover,
.dkw-header-link:focus {
	color: var(--dkw-accent);
}

.dkw-header-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dkw-heart-icon {
	display: block;
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
}

.dkw-header-link__label {
	font-size: 14px;
	font-weight: 600;
}

.dkw-header-link__count {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #fff;
	color: var(--dkw-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
}

.dkw-loop-button-wrap,
.dkw-single-button-wrap {
	margin-top: 14px;
	display: inline-flex;
}

.dkw-single-button-wrap {
	margin-bottom: 14px;
}

.dkw-wishlist-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--dkw-border);
	border-radius: 999px;
	background: #fff;
	color: var(--dkw-navy);
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 8px 18px rgba(36, 54, 86, 0.08);
	color: var(--dkw-icon-color);
}

.dkw-wishlist-toggle__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.dkw-header-link__icon .dkw-heart-icon {
	width: 24px;
	height: 24px;
}

.dkw-wishlist-toggle .dkw-heart-icon {
	width: 22px;
	height: 22px;
}

.dkw-wishlist-toggle svg {
	display: block;
}

.dkw-wishlist-toggle:hover,
.dkw-wishlist-toggle:focus {
	border-color: var(--dkw-icon-hover);
	background: #fff;
	color: var(--dkw-icon-hover);
	transform: translateY(-1px);
}

.dkw-wishlist-toggle.is-active {
	background: #fff;
	border-color: var(--dkw-icon-active);
	color: var(--dkw-icon-active);
}

.dkw-wishlist-toggle.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.dkw-hero {
	position: relative;
	background:
		radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34) 0, rgba(255, 255, 255, 0.08) 16%, transparent 17%),
		radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.06) 12%, transparent 13%),
		linear-gradient(135deg, #d9ddd9 0%, #c6cbd1 30%, #b4b8be 55%, #d2cfc7 100%);
	min-height: var(--dkw-hero-min-height);
	padding: 54px 20px;
	overflow: hidden;
}

.dkw-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--dkw-hero-overlay);
	backdrop-filter: blur(1.5px);
}

.dkw-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--dkw-container-max);
	margin: 0 auto;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	align-items: center;
}

.dkw-hero__left h1 {
	margin: 0 0 10px;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
	color: var(--dkw-hero-title);
}

.dkw-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--dkw-hero-text);
}

.dkw-breadcrumbs a {
	color: var(--dkw-hero-title);
	text-decoration: none;
}

.dkw-hero__search {
	min-width: 280px;
	max-width: 430px;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 999px;
	padding: 8px 12px 8px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dkw-hero__search input {
	border: 0;
	box-shadow: none;
	background: transparent;
	flex: 1;
	color: var(--dkw-text);
	min-height: 42px;
}

.dkw-hero__search input:focus {
	outline: none;
}

.dkw-hero__search button {
	border: 0;
	background: transparent;
	color: var(--dkw-navy);
	padding: 6px;
	cursor: pointer;
}

.dkw-layout {
	max-width: var(--dkw-container-max);
	margin: 38px auto 0;
	padding: 0 20px 48px;
	display: grid;
	grid-template-columns: minmax(220px, var(--dkw-sidebar-width)) minmax(0, 1fr);
	gap: 44px;
}

.dkw-layout > .dkw-main:only-child {
	grid-column: 1 / -1;
}

.dkw-layout--no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.dkw-sidebar-section + .dkw-sidebar-section {
	margin-top: 28px;
}

.dkw-sidebar h3,
.dkw-toolbar h2,
.dkw-empty-state h3 {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 700;
	color: var(--dkw-navy);
}

.dkw-term-list,
.dkw-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dkw-term-list li + li,
.dkw-check-list li + li {
	margin-top: 10px;
}

.dkw-term-list button {
	border: 0;
	background: transparent;
	padding: 0;
	color: var(--dkw-text);
	text-align: left;
	cursor: pointer;
	font-size: 14px;
}

.dkw-term-list button:hover,
.dkw-term-list button.is-active {
	color: var(--dkw-accent);
}

.dkw-filter-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.dkw-filter-title-row h3 {
	margin-bottom: 0;
}

.dkw-clear-filter {
	border: 0;
	background: transparent;
	color: var(--dkw-navy);
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}

.dkw-check-list label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	cursor: pointer;
	color: #35496b;
}

.dkw-check-list input[type='checkbox'] {
	appearance: none;
	width: 16px;
	height: 16px;
	border: 1px solid #cbc4b5;
	background: #fff;
	margin: 0;
	position: relative;
}

.dkw-check-list input[type='checkbox']:checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid var(--dkw-navy);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.dkw-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.dkw-toolbar__controls select {
	padding: 12px 16px;
	border: 1px solid var(--dkw-border);
	border-radius: 0;
	background: #fff;
	min-width: 190px;
	color: var(--dkw-text);
}

.dkw-login-state,
.dkw-empty-state,
.dkw-empty-filter-state {
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 28px;
}

.dkw-login-state p,
.dkw-empty-state p,
.dkw-empty-filter-state p {
	margin: 0 0 10px;
	max-width: 460px;
}

.dkw-login-button,
.dkw-shop-button,
.dkw-product-card__actions .button,
.dkw-product-card__actions a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--dkw-button-bg);
	color: var(--dkw-button-text);
	text-decoration: none;
	font-weight: 700;
	border: 0;
}

.dkw-login-button:hover,
.dkw-shop-button:hover,
.dkw-product-card__actions .button:hover,
.dkw-product-card__actions a.button:hover {
	background: var(--dkw-navy);
	color: #fff;
}

.dkw-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.dkw-product-card {
	background: var(--dkw-card-bg);
	border: 1px solid var(--dkw-border);
	box-shadow: 0 10px 22px rgba(26, 45, 77, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.dkw-product-card__media {
	display: block;
	aspect-ratio: 1 / 1;
	background: #f7f7f7;
	overflow: hidden;
}

.dkw-product-card__media img,
.dkw-no-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dkw-no-image {
	background: linear-gradient(135deg, #f0ede6, #e3ded1);
}

.dkw-product-card__content {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}

.dkw-product-card__content h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.35;
}

.dkw-product-card__content h3 a {
	color: var(--dkw-navy);
	text-decoration: none;
}

.dkw-product-card__price {
	font-weight: 700;
	color: var(--dkw-text);
}

.dkw-product-card__price del {
	opacity: 0.6;
	margin-right: 6px;
}

.dkw-product-card__actions {
	margin-top: auto;
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.dkw-remove-item {
	border: 0;
	background: transparent;
	padding: 0;
	color: #7d3b3b;
	text-decoration: underline;
	cursor: pointer;
	font-weight: 600;
}

.dkw-remove-item:hover {
	color: #000;
}

.dkw-hidden {
	display: none !important;
}

.dkw-notice {
	position: fixed;
	right: 24px;
	bottom: 24px;
	background: #111;
	color: #fff;
	padding: 12px 18px;
	border-radius: 12px;
	z-index: 99999;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
	.dkw-layout {
		grid-template-columns: 1fr;
	}

	.dkw-sidebar {
		order: 2;
	}

	.dkw-main {
		order: 1;
	}

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

@media (max-width: 767px) {
	.dkw-hero {
		padding: 36px 18px;
	}

	.dkw-hero__inner,
	.dkw-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.dkw-product-grid {
		grid-template-columns: 1fr;
	}

	.dkw-hero__search {
		min-width: 100%;
	}
}



.dkw-showcase {
	--dkw-showcase-bg: #efefef;
	--dkw-showcase-heading: #18233f;
	--dkw-showcase-label: #18233f;
	--dkw-showcase-card-text: #1d2b49;
	--dkw-showcase-price: #f1b51c;
	--dkw-showcase-media-bg: #f3f3f3;
	--dkw-showcase-arrow-bg: #f4e8c8;
	--dkw-showcase-arrow: #243656;
	--dkw-showcase-dot: #8f96a8;
	--dkw-showcase-dot-active: #243656;
	--dkw-showcase-heart-bg: #ffffff;
	--dkw-showcase-max: 1320px;
	--dkw-showcase-pt: 24px;
	--dkw-showcase-pb: 48px;
	--dkw-slider-gap: 28px;
	--dkw-visible-slides: 4;
	background: var(--dkw-showcase-bg);
	padding: var(--dkw-showcase-pt) 0 var(--dkw-showcase-pb);
}

.dkw-showcase__label,
.dkw-showcase__title {
	display: none !important;
}

.dkw-showcase__inner {
	max-width: var(--dkw-showcase-max);
	margin: 0 auto;
	padding: 0 34px;
}

.dkw-showcase__label {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	color: var(--dkw-showcase-label);
}

.dkw-showcase__title {
	margin: 0 0 28px;
	font-size: clamp(34px, 4.2vw, 58px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.03em;
	text-align: center;
	color: var(--dkw-showcase-heading);
}

.dkw-product-slider {
	position: relative;
}

.dkw-product-slider__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	padding: 0;
}

.dkw-product-slider__viewport::-webkit-scrollbar {
	display: none;
}

.dkw-product-slider__track {
	display: flex;
	gap: var(--dkw-slider-gap);
	align-items: stretch;
}

.dkw-showcase-card {
	flex: 0 0 calc((100% - ((var(--dkw-visible-slides) - 1) * var(--dkw-slider-gap))) / var(--dkw-visible-slides));
	min-width: 0;
	scroll-snap-align: start;
}

.dkw-showcase-card__media-shell {
	position: relative;
	margin-bottom: 22px;
}

.dkw-showcase-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background: var(--dkw-showcase-media-bg);
	text-decoration: none;
	overflow: hidden;
}

.dkw-showcase-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.dkw-showcase-card:hover .dkw-showcase-card__media img {
	transform: scale(1.045);
}

.dkw-showcase-card__wishlist {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
}

.dkw-showcase-wishlist-wrap,
.dkw-showcase-wishlist-wrap .dkw-single-button-wrap,
.dkw-showcase-wishlist-wrap .dkw-loop-button-wrap {
	margin: 0;
	display: block;
}

.dkw-showcase-card__wishlist .dkw-wishlist-toggle--showcase {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: var(--dkw-showcase-heart-bg);
	color: #c3c7d1;
	box-shadow: 0 4px 10px rgba(17, 24, 39, 0.08);
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.dkw-showcase-card__wishlist .dkw-wishlist-toggle--showcase:hover,
.dkw-showcase-card__wishlist .dkw-wishlist-toggle--showcase:focus {
	background: var(--dkw-showcase-heart-bg);
	color: var(--dkw-showcase-arrow);
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(17, 24, 39, 0.12);
}

.dkw-showcase-card__wishlist .dkw-wishlist-toggle--showcase.is-active {
	background: var(--dkw-showcase-price);
	color: var(--dkw-showcase-arrow);
	border-color: transparent;
}

.dkw-heart-icon-outline {
	display: block;
	width: 17px;
	height: 17px;
}

.dkw-showcase-card__title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.28;
	text-align: center;
	color: var(--dkw-showcase-card-text);
}

.dkw-showcase-card__title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dkw-showcase-card__price {
	min-height: 30px;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 700;
	text-align: center;
	color: var(--dkw-showcase-price);
}

.dkw-showcase-card__price * {
	color: inherit !important;
}

.dkw-product-slider__arrow {
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 28px;
	height: 40px;
	border: 0;
	padding: 0;
	background: var(--dkw-showcase-arrow-bg);
	color: var(--dkw-showcase-arrow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.dkw-product-slider__arrow:hover,
.dkw-product-slider__arrow:focus {
	background: var(--dkw-showcase-price);
	color: var(--dkw-showcase-arrow);
}

.dkw-product-slider__arrow[disabled] {
	opacity: 0.45;
	cursor: default;
}

.dkw-product-slider__arrow--prev {
	left: -10px;
}

.dkw-product-slider__arrow--next {
	right: -10px;
}

.dkw-product-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

.dkw-product-slider__dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--dkw-showcase-dot);
	cursor: pointer;
	transition: transform 0.22s ease, background 0.22s ease;
}

.dkw-product-slider__dot.is-active {
	background: var(--dkw-showcase-dot-active);
	transform: scale(1.05);
}

.dkw-showcase-empty {
	padding: 18px 20px;
	border: 1px dashed #c7ccd8;
	background: #fff;
	color: #243656;
}

@media (max-width: 1200px) {
	.dkw-showcase__inner {
		padding: 0 46px;
	}

	.dkw-product-slider__arrow--prev {
		left: 0;
	}

	.dkw-product-slider__arrow--next {
		right: 0;
	}
}

@media (max-width: 1024px) {
	.dkw-showcase__inner {
		padding: 0 42px;
	}

	.dkw-showcase__title {
		margin-bottom: 24px;
	}

	.dkw-product-slider {
		--dkw-visible-slides: 2;
	}

	.dkw-product-slider__arrow {
		top: 35%;
	}
}

@media (max-width: 767px) {
	.dkw-showcase {
		--dkw-slider-gap: 18px;
	}

	.dkw-showcase__inner {
		padding: 0 18px;
	}

	.dkw-showcase__label {
		font-size: 15px;
	}

	.dkw-showcase__title {
		font-size: clamp(26px, 9vw, 38px);
		margin-bottom: 18px;
	}

	.dkw-product-slider {
		--dkw-visible-slides: 1;
	}

	.dkw-showcase-card__media-shell {
		margin-bottom: 18px;
	}

	.dkw-showcase-card__title {
		font-size: 16px;
	}

	.dkw-showcase-card__price {
		font-size: 16px;
		min-height: 24px;
	}

	.dkw-product-slider__arrow {
		width: 34px;
		height: 34px;
		top: 33%;
	}

	.dkw-product-slider__arrow--prev {
		left: 4px;
	}

	.dkw-product-slider__arrow--next {
		right: 4px;
	}

	.dkw-product-slider__dots {
		margin-top: 22px;
	}
}
