:root {
	--shika-primary: #224255;
	--shika-primary-hover: rgba(34, 69, 85, 0.76);
	--shika-pale: #8abdffbd;
	--shika-sage: #92bbcada;
	--shika-blue: #12518A;
	--shika-blue-soft: #E3EFFA;
	--shika-blue-hover: #CDE2F7;
	--shika-pink: #AC2C67;
	--shika-pink-soft: #FBE2ED;
	--shika-pink-hover: #F6CFE1;
	--shika-text: #767676;
	--shika-title: #242424;
	--shika-link: #333;
	--shika-header-bg: #fff;
	--shika-nav-bg: rgba(255, 255, 255, 0.72);
	--shika-nav-bg-solid: rgba(255, 255, 255, 0.9);
	--shika-form-bg: #f7f7f7;
	--shika-gray-200: #f1f1f1;
	--shika-brd-soft: rgba(0, 0, 0, 0.075);
	--shika-form-radius: 35px;
	--shika-brd-radius: 10px;
	--shika-container: 1400px;
	--shika-top-h: 80px;
	--shika-top-sticky-h: 60px;
	--shika-nav-h: 60px;
	--shika-sm-h: 60px;
	--shika-el-font-size: 13px;
	--shika-el-font-weight: 400;
}

.shika-header,
.shika-header *,
.shika-drawer,
.shika-drawer * {
	box-sizing: border-box;
}

.shika-header {
	font-family: inherit;
	font-size: inherit;
	font-weight: 400;
	color: var(--shika-text);
	position: relative;
	z-index: 390;
	width: 100%;
}

.shika-header input,
.shika-header button,
.shika-drawer input,
.shika-drawer button {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.shika-header a {
	text-decoration: none;
	color: inherit;
}

.shika-drawer a,
.shika-cart-modal a {
	text-decoration: none;
}

.shika-header a:focus-visible,
.shika-header button:focus-visible,
.shika-drawer a:focus-visible,
.shika-drawer button:focus-visible {
	outline: 2px solid var(--shika-blue);
	outline-offset: 2px;
}

.shika-svg {
	width: 1em;
	height: 1em;
	display: block;
	flex: 0 0 auto;
}

.shika-header-placeholder {
	display: none;
}

.shika-header__shell {
	background-color: transparent;
}

body.shika-header-fixed .shika-header-placeholder {
	display: block;
	height: var(--shika-header-h, 140px);
}

body.shika-header-fixed .shika-header__shell {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 390;
}

body.shika-header-fixed.admin-bar .shika-header__shell {
	top: 32px;
}

.shika-header.is-sticky .shika-header__shell {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shika-container {
	width: min(100% - 40px, var(--shika-container));
	margin-inline: auto;
}

/* ---------- Top row ---------- */

.shika-header__top {
	position: relative;
	z-index: 2;
	background-color: var(--shika-header-bg);
	display: flex;
	align-items: center;
	min-height: var(--shika-top-h);
}

.shika-header.is-sticky .shika-header__top {
	min-height: var(--shika-top-sticky-h);
}

.shika-header__top-row,
.shika-header__nav-row {
	display: flex;
	align-items: center;
	gap: 18px;
}

.shika-header__top-row {
	min-height: var(--shika-top-h);
}

.shika-header.is-sticky .shika-header__top-row {
	min-height: var(--shika-top-sticky-h);
}

.shika-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	max-height: var(--shika-top-h);
}

.shika-logo a {
	position: relative;
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
}

.shika-logo a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(255, 255, 255, 0.55) 50%,
		transparent 65%
	);
	transform: translateX(120%);
	animation: shika-special-shine 3.2s ease-in-out infinite;
}

.shika-logo img {
	display: block;
	position: relative;
	z-index: 0;
	width: auto;
	height: auto;
	max-width: var(--shika-logo-w, 149px);
	max-height: calc(var(--shika-top-h) - 10px);
	object-fit: contain;
}

.shika-header.is-sticky .shika-logo img {
	max-height: calc(var(--shika-top-sticky-h) - 10px);
}

.shika-logo-fallback {
	position: relative;
	z-index: 0;
	font-weight: 500;
	font-size: 22px;
	color: var(--shika-primary);
}

/* ---------- Search ---------- */

.shika-search {
	flex: 1 1 auto;
	position: relative;
	max-width: 720px;
	margin-inline: auto;
}

.shika-search--mobile {
	display: none;
}

.shika-search-form {
	display: flex;
	align-items: center;
	background-color: var(--shika-form-bg);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--shika-form-radius);
	height: 46px;
	padding: 4px;
	transition: border-color 0.2s ease;
}

.shika-search-form:focus-within {
	border-color: var(--shika-pink-hover);
}

.shika-search-input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	background: transparent;
	height: 100%;
	padding: 0 18px;
	font-size: 14px;
	color: var(--shika-title);
	-webkit-appearance: none;
	appearance: none;
}

.shika-search-input::placeholder {
	color: #a5a5a5;
}

.shika-search-input::-webkit-search-cancel-button,
.shika-search-input::-webkit-search-decoration,
.shika-search-input::-webkit-search-results-button {
	display: none;
	-webkit-appearance: none;
}

.shika-search-input::-ms-clear {
	display: none;
}

.shika-search-clear {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 50%;
	background-color: transparent;
	color: var(--shika-text);
	cursor: pointer;
	font-size: 15px;
	display: grid;
	place-items: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shika-search-clear:hover {
	background-color: var(--shika-gray-200);
	color: var(--shika-title);
}

.shika-search-submit {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 50%;
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
	font-size: 19px;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background-color 0.25s ease;
}

.shika-search-submit:hover {
	background-color: var(--shika-pink-hover);
}

/* ---------- Search results ---------- */

.shika-search-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	background-color: #fff;
	border-radius: var(--shika-brd-radius);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--shika-brd-soft);
	overflow: hidden;
	z-index: 40;
}

.shika-search-result {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-bottom: 1px solid var(--shika-brd-soft);
	transition: background-color 0.15s ease;
}

.shika-search-result:last-child {
	border-bottom: 0;
}

.shika-search-result:hover {
	background-color: var(--shika-pink-soft);
}

.shika-search-result img,
.shika-search-result-ph {
	width: 50px;
	height: 50px;
	flex: 0 0 auto;
	object-fit: cover;
	border-radius: 8px;
	background-color: var(--shika-gray-200);
}

.shika-result-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.shika-result-title {
	display: block;
	color: var(--shika-link);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shika-result-line {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.shika-result-price {
	color: var(--shika-primary);
	font-size: 13px;
	font-weight: 500;
}

.shika-result-stock {
	font-size: 11px;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: 999px;
	line-height: 1.6;
}

.shika-result-stock--in {
	background-color: var(--shika-pale);
	color: var(--shika-primary);
}

.shika-result-stock--backorder {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-result-stock--out {
	background-color: var(--shika-gray-200);
	color: #8a8a8a;
}

.shika-search-empty {
	padding: 16px;
	text-align: center;
	color: var(--shika-text);
	font-size: 13px;
}

/* ---------- Contact / Instagram ---------- */

.shika-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 0 0 auto;
}

.shika-meta-item {
	position: relative;
	min-width: 0;
}

.shika-meta-main {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.shika-meta-item--list small {
	font-size: 12px;
}

.shika-meta-nums {
	display: grid;
}

.shika-meta-nums a {
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--shika-blue);
	white-space: nowrap;
	transition: opacity 0.18s ease;
}

.shika-meta-nums a + a {
	margin-top: 3px;
	padding-top: 3px;
	border-top: 1px solid rgba(18, 81, 138, 0.18);
}

.shika-meta-nums a:hover {
	opacity: 0.7;
}

.shika-meta-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 17px;
	flex: 0 0 auto;
	transition: background-color 0.25s ease;
}

.shika-meta-item--phone .shika-meta-icon {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-meta-item--phone:hover .shika-meta-icon {
	background-color: var(--shika-blue-hover);
}

.shika-meta-item--ig .shika-meta-icon {
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-meta-item--ig:hover .shika-meta-icon {
	background-color: var(--shika-pink-hover);
}

.shika-meta-item small {
	display: block;
	font-size: 13px;
	color: var(--shika-link);
	line-height: 1.4;
}

.shika-meta-item strong {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.shika-meta-item--phone strong {
	color: var(--shika-blue);
}

.shika-meta-item--ig strong {
	color: var(--shika-pink);
}

/* ---------- Nav row ---------- */

.shika-header__nav {
	position: relative;
	z-index: 5;
	background-color: transparent;
	border-top: 1px solid var(--shika-brd-soft);
	min-height: var(--shika-nav-h);
	overflow: visible;
}

.shika-header__nav::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-color: var(--shika-nav-bg);
	-webkit-backdrop-filter: blur(10px) saturate(1.4);
	backdrop-filter: blur(10px) saturate(1.4);
}

.shika-header__nav .shika-container {
	position: relative;
	z-index: 1;
	width: min(100% - 24px, var(--shika-container));
}

.shika-header.is-sticky .shika-header__nav::before {
	background-color: var(--shika-nav-bg-solid);
}

.shika-header__nav-row {
	min-height: var(--shika-nav-h);
	justify-content: flex-start;
	gap: 12px;
}

.shika-header__nav-desktop {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	gap: 8px 16px;
}

.shika-nav-links {
	flex: 1 1 auto;
	min-width: 0;
}

.shika-nav-links ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.shika-nav-links li {
	display: flex;
	align-items: center;
}

.shika-nav-links__sep {
	width: 4px;
	height: 4px;
	margin: 0 12px;
	border-radius: 50%;
	background-color: var(--shika-blue-soft);
	pointer-events: none;
}

.shika-nav-links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 4px 2px;
	font-size: 13px;
	font-weight: 500;
	color: var(--shika-link);
	white-space: nowrap;
	background: none;
	border-radius: 0;
	transition: color 0.2s ease;
}

.shika-nav-links a:hover {
	color: var(--shika-pink);
	background: none;
}

.shika-nav-links__icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex: 0 0 auto;
}

.shika-header__nav-end {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-inline-start: auto;
}

.shika-mega {
	position: relative;
	flex: 0 0 auto;
	align-self: stretch;
	display: flex;
	align-items: center;
}

.shika-mega__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 16px;
	border: 0;
	border-radius: 12px;
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shika-mega__btn .shika-svg {
	font-size: 16px;
}

.shika-mega__btn .shika-nav__chevron {
	opacity: 0.7;
	transition: transform 0.2s ease;
}

.shika-mega:hover .shika-mega__btn,
.shika-mega:focus-within .shika-mega__btn {
	background-color: #ff66cc;
	color: #fff;
}

.shika-mega:hover .shika-mega__btn .shika-nav__chevron,
.shika-mega:focus-within .shika-mega__btn .shika-nav__chevron {
	transform: rotate(180deg);
}

.shika-mega__wrap {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 60;
	padding-top: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.shika-mega:hover .shika-mega__wrap,
.shika-mega:focus-within .shika-mega__wrap {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.shika-mega__panel {
	display: flex;
	width: min(var(--shika-container), calc(100vw - 40px));
	min-height: 440px;
	max-height: min(74vh, 600px);
	background-color: #fff;
	border-radius: 0 0 14px 14px;
	box-shadow: 0 12px 32px rgba(18, 81, 138, 0.08);
	border: 1px solid var(--shika-blue-soft);
	border-top: 0;
	overflow: hidden;
	contain: layout style;
}

.shika-mega__parents {
	width: 240px;
	flex: 0 0 240px;
	margin: 0;
	padding: 10px 8px;
	list-style: none;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	background-color: #fff;
	border-inline-end: 1px solid var(--shika-blue-soft);
}

.shika-mega__parent > a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--shika-link);
	transition: background-color 0.15s ease, color 0.15s ease;
}

.shika-mega__parent > a span:not(.shika-nav__chevron) {
	flex: 1 1 auto;
	min-width: 0;
	white-space: normal;
}

.shika-mega__parent .shika-nav__chevron {
	opacity: 0.35;
	transform: rotate(90deg);
}

.shika-mega__parent:hover > a {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-mega__parent.is-active > a {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-mega__panes {
	flex: 1 1 auto;
	min-width: 0;
	position: relative;
	background-color: #fff;
}

.shika-mega__pane {
	display: none;
	position: absolute;
	inset: 0;
	padding: 18px 20px;
	gap: 20px;
}

.shika-mega__pane.is-active {
	display: flex;
	align-items: stretch;
}

.shika-mega__subs {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	overflow: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	display: flex;
	flex-flow: column wrap;
	align-content: flex-start;
	justify-content: flex-start;
	gap: 0 28px;
}

.shika-mega__group {
	width: 200px;
	max-width: 100%;
	flex: 0 0 auto;
	margin: 0 0 22px;
	background: none;
	border: 0;
}

.shika-mega__heading,
a.shika-mega__heading {
	display: block;
	margin: 0 0 10px;
	padding: 0 0 8px;
	border: 0;
	border-bottom: 1px solid var(--shika-blue-soft);
	background: none;
	color: var(--shika-blue);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
	text-align: right;
}

.shika-mega__heading span {
	display: block;
	white-space: normal;
}

a.shika-mega__heading:hover {
	color: var(--shika-pink);
	opacity: 1;
}

.shika-mega__body {
	display: grid;
	gap: 12px;
	padding: 0;
}

.shika-mega__block {
	padding: 0;
	background: none;
	border: 0;
}

a.shika-mega__subhead {
	display: block;
	margin-bottom: 6px;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.55;
	color: var(--shika-title);
	white-space: normal;
}

a.shika-mega__subhead:hover {
	color: var(--shika-pink);
}

.shika-mega__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

a.shika-mega__chip {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 4px 10px;
	border-radius: 999px;
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	white-space: normal;
	text-align: right;
}

a.shika-mega__chip:hover {
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-mega__stack {
	width: 200px;
	max-width: 100%;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 0 22px;
}

a.shika-mega__item {
	display: flex;
	align-items: center;
	padding: 9px 12px;
	border: 0;
	border-radius: 10px;
	background-color: #fff;
	border: 1px solid var(--shika-blue-soft);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--shika-blue);
	white-space: normal;
}

a.shika-mega__item:hover {
	background-color: var(--shika-pink-soft);
	border-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-mega__banner {
	flex: 0 0 210px;
	width: 210px;
	align-self: stretch;
	border-radius: 12px;
	overflow: hidden;
	background-color: var(--shika-gray-200);
}

.shika-mega__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shika-nav__special {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	isolation: isolate;
	flex: 0 0 auto;
	gap: 0;
	min-height: 34px;
	padding: 8px 20px;
	border-radius: 999px;
	background: linear-gradient(135deg, #d43a7a 0%, var(--shika-pink) 45%, #7a1f48 100%);
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: nowrap;
	box-shadow:
		0 0 0 0 rgba(172, 44, 103, 0.55),
		0 6px 16px rgba(172, 44, 103, 0.35);
	animation: shika-special-pulse 2.2s ease-in-out infinite;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.shika-nav__special::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(255, 255, 255, 0.45) 50%,
		transparent 65%
	);
	transform: translateX(120%);
	animation: shika-special-shine 3.2s ease-in-out infinite;
}

.shika-nav__special span {
	position: relative;
	z-index: 1;
}

.shika-nav__special:hover {
	color: #fff !important;
	filter: brightness(1.08);
	transform: translateY(-2px) scale(1.04);
	box-shadow:
		0 0 0 4px rgba(172, 44, 103, 0.18),
		0 10px 22px rgba(172, 44, 103, 0.42);
	animation-play-state: paused;
}

.shika-nav__special:hover::before {
	animation-play-state: paused;
}

@keyframes shika-special-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow:
			0 0 0 0 rgba(172, 44, 103, 0.5),
			0 6px 16px rgba(172, 44, 103, 0.35);
	}
	50% {
		transform: scale(1.045);
		box-shadow:
			0 0 0 8px rgba(172, 44, 103, 0),
			0 8px 20px rgba(172, 44, 103, 0.45);
	}
}

@keyframes shika-special-shine {
	0%,
	55% {
		transform: translateX(120%);
	}
	80%,
	100% {
		transform: translateX(-120%);
	}
}

.shika-nav__icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
	flex: 0 0 auto;
}

.shika-nav__chevron {
	display: inline-flex;
	font-size: 12px;
	opacity: 0.5;
}

/* ---------- Tools ---------- */

.shika-tools {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.shika-tool {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 38px;
	padding: 0 12px;
	border-radius: 10px;
	position: relative;
	font-size: 18px;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.shika-tool__label {
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.shika-tool--account {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-tool--account:hover {
	background-color: var(--shika-blue);
	color: #fff;
}

.shika-tool--cart {
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-tool--cart:hover {
	background-color: var(--shika-pink);
	color: #fff;
}

.shika-tool--cart .shika-cart-count {
	position: static;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border: 0;
	background-color: var(--shika-pink);
	color: #fff;
}

.shika-tool--cart:hover .shika-cart-count {
	background-color: #fff;
	color: var(--shika-pink);
}

.shika-cart-count {
	position: absolute;
	top: -2px;
	inset-inline-end: -4px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background-color: var(--shika-pink);
	border: 2px solid #fff;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	display: grid;
	place-items: center;
	line-height: 1;
}

.shika-icon-btn {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	place-items: center;
	cursor: pointer;
	font-size: 20px;
	background-color: var(--shika-pale);
	color: var(--shika-primary);
	transition: background-color 0.25s ease;
}

.shika-icon-btn:hover {
	background-color: var(--shika-sage);
}

.shika-mobile-tools {
	display: none;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.shika-mobile-account {
	display: none;
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-mobile-account:hover {
	background-color: var(--shika-blue-hover);
}

.shika-mobile-cart {
	display: none;
	position: relative;
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-mobile-cart:hover {
	background-color: var(--shika-pink-hover);
}

.shika-tool .shika-svg,
.shika-mobile-cart .shika-svg,
.shika-mobile-account .shika-svg,
.shika-meta-icon .shika-svg {
	stroke-width: 1.95;
}

/* ---------- Drawer ---------- */

.shika-drawer[hidden] {
	display: none;
}

.shika-drawer {
	position: fixed;
	inset: 0;
	z-index: 10050;
}

.shika-drawer__backdrop {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
}

.shika-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(86vw, 360px);
	height: 100%;
	background-color: #fff;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
	overflow: auto;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
	font-family: inherit;
	font-weight: 400;
	transform: translateX(100%);
	transition: transform 0.28s ease;
}

.shika-drawer.is-open .shika-drawer__panel {
	transform: none;
}

.shika-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	color: var(--shika-title);
	font-weight: 500;
}

.shika-drawer__head .shika-icon-btn {
	display: grid;
	width: 38px;
	height: 38px;
	background-color: var(--shika-gray-200);
	color: var(--shika-link);
}

.shika-drawer__contact {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
}

.shika-contact-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 14px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shika-contact-card:active {
	transform: scale(0.985);
}

.shika-contact-card__icon {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 50%;
	background-color: #fff;
	display: grid;
	place-items: center;
	font-size: 19px;
}

.shika-contact-card__icon .shika-svg {
	stroke-width: 1.95;
}

.shika-contact-card__text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.shika-contact-card__text small {
	font-size: 11px;
	opacity: 0.85;
}

.shika-contact-card__text strong {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.2px;
}

.shika-contact-card--list {
	align-items: flex-start;
}

.shika-contact-card--list .shika-contact-card__icon {
	margin-top: 2px;
}

.shika-contact-card__nums {
	display: grid;
}

.shika-contact-card__nums a {
	font-size: 14px;
	letter-spacing: 0.2px;
	padding: 4px 0;
	color: inherit;
}

.shika-contact-card__nums a + a {
	border-top: 1px solid rgba(18, 81, 138, 0.18);
}

.shika-contact-card--phone {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-contact-card--phone:hover {
	box-shadow: 0 4px 14px rgba(18, 81, 138, 0.16);
}

.shika-contact-card--ig {
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-contact-card--ig:hover {
	box-shadow: 0 4px 14px rgba(172, 44, 103, 0.16);
}

.shika-drawer__promo {
	margin-top: auto;
	padding-top: 18px;
	flex: 0 0 auto;
	position: relative;
	line-height: 0;
}

.shika-drawer__promo > a {
	display: block;
	position: relative;
}

.shika-drawer__promo img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.shika-drawer__promo-caption {
	position: absolute;
	inset-inline: 10px;
	bottom: 10px;
	padding: 8px 12px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(6px);
	color: var(--shika-title);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

.shika-drawer__list,
.shika-drawer__sub {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shika-drawer__row {
	display: flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1px solid var(--shika-brd-soft);
}

.shika-drawer__row > a {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 4px;
	color: var(--shika-link);
	font-weight: 400;
	font-size: 14px;
}

.shika-drawer__toggle {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border: 0;
	background-color: var(--shika-blue-soft);
	border-radius: 10px;
	color: var(--shika-blue);
	cursor: pointer;
	font-size: 16px;
	display: grid;
	place-items: center;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.shika-drawer__list li.is-open > .shika-drawer__row > .shika-drawer__toggle {
	background-color: var(--shika-blue);
	color: #fff;
}

.shika-drawer__toggle .shika-svg {
	transition: transform 0.2s ease;
}

.shika-drawer__list li.is-open > .shika-drawer__row .shika-drawer__toggle .shika-svg {
	transform: rotate(180deg);
}

.shika-drawer__sub {
	display: none;
	padding-right: 12px;
	border-inline-start: 2px solid var(--shika-blue-soft);
	margin-inline-start: 4px;
}

.shika-drawer__list li.is-open > .shika-drawer__sub {
	display: block;
}

.shika-drawer__sub .shika-drawer__row > a {
	padding: 10px 6px;
	font-size: 13px;
	font-weight: 400;
	color: var(--shika-text);
}

.shika-drawer__sub .shika-drawer__sub .shika-drawer__row > a {
	font-size: 12.5px;
	color: #8a8a8a;
}

.shika-drawer__sub .shika-drawer__row > a:hover {
	color: var(--shika-blue);
}

.shika-drawer__sub .shika-drawer__toggle {
	width: 30px;
	height: 30px;
	font-size: 15px;
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-drawer__sub li:last-child > .shika-drawer__row {
	border-bottom: 0;
}

.shika-drawer__special {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 14px;
	padding: 13px 18px;
	border-radius: var(--shika-form-radius);
	background: linear-gradient(135deg, #d43a7a 0%, var(--shika-pink) 45%, #7a1f48 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	box-shadow:
		0 0 0 0 rgba(172, 44, 103, 0.45),
		0 8px 18px rgba(172, 44, 103, 0.3);
	animation: shika-special-pulse 2.2s ease-in-out infinite;
	transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.shika-drawer__special::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 65%
	);
	transform: translateX(120%);
	animation: shika-special-shine 3.2s ease-in-out infinite;
}

.shika-drawer__special:hover {
	color: #fff;
	filter: brightness(1.08);
	transform: translateY(-1px) scale(1.02);
	box-shadow:
		0 0 0 4px rgba(172, 44, 103, 0.16),
		0 10px 22px rgba(172, 44, 103, 0.4);
	animation-play-state: paused;
}

.shika-drawer__tools {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 18px;
}

.shika-drawer__tools a {
	display: block;
	text-align: center;
	padding: 12px;
	border-radius: var(--shika-form-radius);
	font-weight: 500;
	font-size: 13px;
}

.shika-drawer__tools a:first-child {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-drawer__tools a:last-child {
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-drawer__tools .shika-cart-count {
	position: static;
	display: inline;
	min-width: 0;
	height: auto;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

/* ---------- Mobile bottom bar ---------- */

.shika-bottombar {
	display: none;
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 380;
	grid-template-columns: repeat(5, 1fr);
	align-items: end;
	gap: 2px;
	padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px) saturate(1.6);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.07);
	font-family: inherit;
	font-weight: 400;
}

.shika-bottombar *,
.shika-bottombar *::before,
.shika-bottombar *::after {
	box-sizing: border-box;
}

.shika-bottombar__item {
	display: grid;
	justify-items: center;
	gap: 2px;
	min-width: 0;
	padding: 4px 2px;
	border: 0;
	background: none;
	cursor: pointer;
	color: #8d8d8d;
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	-webkit-tap-highlight-color: transparent;
}

.shika-bottombar__icon {
	position: relative;
	width: 46px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	font-size: 21px;
	transition: background-color 0.22s ease, color 0.22s ease;
}

.shika-bottombar__label {
	font-size: 11px;
	line-height: 1.6;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 370px) {
	.shika-bottombar__label {
		font-size: 10px;
	}

	.shika-bottombar__icon {
		width: 38px;
		font-size: 20px;
	}
}

.shika-bottombar__item:hover .shika-bottombar__icon,
.shika-bottombar__item:active .shika-bottombar__icon {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-bottombar__item.is-active {
	color: var(--shika-blue);
}

.shika-bottombar__item.is-active .shika-bottombar__icon {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-bottombar__item--cart {
	color: var(--shika-pink);
}

.shika-bottombar__item--cart .shika-bottombar__icon,
.shika-bottombar__item--cart:hover .shika-bottombar__icon {
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
}

.shika-bottombar .shika-cart-count {
	top: -3px;
	inset-inline-end: 4px;
}

/* ---------- Cart modal ---------- */

.shika-cart-modal[hidden] {
	display: none;
}

.shika-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 10060;
	font-family: inherit;
	font-weight: 400;
	color: var(--shika-text);
	direction: rtl;
}

.shika-cart-modal *,
.shika-cart-modal *::before,
.shika-cart-modal *::after {
	box-sizing: border-box;
}

.shika-cart-modal__backdrop {
	position: absolute;
	inset: 0;
	background-color: rgba(20, 20, 20, 0.42);
	opacity: 0;
	transition: opacity 0.24s ease;
}

.shika-cart-modal.is-open .shika-cart-modal__backdrop {
	opacity: 1;
}

.shika-cart-modal__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: min(92vw, 400px);
	height: 100%;
	background-color: #fff;
	box-shadow: 8px 0 34px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.26s ease;
	contain: content;
}

.shika-cart-modal.is-open .shika-cart-modal__panel {
	transform: none;
}

.shika-cart-modal__panel.is-busy .shika-cart-item__price {
	opacity: 0.5;
}

.shika-cart-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--shika-brd-soft);
}

.shika-cart-modal__title {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--shika-title);
}

.shika-cart-modal__close {
	display: grid;
	width: 36px;
	height: 36px;
	font-size: 18px;
	background-color: var(--shika-gray-200);
	color: var(--shika-link);
}

.shika-cart-modal__body {
	flex: 1 1 auto;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding: 12px 14px;
}

.shika-cart-list {
	display: grid;
	gap: 10px;
	transition: opacity 0.15s ease;
}

.shika-cart-item {
	display: grid;
	grid-template-columns: 64px 1fr 30px;
	gap: 10px;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--shika-brd-soft);
	border-radius: var(--shika-brd-radius);
}

.shika-cart-item.is-removing {
	opacity: 0.45;
}

.shika-cart-item__thumb {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	object-fit: cover;
	background-color: var(--shika-gray-200);
}

.shika-cart-item__body {
	min-width: 0;
	display: grid;
	gap: 6px;
}

.shika-cart-item__title {
	font-size: 13px;
	font-weight: 400;
	color: var(--shika-title);
	line-height: 1.5;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shika-cart-item__meta {
	font-size: 11px;
	color: var(--shika-text);
}

.shika-cart-item__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.shika-cart-item__price {
	font-size: 13px;
	font-weight: 500;
	color: var(--shika-pink);
	white-space: nowrap;
}

.shika-cart-item__remove {
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background-color: var(--shika-pink-soft);
	color: var(--shika-pink);
	font-size: 17px;
	display: grid;
	place-items: center;
	cursor: pointer;
	align-self: start;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shika-cart-item__remove .shika-svg {
	stroke-width: 1.9;
}

.shika-cart-item__remove:hover {
	background-color: var(--shika-pink);
	color: #fff;
}

.shika-qty {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background-color: var(--shika-blue-soft);
	border-radius: 999px;
	padding: 3px;
}

.shika-qty__btn {
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background-color: #fff;
	color: var(--shika-blue);
	font-size: 17px;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(18, 81, 138, 0.14);
	transition: background-color 0.18s ease, color 0.18s ease;
}

.shika-qty__btn .shika-svg {
	stroke-width: 2.6;
}

.shika-qty__btn:hover:not(:disabled) {
	background-color: var(--shika-blue);
	color: #fff;
}

.shika-qty__btn:disabled {
	opacity: 0.45;
	cursor: default;
	box-shadow: none;
}

.shika-qty__num {
	min-width: 28px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: var(--shika-blue);
}

.shika-cart-empty {
	display: grid;
	place-items: center;
	min-height: 180px;
	font-size: 14px;
	color: var(--shika-text);
}

.shika-cart-skeleton {
	display: grid;
	gap: 10px;
}

.shika-cart-skeleton span {
	display: block;
	height: 86px;
	border-radius: var(--shika-brd-radius);
	background: linear-gradient(90deg, #f3f3f3 25%, #ececec 37%, #f3f3f3 63%);
	background-size: 400% 100%;
	animation: shika-skeleton 1.2s ease-in-out infinite;
}

@keyframes shika-skeleton {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

.shika-cart-modal__foot {
	padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--shika-brd-soft);
	background-color: #fff;
}

.shika-cart-modal__foot[hidden] {
	display: none;
}

.shika-cart-modal__sum {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	margin-bottom: 12px;
}

.shika-cart-modal__sum strong {
	font-size: 15px;
	font-weight: 500;
	color: var(--shika-title);
}

.shika-cart-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.shika-btn {
	display: grid;
	place-items: center;
	padding: 12px 10px;
	border-radius: var(--shika-form-radius);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shika-btn--ghost {
	background-color: var(--shika-blue-soft);
	color: var(--shika-blue);
}

.shika-btn--ghost:hover {
	background-color: var(--shika-blue-hover);
}

.shika-btn--main {
	background-color: var(--shika-pink);
	color: #fff;
}

.shika-btn--main:hover {
	background-color: var(--shika-pink-hover);
	color: var(--shika-pink);
}

/* ---------- Theme header replacement ---------- */

body.shika-replace-header .elementor-location-header,
body.shika-replace-header header.elementor-location-header,
body.shika-replace-header #masthead,
body.shika-replace-header .site-header,
body.shika-replace-header .whb-header:not(.shika-header),
body.shika-replace-header .whb-clone,
body.shika-replace-header .woodmart-header-container,
body.shika-replace-header .wd-header,
body.shika-replace-header header.header,
body.shika-replace-header .main-header:not(.shika-header__shell) {
	display: none !important;
}

body.shika-replace-header {
	--wd-top-bar-h: 0px;
	--wd-top-bar-sm-h: 0px;
	--wd-top-bar-sticky-h: 0px;
	--wd-header-general-h: 0px;
	--wd-header-general-sm-h: 0px;
	--wd-header-general-sticky-h: 0px;
	--wd-header-bottom-h: 0px;
	--wd-header-bottom-sm-h: 0px;
	--wd-header-bottom-sticky-h: 0px;
	--wd-header-clone-h: 0px;
	--wd-header-h: 0px;
	--wd-header-sm-h: 0px;
	--wd-header-sticky-h: 0px;
}

body.shika-replace-header .whb-sticky-prepared,
body.shika-replace-header .wd-page-wrapper,
body.shika-replace-header .whb-header-space {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

body.shika-replace-header .whb-header-space,
body.shika-replace-header .wd-header-space,
body.shika-replace-header .header-spacer,
body.shika-replace-header .site-header-spacer,
body.shika-replace-header .header-clone,
body.shika-replace-header .wd-header-clone {
	display: none !important;
}

body.shika-replace-header {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* ---------- Responsive ---------- */

@media (max-width: 782px) {
	body.shika-header-fixed.admin-bar .shika-header__shell {
		top: 46px;
	}
}

@media (max-width: 1100px) {
	.shika-nav-links a {
		font-size: 12px;
	}

	.shika-mega__btn {
		padding-inline: 12px;
		font-size: 12px;
	}

	.shika-mega__parents {
		width: 220px;
		flex-basis: 220px;
	}

	.shika-mega__banner {
		flex-basis: 180px;
		width: 180px;
	}

	.shika-meta {
		gap: 12px;
	}
}

@media (max-width: 1024px) {
	.shika-header__nav-desktop,
	.shika-meta,
	.shika-tools,
	.shika-search--desktop {
		display: none;
	}

	.shika-icon-btn,
	.shika-mobile-account,
	.shika-mobile-cart {
		display: grid;
	}

	.shika-mobile-tools {
		display: flex;
	}

	body.shika-header-fixed .shika-header-placeholder {
		display: none;
	}

	body.shika-header-fixed .shika-header__shell,
	body.shika-header-fixed.admin-bar .shika-header__shell {
		position: static;
		top: auto;
	}

	.shika-header.is-sticky .shika-header__shell {
		box-shadow: none;
	}

	.shika-container {
		width: min(100% - 24px, var(--shika-container));
	}

	.shika-header__top,
	.shika-header.is-sticky .shika-header__top {
		min-height: var(--shika-sm-h);
	}

	.shika-header__top-row,
	.shika-header.is-sticky .shika-header__top-row {
		justify-content: space-between;
		gap: 10px;
		min-height: var(--shika-sm-h);
	}

	.shika-logo {
		flex: 1 1 auto;
		justify-content: center;
		max-height: var(--shika-sm-h);
	}

	.shika-logo img {
		max-width: var(--shika-logo-w-sm, 180px);
		max-height: calc(var(--shika-sm-h) - 10px);
	}

	.shika-header.is-sticky .shika-logo img {
		max-width: calc(var(--shika-logo-w-sm, 180px) / 2);
		max-height: calc(var(--shika-sm-h) - 16px);
	}

	.shika-header__nav {
		min-height: var(--shika-sm-h);
	}

	.shika-header__nav-row {
		min-height: var(--shika-sm-h);
	}

	.shika-search--mobile {
		display: block;
		flex: 1 1 auto;
		max-width: none;
		margin-inline: 0;
	}

	.shika-search-form {
		height: 42px;
	}

	.shika-bottombar {
		display: grid;
	}

	body.shika-has-bottom-bar {
		padding-bottom: calc(66px + env(safe-area-inset-bottom)) !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.shika-drawer__panel,
	.shika-cart-modal__panel,
	.shika-cart-modal__backdrop,
	.shika-mega__wrap {
		transition: none;
	}

	.shika-cart-skeleton span {
		animation: none;
	}

	.shika-nav__special,
	.shika-drawer__special,
	.shika-nav__special::before,
	.shika-drawer__special::before,
	.shika-logo a::after {
		animation: none;
	}
}
