@charset "UTF-8";

:root {
	--shell-white: #fff;
	--shell-text: #414141;
	--shell-subtext: #777;
	--shell-border: #e8e3df;
	--shell-brown: #6f615d;
	--shell-yellow: #ffcd74;
}

html {
	scroll-behavior: smooth;
}

body.store-menu-open {
	overflow: hidden;
}

.store-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	color: var(--shell-text);
	background: rgb(255 255 255 / 96%);
	border-bottom: 1px solid transparent;
	transition:
		box-shadow 0.25s ease,
		border-color 0.25s ease;
	backdrop-filter: blur(12px);
}

.store-header.is-scrolled {
	border-color: var(--shell-border);
	box-shadow: 0 8px 24px rgb(0 0 0 / 5%);
}

.store-header__inner {
	display: grid;
	grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
	align-items: center;
	width: min(1440px, calc(100% - 48px));
	min-height: 84px;
	margin-inline: auto;
}

.store-header__brand {
	min-width: 0;
}

.store-header__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.store-header__brand .custom-logo {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 50px;
}

.store-header__site-name {
	display: inline-block;
	overflow: hidden;
	color: var(--shell-text);
	font-size: clamp(1rem, 1.5vw, 1.35rem);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.store-navigation__list {
	display: flex;
	align-items: center;
	gap: clamp(22px, 3vw, 46px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.store-navigation__list > li {
	position: relative;
}

.store-navigation__list a {
	position: relative;
	display: block;
	padding-block: 31px;
	color: var(--shell-text);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
}

.store-navigation__list > li > a::after {
	position: absolute;
	right: 0;
	bottom: 23px;
	left: 0;
	height: 1px;
	background: var(--shell-brown);
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease;
}

.store-navigation__list > li:hover > a::after,
.store-navigation__list > .current-menu-item > a::after,
.store-navigation__list > .current-menu-ancestor > a::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.store-navigation__list .sub-menu {
	position: absolute;
	top: calc(100% - 10px);
	left: 50%;
	min-width: 190px;
	margin: 0;
	padding: 12px 0;
	visibility: hidden;
	list-style: none;
	background: var(--shell-white);
	border: 1px solid var(--shell-border);
	box-shadow: 0 12px 30px rgb(0 0 0 / 8%);
	opacity: 0;
	transform: translate(-50%, 8px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0.25s ease;
}

.store-navigation__list li:hover > .sub-menu,
.store-navigation__list li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}

.store-navigation__list .sub-menu a {
	padding: 10px 18px;
	font-size: 0.75rem;
}

.store-navigation__list .sub-menu a:hover {
	background: #f7f5f2;
}

.store-header__actions {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	height: 84px;
}

.store-header-action {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 74px;
	color: var(--shell-text);
	font-size: 0.58rem;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	border-left: 1px solid var(--shell-border);
}

.store-header-action svg {
	display: block;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.store-header-action__icon {
	position: relative;
}

.store-cart-count {
	position: absolute;
	top: -8px;
	right: -11px;
	display: grid;
	min-width: 18px;
	height: 18px;
	padding-inline: 4px;
	place-items: center;
	color: var(--shell-white);
	font-size: 0.58rem;
	line-height: 1;
	background: var(--shell-brown);
	border-radius: 999px;
}

.store-menu-toggle {
	display: none;
	width: 70px;
	padding: 0;
	color: var(--shell-text);
	background: transparent;
	border: 0;
	border-left: 1px solid var(--shell-border);
	cursor: pointer;
}

.store-menu-toggle__line {
	display: block;
	width: 24px;
	height: 1px;
	margin: 0 auto 7px;
	background: currentcolor;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

.store-menu-toggle__label {
	display: block;
	margin-top: 9px;
	font-size: 0.55rem;
	letter-spacing: 0.1em;
}

.store-menu-overlay {
	position: fixed;
	z-index: 900;
	inset: 0;
	visibility: hidden;
	background: rgb(0 0 0 / 35%);
	opacity: 0;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.store-footer {
	padding: clamp(70px, 9vw, 120px) 0 28px;
	color: var(--shell-white);
	background: var(--shell-brown);
}

.store-footer .container {
	width: min(1200px, calc(100% - 48px));
	margin-inline: auto;
}

.store-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 80px;
	padding-bottom: clamp(60px, 8vw, 100px);
}

.store-footer__site-name {
	color: var(--shell-white);
	font-size: clamp(1.6rem, 3vw, 3rem);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.025em;
	text-decoration: none;
}

.store-footer__description {
	max-width: 440px;
	margin: 22px 0 0;
	font-size: 0.82rem;
	line-height: 1.9;
	opacity: 0.72;
}

.store-footer__navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(140px, 1fr));
	gap: clamp(45px, 7vw, 100px);
}

.store-footer__menu-title {
	margin: 0 0 24px;
	color: var(--shell-yellow);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.store-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.store-footer__menu li + li {
	margin-top: 14px;
}

.store-footer__menu a {
	color: var(--shell-white);
	font-size: 0.8rem;
	line-height: 1.5;
	text-decoration: none;
	opacity: 0.78;
	transition: opacity 0.25s ease;
}

.store-footer__menu a:hover {
	opacity: 1;
}

.store-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 26px;
	border-top: 1px solid rgb(255 255 255 / 22%);
}

.store-footer__copyright {
	margin: 0;
	font-size: 0.65rem;
	letter-spacing: 0.04em;
	opacity: 0.65;
}

.store-footer__pagetop {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	color: var(--shell-white);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-decoration: none;
}

@media (max-width: 1000px) {
	.store-header__inner {
		grid-template-columns: minmax(130px, 1fr) auto;
	}

	.store-navigation {
		position: fixed;
		z-index: 950;
		top: 0;
		right: 0;
		width: min(420px, 88vw);
		height: 100svh;
		padding: 110px 32px 50px;
		visibility: hidden;
		overflow-y: auto;
		background: var(--shell-white);
		opacity: 0;
		transform: translateX(100%);
		transition:
			transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.3s ease,
			visibility 0.35s ease;
	}

	.store-navigation__list {
		display: block;
	}

	.store-navigation__list > li {
		border-bottom: 1px solid var(--shell-border);
	}

	.store-navigation__list a {
		padding: 18px 4px;
		font-size: 0.9rem;
	}

	.store-navigation__list > li > a::after {
		display: none;
	}

	.store-navigation__list .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 12px 18px;
		visibility: visible;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.store-navigation__list .sub-menu a {
		padding: 9px 4px;
	}

	.store-menu-toggle {
		position: relative;
		z-index: 1000;
		display: block;
	}

	.store-menu-open .store-navigation {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.store-menu-open .store-menu-overlay {
		visibility: visible;
		opacity: 1;
	}

	.store-menu-open .store-menu-toggle__line:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.store-menu-open .store-menu-toggle__line:nth-child(2) {
		transform: translateY(-4px) rotate(-45deg);
	}
}

@media (max-width: 830px) {
	.store-header__inner {
		width: calc(100% - 24px);
		min-height: 70px;
	}

	.store-header__actions {
		height: 70px;
		margin-right: -12px;
	}

	.store-header__brand .custom-logo {
		max-width: 160px;
		max-height: 40px;
	}

	.store-header-action {
		min-width: 58px;
	}

	.store-header-action--account {
		display: none;
	}

	.store-menu-toggle {
		width: 62px;
	}

	.store-footer .container {
		width: min(100% - 32px, 1200px);
	}

	.store-footer__top {
		grid-template-columns: 1fr;
		gap: 55px;
	}
}

@media (max-width: 480px) {
	.store-footer .container {
		width: min(100% - 24px, 1200px);
	}

	.store-footer__navigation {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}

	.store-footer__bottom {
		align-items: flex-end;
	}
}

