:root {
	--ink: #202822;
	--muted: #717b73;
	--green: #03c75a;
	--green-text: #087f3e;
	--line: #e5e9e5;
	--surface: #f5f7f5;
}
* {
	box-sizing: border-box;
}
html {
	font-family:
		Pretendard,
		-apple-system,
		BlinkMacSystemFont,
		"Apple SD Gothic Neo",
		"Noto Sans KR",
		"Segoe UI",
		sans-serif;
	color: var(--ink);
	background: white;
	font-size: 15px;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
textarea {
	font: inherit;
}
button,
a {
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
button {
	cursor: pointer;
}
button:disabled {
	opacity: 0.5;
	cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid #438de5;
	outline-offset: 3px;
}
h1,
h2,
h3,
p {
	margin: 0;
}
h1,
h2,
h3 {
	word-break: keep-all;
	overflow-wrap: anywhere;
}
p {
	line-height: 1.7;
}
svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
button {
	border: 0;
	background: transparent;
	color: inherit;
}
button,
a,
input {
	min-height: 44px;
}
input,
textarea {
	border: 1px solid #d7ded8;
	border-radius: 10px;
	padding: 13px 14px;
	width: 100%;
	min-width: 0;
	background: white;
	color: var(--ink);
	font-size: 16px;
}
textarea {
	resize: vertical;
}
.site-header {
	height: 80px;
	border-bottom: 1px solid var(--line);
	background: #fff;
}
.header-inner {
	max-width: 1200px;
	margin: auto;
	padding: 0 28px;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 42px;
}
.logo {
	display: flex;
	align-items: center;
}
.logo img {
	width: 134px;
	height: auto;
}
.desktop-nav {
	display: flex;
	gap: 30px;
	height: 100%;
	align-items: center;
	font-weight: 650;
}
.desktop-nav a {
	display: flex;
	align-items: center;
	height: 100%;
	border-bottom: 3px solid transparent;
	padding-top: 3px;
}
.desktop-nav [aria-current] {
	border-color: var(--green);
	color: var(--green-text);
}
.header-account {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 24px;
}
.header-account a {
	display: flex;
	gap: 7px;
	align-items: center;
	font-size: 14px;
}
.home-main {
	max-width: 1200px;
	padding: 0 28px;
	margin: auto;
}
.welcome {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	padding: 42px 0 48px;
	align-items: center;
}
.welcome-copy {
	padding-left: 8px;
}
.eyebrow {
	font-size: 13px;
	font-weight: 650;
	color: var(--green-text);
	letter-spacing: 0.3px;
	margin-bottom: 13px;
}
.welcome h1 {
	font-size: 44px;
	letter-spacing: -1.8px;
	line-height: 1.23;
	font-weight: 750;
}
.welcome h1 span {
	color: var(--green-text);
}
.welcome-copy > p:not(.eyebrow) {
	margin-top: 18px;
	color: var(--muted);
	font-size: 16px;
}
.welcome-photo {
	height: 310px;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--surface);
}
.welcome-photo > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.welcome-photo > a {
	position: absolute;
	bottom: 14px;
	right: 14px;
	color: white;
	background: #15281ecc;
	border: 1px solid #ffffff3b;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 14px;
	border-radius: 8px;
	font-size: 13px;
}
.service-links {
	display: flex;
	gap: 10px;
	margin-top: 25px;
}
.service-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 17px;
	border: 1px solid #dce4df;
	border-radius: 10px;
	font-weight: 650;
}
.service-links .selected {
	border-color: #b1dfc5;
	background: #f2faf5;
	color: var(--green-text);
}
.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}
.section-heading h2 {
	font-size: 23px;
	letter-spacing: -0.7px;
}
.section-heading p {
	font-size: 14px;
	color: var(--muted);
	margin-top: 7px;
}
.catalog-total {
	white-space: nowrap;
	color: var(--muted);
	font-size: 13px;
}
.search-field {
	display: flex;
	gap: 12px;
	align-items: center;
	border: 1px solid #cfdad2;
	border-radius: 12px;
	padding: 6px 6px 6px 18px;
	max-width: 760px;
	background: #fff;
}
.search-field > svg {
	color: #66796a;
}
.search-field input {
	border: 0;
	padding: 10px 0;
	outline-offset: 0;
	background: transparent;
}
.search-field button {
	padding: 0 24px;
	background: var(--green);
	color: #052f15;
	border-radius: 8px;
	font-weight: 700;
	flex-shrink: 0;
}
.region-filters {
	display: flex;
	gap: 6px;
	overflow: auto;
	margin: 16px 0 25px;
	padding: 3px 0;
	scrollbar-width: none;
}
.region-filters button {
	padding: 8px 18px;
	flex-shrink: 0;
	border-radius: 9px;
	font-size: 14px;
	background: var(--surface);
}
.region-filters [aria-pressed="true"] {
	background: #253d2e;
	color: white;
	font-weight: 650;
}
.store-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 20px;
}
.store-card {
	min-width: 0;
	display: block;
}
.store-photo {
	aspect-ratio: 1.43;
	background: var(--surface);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 13px;
}
.store-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s;
}
.store-card:hover img {
	transform: scale(1.025);
}
.store-meta {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 5px;
}
.store-card h3 {
	font-size: 17px;
	letter-spacing: -0.5px;
	line-height: 1.5;
}
.store-card > p {
	font-size: 12px;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 4px;
}
.store-link {
	font-size: 12px;
	color: var(--green-text);
	display: flex;
	align-items: center;
	gap: 3px;
	margin-top: 12px;
}
.store-link svg {
	width: 14px;
	height: 14px;
}
.photo-fallback {
	height: 100%;
	display: grid;
	place-items: center;
	font-size: 23px;
	font-weight: 700;
	color: #92a898;
	letter-spacing: -1px;
}
.outline,
.primary,
.danger-outline,
.kakao {
	min-height: 48px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 10px;
	font-weight: 650;
	text-align: center;
	border: 1px solid #dbe2dc;
	background: white;
	line-height: 1.4;
}
.primary {
	background: var(--green);
	border-color: var(--green);
	color: #073a1c;
}
.danger-outline {
	border-color: #e6cccc;
	color: #b44848;
}
.kakao {
	background: #fee500;
	border-color: #fee500;
	color: #191919;
	margin-top: 22px;
}
.kakao span {
	color: #3c1e1e;
}
.full {
	width: 100%;
}
.more {
	display: flex;
	margin: 30px auto 0;
	min-width: 210px;
	font-size: 14px;
}
.more svg {
	transform: rotate(90deg);
	width: 17px;
}
.more[hidden] {
	display: none;
}
.gift-section {
	padding: 50px 0 0;
	margin-top: 44px;
	border-top: 1px solid var(--line);
}
.gift-empty {
	background: #f8f8f4;
	border-radius: 14px;
	padding: 26px 35px;
	display: flex;
	gap: 34px;
	align-items: center;
}
.gift-empty h3 {
	font-size: 19px;
	letter-spacing: -0.5px;
	margin-bottom: 9px;
}
.gift-empty p {
	font-size: 14px;
	color: var(--muted);
}
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--green-text);
	font-weight: 600;
}
.text-link svg {
	width: 15px;
	height: 15px;
}
.gift-art {
	width: 136px;
	height: 93px;
	flex-shrink: 0;
	background: #dcede1;
	border: 1px solid #bed6c6;
	border-radius: 7px;
	position: relative;
	transform: rotate(-7deg);
}
.gift-art:before {
	content: "";
	position: absolute;
	inset: -5px 9px 6px -7px;
	border: 1px solid #a9c5b4;
	border-radius: 7px;
	z-index: -1;
	background: #e9f3eb;
}
.gift-art span {
	position: absolute;
	left: 31px;
	top: 0;
	bottom: 0;
	width: 18px;
	background: #609577;
}
.gift-art i {
	position: absolute;
	top: 24px;
	left: 0;
	right: 0;
	height: 15px;
	background: #609577;
}
.gift-art b {
	position: absolute;
	bottom: 13px;
	right: 10px;
	font-size: 14px;
	letter-spacing: -1px;
	color: #3a614a;
}
.wallet-row {
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid var(--line);
	padding: 24px 4px;
}
.wallet-row > svg {
	margin-left: auto;
}
.wallet-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--surface);
	display: grid;
	place-items: center;
}
.wallet-row strong {
	font-size: 15px;
}
.wallet-row p {
	color: var(--muted);
	font-size: 13px;
	margin-top: 4px;
}
.privacy-banner {
	display: flex;
	gap: 20px;
	align-items: center;
	margin: 48px 0 58px;
	padding: 25px 28px;
	background: #f3f8f4;
	border-radius: 12px;
}
.privacy-banner h2 {
	font-size: 18px;
}
.privacy-banner p {
	font-size: 13px;
	margin-top: 5px;
	color: var(--muted);
}
.privacy-banner > svg {
	margin-left: auto;
}
.privacy-banner > span {
	color: var(--green-text);
}
.site-footer {
	border-top: 1px solid var(--line);
	padding: 30px max(28px, calc((100vw - 1144px) / 2)) 35px;
	background: #fafbf9;
	color: var(--muted);
}
.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.footer-top .logo img {
	width: 104px;
	opacity: 0.65;
}
.footer-top > a:not(.logo) {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
}
.footer-top svg {
	width: 14px;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 23px;
	font-size: 12px;
	color: #59685d;
	margin-bottom: 10px;
}
.footer-links a {
	display: flex;
	align-items: center;
}
.site-footer p {
	font-size: 11px;
	line-height: 1.8;
	margin-top: 4px;
}
.powered {
	font-size: 11px;
	margin-top: 20px;
}
.powered a {
	font-weight: 700;
}
.mobile-nav {
	display: none;
}
.account-main {
	max-width: 820px;
	margin: 36px auto 80px;
	padding: 0 24px;
	min-height: 60vh;
}
.account-heading {
	margin: 24px 0 30px;
}
.account-heading h1 {
	font-size: 29px;
	line-height: 1.5;
	letter-spacing: -1px;
}
.account-heading p:not(.eyebrow) {
	color: var(--muted);
	font-size: 14px;
	margin-top: 10px;
}
.my-shortcuts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 40px;
}
.my-shortcuts a {
	padding: 23px;
	background: #f3f8f4;
	border-radius: 12px;
}
.my-shortcuts span {
	font-size: 13px;
	color: var(--green-text);
}
.my-shortcuts strong {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
	font-size: 17px;
}
.my-shortcuts svg {
	width: 18px;
}
.menu-section {
	margin-bottom: 28px;
}
.menu-section h2 {
	font-size: 14px;
	color: var(--muted);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}
.menu-row {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid #eff1ef;
}
.menu-row strong {
	font-size: 16px;
}
.menu-row p {
	font-size: 13px;
	color: var(--muted);
	margin-top: 6px;
}
.menu-row > svg {
	color: #819388;
	width: 19px;
}
.login-panel {
	max-width: 480px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 14px;
}
.login-panel h2 {
	font-size: 19px;
}
.login-panel > p {
	font-size: 14px;
	color: var(--muted);
	margin-top: 14px;
}
.divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 26px 0 22px;
	color: var(--muted);
	font-size: 12px;
}
.divider:before,
.divider:after {
	content: "";
	height: 1px;
	background: var(--line);
	flex: 1;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0;
	font-size: 14px;
	font-weight: 600;
}
.input-action {
	display: flex;
	gap: 8px;
}
.input-action button {
	padding: 8px 13px;
	white-space: nowrap;
	font-size: 13px;
}
.muted {
	color: var(--muted);
	font-size: 13px;
}
.login-note {
	font-size: 12px !important;
	margin-top: 24px !important;
}
.back {
	font-size: 13px;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
}
.info-note {
	padding: 24px;
	border-radius: 12px;
	background: #f3f7f4;
	margin-bottom: 30px;
}
.info-note > p {
	margin: 8px 0 0;
	font-size: 14px;
	color: #627269;
}
.info-note h2 {
	font-size: 20px;
	margin-top: 12px;
}
.provision {
	border-bottom: 1px solid var(--line);
}
summary {
	cursor: pointer;
	list-style: none;
	min-height: 52px;
}
summary::-webkit-details-marker {
	display: none;
}
.provision summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
}
.provision h2 {
	font-size: 18px;
}
.provision summary p {
	font-size: 13px;
	color: var(--muted);
	margin-top: 6px;
}
.chevron {
	font-size: 24px;
	color: #657c6c;
}
.provision[open] .chevron {
	transform: rotate(180deg);
}
.provision-body {
	padding: 0 0 24px;
}
.provision-body dl {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 13px;
	font-size: 13px;
	margin: 8px 0 26px;
	padding: 20px;
	background: var(--surface);
	border-radius: 10px;
	line-height: 1.6;
}
.provision-body dt {
	color: var(--muted);
}
.provision-body dd {
	margin: 0;
}
.provision-body h3 {
	font-size: 13px;
	color: var(--muted);
}
.record-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #f0f3f0;
	font-size: 14px;
}
.record-row span {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: var(--muted);
}
.record-row svg {
	width: 17px;
}
.cancelled {
	color: #aa7474 !important;
}
.footnote {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.8;
	margin-top: 24px;
}
.footnote a {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.consent-section {
	margin-bottom: 36px;
}
.consent-section h2 {
	font-size: 18px;
	margin-bottom: 12px;
}
.consent-section .section-heading {
	margin-bottom: 10px;
}
.consent-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}
.consent-row a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	min-height: 30px;
}
.consent-row svg {
	width: 15px;
	height: 15px;
	color: var(--muted);
}
.consent-row small {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-top: 5px;
}
.badge {
	display: inline-flex;
	border-radius: 6px;
	align-items: center;
	padding: 5px 9px;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 550;
	background: #e9f7ee;
	color: #197541;
	white-space: nowrap;
}
.badge.neutral {
	background: var(--surface);
	color: #717c75;
}
.consent-section > .full {
	margin-top: 20px;
}
.consent-section > .muted {
	margin-top: 20px;
}
.empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--muted);
	grid-column: 1/-1;
}
.empty h2,
.empty h3 {
	color: #43554a;
	font-size: 18px;
	margin-bottom: 12px;
}
.empty p {
	font-size: 14px;
	margin-bottom: 20px;
}
.wallet-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.wallet-card {
	border: 1px solid var(--line);
	border-radius: 13px;
	padding: 25px;
}
.wallet-card h2 {
	font-size: 20px;
	margin: 16px 0 24px;
}
.wallet-balance {
	font-size: 30px;
	letter-spacing: -1px;
	display: block;
	margin: 6px 0 14px;
}
.wallet-card details {
	border-top: 1px dashed #d6ded8;
	margin-top: 23px;
	padding-top: 6px;
}
.wallet-card summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}
.wallet-malls a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}
.wallet-malls p {
	font-size: 13px;
	padding: 10px 0;
}
.wallet-malls svg {
	width: 15px;
}
.withdraw-panel h2 {
	font-size: 19px;
}
.withdraw-panel ul {
	padding-left: 20px;
	margin: 18px 0;
	color: #68756b;
	font-size: 14px;
	line-height: 1.8;
}
.withdraw-panel li + li {
	margin-top: 8px;
}
.withdraw-links {
	display: flex;
	gap: 14px;
	margin: 24px 0 32px;
}
.withdraw-links a {
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 10px 15px;
}
.withdraw-links svg {
	width: 16px;
}
.check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	padding: 12px 0;
	line-height: 1.6;
}
.check input {
	width: 21px;
	height: 21px;
	min-height: 21px;
	accent-color: var(--green-text);
	margin: 0;
	flex-shrink: 0;
}
.withdraw-panel .full {
	margin-top: 24px;
}
.overlay {
	position: fixed;
	inset: 0;
	background: #17261d73;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.dialog {
	max-width: 440px;
	background: white;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 18px 70px #16321c33;
}
.dialog h2 {
	font-size: 22px;
}
.dialog p {
	color: var(--muted);
	font-size: 14px;
	margin: 16px 0 25px;
}
.dialog-actions {
	display: flex;
	gap: 10px;
}
.dialog-actions button {
	flex: 1;
}
.dialog-open {
	overflow: hidden;
}
#toast {
	position: fixed;
	z-index: 150;
	left: 50%;
	bottom: 30px;
	transform: translate(-50%, 15px);
	max-width: min(520px, calc(100vw - 32px));
	background: #243b2e;
	color: white;
	border-radius: 10px;
	padding: 15px 20px;
	box-shadow: 0 5px 22px #0002;
	opacity: 0;
	pointer-events: none;
	font-size: 14px;
	line-height: 1.6;
	transition:
		opacity 0.2s,
		transform 0.2s;
}
#toast.visible {
	opacity: 1;
	transform: translate(-50%, 0);
}
.sr-only,
.skip:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip:focus {
	position: fixed;
	z-index: 999;
	background: white;
	padding: 20px;
}
.price {
	display: block;
	margin-top: 10px;
	font-size: 20px;
}
@media (max-width: 1000px) {
	.store-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.welcome {
		gap: 28px;
	}
	.welcome h1 {
		font-size: 39px;
	}
	.welcome-photo {
		height: 290px;
	}
	.header-inner {
		gap: 28px;
	}
	.header-account {
		gap: 16px;
	}
	.header-account span {
		display: none;
	}
}
@media (max-width: 640px) {
	.site-header {
		height: 64px;
	}
	.header-inner {
		padding: 0 20px;
		gap: 14px;
	}
	.logo img {
		width: 112px;
	}
	.desktop-nav {
		display: none;
	}
	.header-account {
		gap: 18px;
	}
	.header-account a {
		min-width: 30px;
		justify-content: center;
	}
	.home-main {
		padding: 0 20px;
	}
	.welcome {
		padding: 24px 0 30px;
		gap: 18px;
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
	.welcome-copy {
		padding: 0;
	}
	.eyebrow {
		font-size: 11px;
		margin-bottom: 10px;
		letter-spacing: 0;
	}
	.welcome h1 {
		font-size: 29px;
		letter-spacing: -1.25px;
		line-height: 1.28;
	}
	.welcome-copy > p:not(.eyebrow) {
		font-size: 12px;
		margin-top: 13px;
		line-height: 1.6;
	}
	.welcome-photo {
		height: 203px;
		border-radius: 12px;
	}
	.welcome-photo > a {
		left: 8px;
		right: 8px;
		bottom: 8px;
		padding: 0 9px;
		min-height: 36px;
		font-size: 10px;
		gap: 5px;
	}
	.welcome-photo > a > span {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.welcome-photo > a > svg {
		width: 13px;
	}
	.service-links {
		grid-column: 1/-1;
		gap: 8px;
		margin-top: 18px;
		flex-wrap: wrap;
	}
	.service-links a {
		padding: 8px 10px;
		min-height: 42px;
		font-size: 12px;
		gap: 6px;
	}
	.service-links svg {
		width: 17px;
		height: 17px;
	}
	.section-heading {
		gap: 10px;
		margin-bottom: 17px;
	}
	.section-heading h2 {
		font-size: 19px;
		letter-spacing: -0.5px;
	}
	.section-heading p {
		font-size: 12px;
		margin-top: 5px;
	}
	.catalog-total {
		font-size: 11px;
	}
	.search-field {
		padding-left: 12px;
		gap: 9px;
	}
	.search-field svg {
		width: 19px;
	}
	.search-field input {
		font-size: 14px;
	}
	.search-field button {
		font-size: 13px;
		padding: 0 15px;
	}
	.region-filters {
		margin: 12px -20px 20px;
		padding: 3px 20px;
	}
	.region-filters button {
		padding: 8px 15px;
		min-height: 40px;
		font-size: 12px;
	}
	.store-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 25px 13px;
	}
	.store-photo {
		aspect-ratio: 1.18;
		border-radius: 10px;
		margin-bottom: 10px;
	}
	.store-meta {
		font-size: 10px;
	}
	.store-card h3 {
		font-size: 15px;
		letter-spacing: -0.45px;
	}
	.store-card > p {
		font-size: 11px;
		line-height: 1.6;
		margin-top: 5px;
	}
	.store-link {
		font-size: 10px;
		margin-top: 10px;
		line-height: 1.6;
	}
	.store-link svg {
		width: 12px;
	}
	.gift-section {
		padding-top: 30px;
		margin-top: 32px;
	}
	.gift-empty {
		gap: 18px;
		padding: 23px 18px;
		align-items: center;
	}
	.gift-empty h3 {
		font-size: 15px;
		line-height: 1.6;
	}
	.gift-empty p {
		font-size: 12px;
	}
	.gift-art {
		width: 79px;
		height: 69px;
	}
	.gift-art span {
		left: 19px;
		width: 13px;
	}
	.gift-art i {
		height: 12px;
		top: 16px;
	}
	.gift-art b {
		font-size: 11px;
		bottom: 10px;
		right: 7px;
	}
	.gift-empty .text-link {
		font-size: 11px;
	}
	.wallet-row {
		gap: 12px;
		padding: 20px 0;
	}
	.wallet-row strong {
		font-size: 13px;
		line-height: 1.6;
	}
	.wallet-row p {
		font-size: 11px;
	}
	.wallet-icon {
		width: 36px;
		height: 36px;
		flex-shrink: 0;
	}
	.wallet-row > svg {
		width: 17px;
	}
	.privacy-banner {
		padding: 20px 17px;
		gap: 13px;
		margin: 32px 0 38px;
	}
	.privacy-banner h2 {
		font-size: 16px;
	}
	.privacy-banner p {
		font-size: 11px;
	}
	.privacy-banner > svg {
		width: 15px;
	}
	.site-footer {
		padding: 24px 20px calc(96px + env(safe-area-inset-bottom));
	}
	.footer-links {
		column-gap: 16px;
		font-size: 11px;
	}
	.site-footer p {
		font-size: 10px;
	}
	.footer-top {
		margin-bottom: 14px;
	}
	.footer-top > a:not(.logo) {
		font-size: 11px;
	}
	.mobile-nav {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 20;
		display: flex;
		align-items: stretch;
		justify-content: space-around;
		padding: 7px 10px calc(5px + env(safe-area-inset-bottom));
		background: #fffffffa;
		border-top: 1px solid var(--line);
		box-shadow: 0 -3px 16px #20402b04;
	}
	.mobile-nav a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		flex: 1;
		min-height: 47px;
		font-size: 10px;
		color: #6d7971;
	}
	.mobile-nav svg {
		width: 21px;
		height: 21px;
	}
	.mobile-nav a[aria-current] {
		color: var(--green-text);
		font-weight: 700;
	}
	.account-main {
		padding: 0 20px;
		margin: 18px auto 44px;
		min-height: 55vh;
	}
	.account-heading {
		margin: 20px 0 25px;
	}
	.account-heading h1 {
		font-size: 26px;
		letter-spacing: -0.8px;
	}
	.account-heading p:not(.eyebrow) {
		font-size: 13px;
	}
	.my-shortcuts {
		gap: 10px;
		margin-bottom: 32px;
	}
	.my-shortcuts a {
		padding: 18px 15px;
	}
	.my-shortcuts span {
		font-size: 11px;
	}
	.my-shortcuts strong {
		font-size: 14px;
		line-height: 1.7;
	}
	.my-shortcuts svg {
		width: 15px;
	}
	.menu-row {
		padding: 20px 0;
	}
	.menu-row strong {
		font-size: 15px;
	}
	.menu-row p {
		font-size: 12px;
		line-height: 1.65;
	}
	.login-panel {
		padding: 22px 18px;
	}
	.field {
		font-size: 13px;
	}
	.input-action button {
		padding: 8px 11px;
		font-size: 12px;
	}
	.info-note {
		padding: 20px;
	}
	.info-note strong {
		font-size: 14px;
	}
	.info-note > p {
		font-size: 12px;
	}
	.provision h2 {
		font-size: 16px;
	}
	.provision summary p {
		font-size: 11px;
	}
	.provision-body dl {
		grid-template-columns: 64px 1fr;
		padding: 16px;
		font-size: 12px;
		gap: 12px;
	}
	.record-row {
		font-size: 12px;
	}
	.consent-row {
		gap: 10px;
	}
	.consent-row a {
		font-size: 14px;
	}
	.consent-row small {
		font-size: 11px;
	}
	.consent-row .badge {
		font-size: 10px;
		padding: 5px 7px;
	}
	.consent-section .section-heading p {
		line-height: 1.7;
	}
	.wallet-list {
		grid-template-columns: 1fr;
	}
	.withdraw-panel ul {
		font-size: 13px;
	}
	.withdraw-links {
		gap: 8px;
	}
	.withdraw-links a {
		padding: 10px 12px;
		font-size: 12px;
	}
	.check {
		font-size: 13px;
	}
	.dialog {
		padding: 24px;
	}
	.dialog h2 {
		font-size: 20px;
	}
	.dialog p {
		font-size: 13px;
	}
	.overlay {
		align-items: flex-end;
		padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
	}
	#toast {
		bottom: calc(83px + env(safe-area-inset-bottom));
		width: calc(100vw - 32px);
		font-size: 13px;
	}
	.more {
		min-height: 45px;
		font-size: 13px;
		margin-top: 23px;
	}
}
@media (max-width: 359px) {
	.welcome {
		gap: 12px;
		grid-template-columns: 1.15fr 1fr;
	}
	.welcome h1 {
		font-size: 26px;
	}
	.welcome-photo {
		height: 185px;
	}
	.service-links {
		gap: 5px;
	}
	.service-links a {
		font-size: 11px;
		padding: 8px;
	}
	.section-heading h2 {
		font-size: 17px;
	}
	.store-link {
		font-size: 9px;
	}
	.search-field input {
		font-size: 13px;
	}
	.gift-empty {
		gap: 12px;
		padding: 20px 12px;
	}
	.gift-art {
		width: 61px;
	}
	.input-action {
		flex-wrap: wrap;
	}
	.input-action button {
		width: 100%;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		scroll-behavior: auto !important;
	}
}

/* Keep the two services together below the introduction on small screens. */
p {
	word-break: keep-all;
	overflow-wrap: anywhere;
}
.welcome {
	grid-template-areas: "copy photo" "services photo";
	row-gap: 0;
	padding-top: 32px;
	padding-bottom: 36px;
}
.welcome-copy {
	grid-area: copy;
}
.welcome-photo {
	grid-area: photo;
	height: 270px;
}
.service-links {
	grid-area: services;
	margin-top: 20px;
}
.welcome h1 {
	font-size: 40px;
}
@media (max-width: 640px) {
	.welcome {
		grid-template-areas: "copy photo" "services services";
		row-gap: 16px;
		padding-top: 24px;
		padding-bottom: 30px;
	}
	.welcome-photo {
		height: 197px;
	}
	.welcome h1 {
		font-size: 29px;
	}
	.service-links {
		margin-top: 0;
		display: flex;
		flex-wrap: nowrap;
	}
	.service-links a {
		flex: 1;
		justify-content: center;
		min-height: 46px;
		font-size: 14px;
	}
	.service-links svg {
		width: 19px;
		height: 19px;
	}
}
@media (max-width: 359px) {
	.welcome h1 {
		font-size: 26px;
	}
	.welcome-photo {
		height: 185px;
	}
	.service-links a {
		font-size: 13px;
	}
}

.company-information{margin:24px 0 16px;font-size:13px;line-height:1.75}.company-information>strong{font-size:14px;color:#454545}.company-information dl{display:flex;flex-wrap:wrap;gap:4px 24px;margin:10px 0}.company-information dl>div{display:flex;gap:8px;min-width:0;max-width:100%}.company-information dt{flex:none;color:#777}.company-information dd{margin:0;overflow-wrap:anywhere}.company-information .company-address{flex-basis:100%}.site-footer .copyright{font-size:11px;color:#888}@media(max-width:600px){.company-information dl{display:grid;gap:6px}.company-information dl>div{align-items:baseline}.company-information .company-address dd{flex:1}}

/* The public home is an account and voucher entry, without a store directory. */
.welcome.welcome-account{display:block;padding:46px 8px 36px}
.welcome-account .welcome-copy{padding:0}
.welcome-account .service-links{margin-top:26px}
.welcome-account .booking-link-note{color:var(--muted);font-size:13px;margin:17px 0 0}
@media(max-width:640px){.welcome.welcome-account{padding:32px 0 27px}.welcome-account .service-links{display:flex;flex-wrap:wrap;gap:8px}.welcome-account .service-links a{flex:1;justify-content:center;white-space:nowrap}.welcome-account .booking-link-note{font-size:12px;line-height:1.6}}
