/* Header */
.yamato-header__brand {
	flex: 0 1 auto;
	max-width: 200px;
}

.yamato-header__brand .yamato-logo__image,
.yamato-header__brand .custom-logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: 70px;
	object-fit: contain;
}

.yamato-header {
	position: relative;
	z-index: 25;
	width: 100%;
	padding: 1.5rem 0;
	background: #fff;
	color: #040a1c;
}

.yamato-header--transparent {
	position: absolute;
	left: 0;
	top: 0;
	background: transparent;
}

.yamato-header.is-sticky .yamato-header__inner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: #fff;
	padding: 1.5rem 0;
	box-shadow: 0 7px 27px rgba(0, 0, 0, 0.05);
	transition: padding 0.5s ease, box-shadow 0.5s ease;
}

.yamato-header__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.yamato-header__nav {
	display: flex;
	align-items: center;
}

.yamato-header__toggle {
	display: none;
	width: 3.75rem;
	height: 3.75rem;
	border: 2px solid #9c7f4e;
	background: #fff;
	color: #282f40;
	position: relative;
	flex-shrink: 0;
}

.yamato-header__toggle::before,
.yamato-header__toggle::after,
.yamato-header__toggle span {
	content: '';
	position: absolute;
	left: 50%;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
	transform: translateX(-50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.yamato-header__toggle::before {
	top: calc(50% - 7px);
}

.yamato-header__toggle span {
	top: 50%;
}

.yamato-header__toggle::after {
	top: calc(50% + 7px);
}

.yamato-header__toggle[aria-expanded='true'] {
	background: #9c7f4e;
	color: #fff;
}

.yamato-header__toggle[aria-expanded='true']::before {
	top: 50%;
	transform: translateX(-50%) rotate(45deg);
}

.yamato-header__toggle[aria-expanded='true']::after {
	top: 50%;
	transform: translateX(-50%) rotate(-45deg);
}

.yamato-header__toggle[aria-expanded='true'] span {
	opacity: 0;
}

/* Primary menu */
.yamato-menu--primary {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.25rem;
	font-family: var(--yamato-font-nav);
	letter-spacing: 0.5px;
}

.yamato-menu--primary > li {
	margin: 0 1.25rem;
	position: relative;
}

.yamato-menu--primary > li > a {
	display: block;
	position: relative;
	color: #040a1c;
	text-transform: uppercase;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.yamato-menu--primary > li > a::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	height: 2px;
	width: 0;
	background: #040a1c;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

.yamato-menu--primary > li:hover > a::before,
.yamato-menu--primary > li.current-menu-item > a::before,
.yamato-menu--primary > li.current-menu-ancestor > a::before {
	opacity: 1;
	visibility: visible;
	width: 100%;
	left: 0;
}

.yamato-menu--primary .sub-menu {
	position: absolute;
	top: 100%;
	left: -2rem;
	min-width: 19.75rem;
	margin-top: 3.5rem;
	padding: 2rem;
	font-size: 1.125rem;
	line-height: 2rem;
	color: #fff;
	background: #282f40;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	box-shadow: 0 0 30px rgba(15, 27, 56, 0.1);
	z-index: 10;
}

.yamato-menu--primary .sub-menu::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 3.75rem;
}

.yamato-menu--primary li:hover > .sub-menu,
.yamato-menu--primary li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.yamato-menu--primary .sub-menu a {
	color: #fff;
}

.yamato-menu--primary .sub-menu a:hover {
	color: var(--wp--preset--color--gold, #9c7f4e);
}

.yamato-menu--primary > li.yamato-menu-info--parent > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.45rem;
	border-top: 0.3rem solid currentColor;
	border-right: 0.28rem solid transparent;
	border-left: 0.28rem solid transparent;
	vertical-align: middle;
	transform: translateY(-1px);
	transition: transform 0.3s ease;
}

.yamato-menu--primary > li.yamato-menu-info--parent:hover > a::after,
.yamato-menu--primary > li.yamato-menu-info--parent:focus-within > a::after {
	transform: translateY(1px);
}

.yamato-menu--primary .sub-menu .yamato-menu-info a {
	display: block;
	position: relative;
	padding-left: 0.25rem;
	transition: color 0.3s ease, padding-left 0.3s ease;
}

.yamato-menu--primary .sub-menu .yamato-menu-info a:hover {
	padding-left: 0.625rem;
}

.yamato-menu--primary .sub-menu > li:not(:last-child) {
	margin-bottom: 1rem;
}

.yamato-menu--primary .sub-menu .sub-menu {
	top: -2rem;
	left: 100%;
	margin-left: 2.5rem;
	margin-top: 0;
}

/* Header actions */
.yamato-header__actions {
	display: flex;
	align-items: center;
	margin: 0 -1rem;
	padding-left: 40px;
}

.yamato-header__action {
	margin: 0 1rem;
	position: relative;
}

.yamato-header__action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #040a1c;
	position: relative;
}

.yamato-header__action-link i {
	font-size: 1.75rem;
	line-height: 1;
}

.yamato-header__action--cart .yamato-header__action-link {
	padding: 0;
}

.yamato-header__cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: #ca3c3f;
	color: #fff;
	font-family: var(--yamato-font-nav);
	font-size: 0.5625rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	text-align: center;
	overflow: hidden;
	pointer-events: none;
	box-sizing: border-box;
}

.yamato-header__cart-count.is-wide {
	width: auto;
	min-width: 1.25rem;
	height: 1rem;
	padding: 0 0.125rem;
	border-radius: 0.5rem;
}

.yamato-header__cart-count:empty {
	display: none;
}

/* Search modal */
.yamato-search {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(4, 10, 28, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.yamato-search[hidden] {
	display: none;
}

.yamato-search__dialog {
	position: relative;
	width: 100%;
	max-width: 640px;
	background: #fff;
	padding: 3rem;
}

.yamato-search__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: #040a1c;
}

.yamato-search__title {
	font-family: var(--yamato-font-display);
	font-size: 2rem;
	font-weight: 400;
	color: #040a1c;
	margin: 0 0 1.5rem;
}

.yamato-search__form {
	display: flex;
	border-bottom: 1px solid #eaeaea;
}

.yamato-search__form input[type='search'] {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 0.75rem 0;
	font: inherit;
	outline: none;
}

.yamato-search__form button {
	flex-shrink: 0;
	color: #040a1c;
	padding: 0.75rem;
}

@media (max-width: 640px) {
	.yamato-search {
		padding: 0.75rem;
	}

	.yamato-search__dialog {
		max-width: none;
		padding: 1.25rem 1rem 1.5rem;
	}

	.yamato-search__close {
		top: 0.75rem;
		right: 0.75rem;
		padding: 0.125rem;
		line-height: 1;
	}

	.yamato-search__title {
		font-size: 1.5rem;
		line-height: 1.25;
		margin: 0 2.25rem 1rem 0;
	}

	.yamato-search__form {
		gap: 0.5rem;
	}

	.yamato-search__form input[type='search'] {
		padding: 0.625rem 0;
		font-size: 1rem;
	}

	.yamato-search__form button {
		padding: 0.625rem 0.125rem 0.625rem 0.375rem;
	}
}

/* Footer — hybrid: light brand band + dark info section */
.yamato-footer {
	--yamato-footer-dark: #040a1c;
	--yamato-footer-panel: #282f40;
	--yamato-footer-gold: #9c7f4e;
	--yamato-footer-accent: #ca3c3f;
	--yamato-footer-muted: rgba(255, 255, 255, 0.72);

	position: relative;
	overflow: hidden;
}

.yamato-footer__top {
	position: relative;
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
	background:
		linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
	border-bottom: 1px solid rgba(156, 127, 78, 0.18);
}

.yamato-footer__intro {
	display: flex;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.yamato-footer__brand {
	flex: 0 0 auto;
}

.yamato-footer__intro-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.yamato-footer__logo .yamato-logo__image,
.yamato-footer__logo .custom-logo {
	display: block;
	width: auto;
	max-width: min(220px, 42vw);
	height: 70px;
	object-fit: contain;
}

.yamato-footer__tagline {
	margin: 0 0 1rem;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #595758;
}

.yamato-footer__tagline p {
	margin: 0;
}

.yamato-footer__top .yamato-footer__social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.yamato-footer__top .yamato-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(4, 10, 28, 0.12);
	border-radius: 50%;
	color: #040a1c;
	background: #fff;
	transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.yamato-footer__top .yamato-footer__social-link:hover {
	border-color: var(--yamato-footer-accent);
	background: var(--yamato-footer-accent);
	color: #fff;
	transform: translateY(-2px);
}

.yamato-footer__body {
	position: relative;
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.75rem, 3vw, 2.5rem);
	background:
		radial-gradient(circle at 85% 15%, rgba(202, 60, 63, 0.12), transparent 34%),
		radial-gradient(circle at 10% 80%, rgba(156, 127, 78, 0.1), transparent 28%),
		linear-gradient(180deg, var(--yamato-footer-panel) 0%, var(--yamato-footer-dark) 100%);
	color: var(--yamato-footer-muted);
}

.yamato-footer__body--has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--yamato-footer-bg-image);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: min(42rem, 55vw);
	opacity: 0.08;
	pointer-events: none;
}

.yamato-footer__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.yamato-footer__wave {
	display: block;
	opacity: 0.12;
}

.yamato-footer__wave svg {
	display: block;
	width: 100%;
	height: auto;
}

.yamato-footer__wave--body {
	position: absolute;
	top: 0.5rem;
	right: -10%;
	width: min(32rem, 60vw);
	transform: rotate(-6deg);
}

.yamato-footer__wave--body path {
	stroke: rgba(255, 255, 255, 0.35);
}

.yamato-footer__decor-icon {
	position: absolute;
	display: block;
	opacity: 0.1;
}

.yamato-footer__decor-icon--fish {
	right: 2rem;
	bottom: 4rem;
	width: clamp(4.5rem, 7vw, 6.5rem);
	height: auto;
}

.yamato-footer__decor-icon--bamboo {
	left: -1.5rem;
	bottom: 1.5rem;
	width: clamp(4rem, 6vw, 5.5rem);
	height: auto;
}

.yamato-footer__body .yamato-container {
	position: relative;
	z-index: 1;
}

.yamato-footer__main {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 3vw, 3rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.yamato-footer__main--extended {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.yamato-body .yamato-footer__body .yamato-footer__title {
	margin: 0 0 1.25rem;
	font-family: var(--yamato-font-nav);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.yamato-footer__menu,
.yamato-footer__legal-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.yamato-footer__menu li + li,
.yamato-footer__legal-menu li + li {
	margin-top: 0.625rem;
}

.yamato-footer__menu a,
.yamato-footer__legal-menu a {
	display: inline-block;
	font-family: var(--yamato-font-nav);
	font-size: 1rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.86);
	transition: color 0.3s ease;
}

.yamato-footer__menu a:hover,
.yamato-footer__legal-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

.yamato-footer__menu--info a {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.625rem;
	padding: 0.25rem 0;
	line-height: 1.45;
	transition: color 0.3s ease, transform 0.3s ease;
}

.yamato-footer__menu--info a:hover {
	text-decoration: none;
	transform: translateX(4px);
}

.yamato-footer__menu--info .material-icons {
	flex-shrink: 0;
	margin-top: 0.1rem;
	font-size: 1.125rem;
	color: var(--yamato-footer-gold);
	transition: color 0.3s ease;
}

.yamato-footer__menu--info a:hover .material-icons {
	color: var(--yamato-footer-accent);
}

.yamato-footer__menu--info .yamato-footer__menu-text {
	display: block;
}

.yamato-footer__contacts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.yamato-footer__contact {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 1rem;
	line-height: 1.55;
}

.yamato-footer__contact + .yamato-footer__contact {
	margin-top: 0.875rem;
}

.yamato-footer__contact .material-icons {
	flex-shrink: 0;
	margin-top: 0.125rem;
	font-size: 1.25rem;
	color: var(--yamato-footer-gold);
}

.yamato-footer__contact a {
	color: #fff;
}

.yamato-footer__contact a:hover {
	color: var(--yamato-footer-accent);
	text-decoration: underline;
}

.yamato-footer__contact--address span {
	display: block;
}

.yamato-footer__contact--address p {
	margin: 0;
}

.yamato-footer__hours {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.86);
}

.yamato-footer__hours span {
	color: #fff;
	font-weight: 500;
}

.yamato-footer__delivery {
	margin: 1rem 0 0;
	padding: 0.625rem 0.875rem;
	border-left: 3px solid var(--yamato-footer-accent);
	font-family: var(--yamato-font-nav);
	font-size: 0.9375rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.04);
}

body.yamato-body .yamato-footer__body .yamato-footer__cta {
	display: inline-block;
	margin-top: 1.25rem;
	padding: 0.6875rem 1.125rem;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 0;
	font-family: var(--yamato-font-nav);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	background: transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body.yamato-body .yamato-footer__body .yamato-footer__cta:hover {
	color: #fff;
	background: var(--yamato-footer-accent);
	border-color: var(--yamato-footer-accent);
}

.yamato-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	padding-top: clamp(1.25rem, 2vw, 1.75rem);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.yamato-footer__copyright {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.yamato-footer__copyright a {
	color: inherit;
}

.yamato-footer__credit-sep {
	margin: 0 0.45em;
}

.yamato-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: none;
}

.yamato-footer__credit:hover {
	color: #fff;
}

.yamato-footer__credit-icon {
	display: block;
	width: 1em;
	height: 1em;
	border-radius: 0.2em;
	object-fit: cover;
}

.yamato-footer__legal-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0;
}

.yamato-footer__legal-menu li {
	display: inline-flex;
	align-items: center;
}

.yamato-footer__legal-menu li + li::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 0 0.875rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
}

.yamato-footer__legal-menu li + li {
	margin-top: 0;
}

.yamato-footer__legal-menu a {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.55);
}

.yamato-footer__legal-menu a:hover {
	color: #fff;
}

/* Footer — light variant (full light background) */
.yamato-footer--light .yamato-footer__top {
	background: #fff;
	border-bottom: 1px solid rgba(156, 127, 78, 0.16);
}

.yamato-footer--light .yamato-footer__body {
	background: #f7f4ef;
	color: #595758;
}

.yamato-footer--light.yamato-footer--has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--yamato-footer-bg-image);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: min(36rem, 50vw);
	opacity: 0.22;
	pointer-events: none;
}

.yamato-footer--light .yamato-footer__decor-icon {
	opacity: 0.07;
}

.yamato-footer--light .yamato-footer__wave--body {
	opacity: 0.18;
}

.yamato-footer--light .yamato-footer__wave--body path {
	stroke: #d7bfab;
}

body.yamato-body .yamato-footer--light .yamato-footer__body .yamato-footer__title {
	color: #040a1c;
}

.yamato-footer--light .yamato-footer__menu a {
	color: #ca3c3f;
}

.yamato-footer--light .yamato-footer__menu a:hover {
	color: #040a1c;
}

.yamato-footer--light .yamato-footer__menu--info a:hover {
	color: var(--yamato-footer-accent);
}

.yamato-footer--light .yamato-footer__menu--info .material-icons {
	color: var(--yamato-footer-gold);
}

.yamato-footer--light .yamato-footer__menu--info a:hover .material-icons {
	color: var(--yamato-footer-accent);
}

.yamato-footer--light .yamato-footer__contact .material-icons {
	color: var(--yamato-footer-gold);
}

.yamato-footer--light .yamato-footer__contact a {
	color: #040a1c;
}

.yamato-footer--light .yamato-footer__contact a:hover {
	color: var(--yamato-footer-accent);
}

.yamato-footer--light .yamato-footer__hours {
	color: #595758;
}

.yamato-footer--light .yamato-footer__hours span {
	color: #040a1c;
}

.yamato-footer--light .yamato-footer__delivery {
	color: #595758;
	background: #fff;
	border-left-color: var(--yamato-footer-accent);
}

body.yamato-body .yamato-footer--light .yamato-footer__body .yamato-footer__cta {
	padding: 0.75rem 1.25rem;
	border: 2px solid var(--yamato-footer-accent);
	color: #282f40;
	background: #fff;
}

body.yamato-body .yamato-footer--light .yamato-footer__body .yamato-footer__cta:hover {
	color: #fff;
	background: var(--yamato-footer-accent);
	border-color: var(--yamato-footer-accent);
}

.yamato-footer--light .yamato-footer__bottom {
	border-top-color: rgba(156, 127, 78, 0.2);
}

.yamato-footer--light .yamato-footer__copyright,
.yamato-footer--light .yamato-footer__legal-menu a {
	color: #7a7879;
}

.yamato-footer--light .yamato-footer__credit:hover {
	color: #9c7f4e;
}

.yamato-footer--light .yamato-footer__legal-menu a:hover {
	color: #040a1c;
}

.yamato-footer--light .yamato-footer__legal-menu li + li::before {
	background: rgba(4, 10, 28, 0.2);
}

.yamato-footer--light .yamato-menu--footer > li:not(:last-child)::after {
	background: #7a7879;
}

.yamato-footer--light .yamato-menu--footer a {
	color: #ca3c3f;
}

.yamato-footer--light .yamato-menu--footer a:hover {
	color: #040a1c;
}

/* Legacy footer menu classes (fallback) */
.yamato-menu--footer {
	display: flex;
	flex-wrap: wrap;
}

.yamato-menu--footer > li {
	position: relative;
}

.yamato-menu--footer > li:not(:last-child) {
	margin-right: 0.9375rem;
	padding-right: 0.9375rem;
}

.yamato-menu--footer > li:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 55%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background: rgba(255, 255, 255, 0.25);
}

.yamato-menu--footer a {
	color: rgba(255, 255, 255, 0.86);
}

.yamato-header__overlay[hidden] {
	display: none;
}

.yamato-header__drawer {
	display: flex;
	align-items: center;
}

body.yamato-nav-open {
	overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
	.yamato-header--transparent {
		position: relative;
		background: #fff;
	}

	.yamato-header__toggle {
		display: inline-block;
		z-index: 102;
	}

	.yamato-header__nav {
		flex-wrap: nowrap;
		justify-content: flex-end;
		gap: 1rem;
	}

	.yamato-header__overlay {
		position: fixed;
		inset: 0;
		z-index: 100;
		background: rgba(4, 10, 28, 0.55);
		opacity: 0;
		transition: opacity 0.35s ease;
	}

	.yamato-header__overlay:not([hidden]) {
		display: block;
	}

	body.yamato-nav-open .yamato-header__overlay {
		opacity: 1;
	}

	.yamato-header__drawer {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 101;
		width: min(22rem, 88vw);
		height: 100%;
		max-height: 100dvh;
		padding: 5.5rem 0 2rem;
		background: #282f40;
		box-shadow: -12px 0 40px rgba(4, 10, 28, 0.18);
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(100%);
		transition: transform 0.35s ease;
		visibility: hidden;
	}

	.yamato-header__drawer.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.yamato-menu--primary {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.yamato-menu--primary > li {
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.yamato-menu--primary > li > a {
		padding: 1rem 1.5rem;
		background: transparent;
		color: #fff;
	}

	.yamato-menu--primary > li > a::before {
		display: none;
	}

	.yamato-menu--primary .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		margin: 0;
		padding: 0 0 0.75rem 1rem;
		min-width: 0;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.15);
	}

	.yamato-menu--primary .sub-menu::before {
		display: none;
	}

	.yamato-menu--primary .sub-menu a {
		display: block;
		padding: 0.625rem 1.5rem;
	}

	.yamato-header__actions {
		padding-left: 0;
	}

	.yamato-footer__top {
		padding-bottom: 2rem;
	}

	.yamato-footer__intro {
		flex-direction: column;
		align-items: flex-start;
	}

	.yamato-footer__main,
	.yamato-footer__main--extended {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yamato-footer__decor-icon--fish {
		right: -1rem;
		opacity: 0.06;
	}

	.yamato-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.yamato-header {
		padding: 1rem 0;
	}

	.yamato-header.is-sticky .yamato-header__inner {
		padding: 1rem 0;
	}

	.yamato-footer__main,
	.yamato-footer__main--extended {
		grid-template-columns: 1fr;
	}

	.yamato-footer__wave--body,
	.yamato-footer__decor-icon--bamboo {
		display: none;
	}
}

@media (max-width: 392px) {
	.yamato-header {
		padding: 0.75rem 0;
	}

	.yamato-header.is-sticky .yamato-header__inner {
		padding: 0.75rem 0;
	}

	.yamato-header__row {
		flex-wrap: nowrap;
		gap: 0.5rem;
	}

	.yamato-header__brand {
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
	}

	.yamato-header__brand .yamato-logo__image,
	.yamato-header__brand .custom-logo {
		height: 2.75rem;
	}

	.yamato-header__nav {
		flex: 0 0 auto;
		align-items: center;
		gap: 0.125rem;
	}

	.yamato-header__toggle {
		width: 2.625rem;
		height: 2.625rem;
		flex-shrink: 0;
	}

	.yamato-header__toggle::before,
	.yamato-header__toggle::after,
	.yamato-header__toggle span {
		width: 1rem;
	}

	.yamato-header__actions {
		display: flex;
		align-items: center;
		margin: 0;
		padding-left: 0;
	}

	.yamato-header__action {
		display: flex;
		align-items: center;
		margin: 0;
	}

	.yamato-header__action-link {
		width: 2.625rem;
		height: 2.625rem;
	}

	.yamato-header__action--cart .yamato-header__action-link {
		padding: 0;
	}

	.yamato-header__action-link i {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 1.375rem;
		height: 1.375rem;
		font-size: 1.375rem;
		line-height: 1;
	}

	.yamato-header__cart-count {
		top: 0.375rem;
		right: 0.25rem;
	}
}
