@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css");

/* CSS 변수 */
:root {
	--primary-color: #FF8000;
	--border-color: #D7D7D7;
	--color-red: #ef2a23;
	--color-orange: #ff8000;
	--color-orange-light: #ffda8a80;
	--color-border-gray: #d9d9d9;
	--color-box-gray: #fafafa;
	--text-light-gray: #999;
	--text-gray: #5e5e5e;
}

/* 초기화 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html,
body {
	overflow-x: hidden;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg {
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	background-color: #fff;
}

button {
	cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

a:hover,
a:focus {
	text-decoration: none;
}


/* 유틸리티 */
.mt-1 {
	margin-top: 1px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-2 {
	margin-bottom: 2px;
}

.mb-6 {
	margin-bottom: 6px;
}

.mb-8 {
	margin-bottom: 8px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-12 {
	margin-bottom: 12px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-22 {
	margin-bottom: 22px;
}

.mb-24 {
	margin-bottom: 24px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-32 {
	margin-bottom: 32px;
}

.mb-36 {
	margin-bottom: 36px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-42 {
	margin-bottom: 42px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-64 {
	margin-bottom: 64px;
}

.mb-74 {
	margin-bottom: 74px;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-170 {
	margin-bottom: 170px;
}

.mb-200 {
	margin-bottom: 200px !important;
}

.ml-3 {
	margin-left: 3px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-12 {
	margin-left: 12px;
}

.ml-20 {
	margin-left: 20px;
}

.mr-8 {
	margin-right: 8px;
}

.mr-15 {
	margin-right: 15px;
}

.fs-12 {
	font-size: 12px;
}

.fs-13 {
	font-size: 13px;
}

.fs-14 {
	font-size: 14px;
}

.fs-15 {
	font-size: 15px;
}

.fs-16 {
	font-size: 16px;
}

.fs-17 {
	font-size: 17px;
}

.fs-19 {
	font-size: 19px;
}

.fs-20 {
	font-size: 20px;
}

.fs-22 {
	font-size: 22px;
}

.fs-24 {
	font-size: 24px;
}

.fs-26 {
	font-size: 26px !important;
}

.fs-28 {
	font-size: 28px;
}

.fs-30 {
	font-size: 30px;
}

.fs-32 {
	font-size: 32px;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.px-30 {
	padding-left: 30px !important;
	padding-right: 30px !important;
}

.px-50 {
	padding-left: 50px !important;
	padding-right: 50px !important;
}

.px-70 {
	padding-left: 70px !important;
	padding-right: 70px !important;
}

.px-100 {
	padding-left: 100px !important;
	padding-right: 100px !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.text-black {
	color: #000;
}

.text-gray {
	color: #5e5e5e;
}

.text-lightgray {
	color: #ccc;
}

.text-white {
	color: #fff;
}

.text-red {
	color: #ff0000;
}

.text-orange {
	color: #ff8000;
}

.text-accent {
	color: var(--color-orange);
}

.text-danger {
	color: var(--color-red);
}

.text-success {
	color: var(--color-success);
}

.bg-white {
	background-color: #fff;
}

.bg-light {
	background-color: #f9f9f9;
}

.bg-gray {
	background-color: #eee;
}

.bg-primary {
	background-color: var(--color-primary);
}

.bg-accent {
	background-color: var(--color-orange);
}

.bg-danger {
	background-color: var(--color-red);
}

.bg-success {
	background-color: var(--color-success);
}

.border-black {
	border-color: #000;
}

.border-gray {
	border-color: #ddd;
}

.border-light {
	border-color: #eee;
}

.border-accent {
	border-color: var(--color-orange);
}

.border-danger {
	border-color: var(--color-red);
}

.text-center {
	text-align: center;
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.flex-start {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.grid {
	display: grid;
}

.line-clamp-1 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.w-full {
	width: 100%;
}

.w-150 {
	width: 150px;
}

.underline {
	text-decoration: underline;
}

.block {
	display: block;
}

.hidden,
[hidden] {
	display: none !important;
}

body {
	font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1;
	font-weight: 400;
	font-display: swap;
	font-optical-sizing: auto;
	font-synthesis: none;
	-webkit-text-stroke: 0.01em transparent;
}

/* 인라인 스타일 폰트 강제 오버라이드 */
*[style*="font-family"],
p[style*="font-family"],
span[style*="font-family"],
div[style*="font-family"],
td[style*="font-family"],
th[style*="font-family"],
li[style*="font-family"],
* {
	font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	text-rendering: optimizeLegibility !important;
	font-variant-ligatures: none;
	font-optical-sizing: auto;
	font-synthesis: none;
	-webkit-text-stroke: 0.01em transparent;
}

#container {
	width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0;
}

#main {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	box-sizing: border-box;
	flex: 1;
	padding-top: 200px;

}

.banner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	gap: 20px;
}

h1,
h2,
h3,
p {
	line-height: 1.4;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

input::placeholder,
textarea::placeholder {
	color: #a7a7a7;
	opacity: 1;
}

/* layout */
.layout-2-1 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	align-items: start;
}

/* quantity-controls */
.quantity-controls {
	display: flex;
	align-items: center;
	width: 110px;
	height: 30px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
}

.quantity-btn {
	width: 30px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #fff;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-radius: 0;
	transition: background-color .12s ease, transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.quantity-btn i {
	font-size: 20px;
	color: #ccc;
}

.quantity-btn:active {
	box-shadow: inset 0 0 0 999px rgba(0, 0, 0, .03);
}

.quantity-btn:active i {
	color: #000;
}

.quantity-input {
	display: flex;
	align-items: center;
	width: 50px;
	height: 100%;
	border: none;
	text-align: center;
	font-size: 16px;
	padding: 0;
	box-sizing: border-box;
	background-color: #fff;
}

/* checkbox */
.select-all-section {
	display: flex;
	align-items: center;
	gap: 10px;
}

.checkbox-wrapper,
.radio-wrapper {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.custom-checkbox {
	appearance: none;
	-webkit-appearance: none;
	margin: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #a7a7a7;
	border-radius: 4px;
	background: #fff;
	position: relative;
	flex-shrink: 0;
	cursor: pointer;
}

.checkbox-text {
	margin-left: 6px;
}

.custom-checkbox:checked {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
}

.custom-checkbox:checked::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 6px;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	animation: checkmark-draw 0.1s ease-in-out;
}

@keyframes checkmark-draw {
	0% {
		width: 0;
		height: 5px;
		border-color: transparent;
		transform: rotate(45deg);
	}

	25% {
		width: 0;
		height: 5px;
		border-color: transparent #fff transparent transparent;
		transform: rotate(45deg);
	}

	50% {
		width: 6px;
		height: 5px;
		border-color: transparent #fff #fff transparent;
		transform: rotate(45deg);
	}

	100% {
		width: 6px;
		height: 10px;
		border-color: transparent #fff #fff transparent;
		transform: rotate(45deg);
	}
}

.custom-checkbox:disabled {
	background-color: #f5f5f5;
	border-color: #ccc;
	cursor: not-allowed;
}

.select-all-label {
	margin-left: 8px;
	user-select: none;
}

/* button */
.btn-outline {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	border: 1px solid var(--color-border-gray);
	border-radius: 4px;
	background: #fff;
	color: #000;
	font-size: 13px;
	gap: 8px;
	height: 30px;
	line-height: 30px;
}

.btn-outline img {
	width: 18px;
	height: 18px;
}

.btn-outline.large {
	font-size: 16px;
	padding: 13px 43px;
}

.btn-outline-orange,
.btn-order-review,
.btn-order-readd-all {
	color: var(--color-orange);
	border-color: var(--color-orange);
}

.btn-outline-inquiry {
	color: #fff;
	background-color: var(--color-orange);
	padding: 11px 30px;
	border: 1px solid var(--color-orange);
}

.btn-order-inquiry {
	background: #ffda8a;
	color: #000;
	border-color: #ffda8a;
}

.btn-default {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
	color: white;
	font-weight: 600;
}

.btn-white {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: #000;
	font-weight: 600;
	border: 1px solid var(--color-border-gray);
}

.btn-badge {
	width: 70px;
	height: 22px;
	font-size: 10px;
}

.btn-full {
	height: 35px;
	border: 1px solid #ddd;
	border-left: none;
	background-color: #eee;
	cursor: pointer;
	font-size: 15px;
	padding: 8.5px 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-submit,
.btn-checkout,
.btn-pay {
	width: 100%;
	background-color: var(--color-red);
	color: #fff;
	border: 1px solid #d30000;
	border-radius: 4px;
	padding: 15px;
	font-size: 19px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s;
}

.btn-add-cart {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--color-border-gray);
	border-radius: 4px;
	background: #fff;
	font-size: 16px;
	font-weight: 400;
	height: 45px;
	line-height: 45px;
	width: 180px;
}

.btn-review-write {
	width: 175px;
	height: 50px;
	line-height: 50px;
	padding: 0 35px;
	border: 1px solid var(--color-border-gray);
	border-radius: 4px;
	font-size: 15px;
	white-space: nowrap;
}

.btn-save {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
	color: white;
	font-weight: bold;
	height: 45px;
	line-height: 45px;
	padding: 0 68px;
	font-size: 17px;
	flex: 0 0 auto;
	white-space: nowrap;
}

.helpful-btn {
	align-self: flex-end;
	height: 40px;
	display: flex;
	align-items: center;
	border: 1px solid var(--color-border-gray);
	background: #fff;
	font-size: 13px;
	font-weight: 400;
	padding: 8px 20px;
	border-radius: 4px;
}

.helpful-btn img {
	margin: 0 6px;
	vertical-align: middle;
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 63px;
	height: 22px;
	font-size: 10px;
	border-radius: 4px;
	flex: 0 0 auto;
	white-space: nowrap;
}

.badge-default-address {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
	color: white;
	font-weight: 600;
}

/* 페이지별 스타일 */
.page-header {
	margin-bottom: 24px;
	text-align: center;
}

.page-header h1 {
	font-size: 32px;
	font-weight: 500;
}

.section-divider {
	border: none;
	border-top: 1px solid #d9d9d9;
	margin: 50px 0;
}

/* [common] header.htm */
.header-top-banner {
	text-align: center;
}

.header-top-banner img {
	width: 100%;
	height: auto;
}

.header-topbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 12px 0;
}

.header-topbar a {
	text-decoration: none;
	font-size: 15px;
	margin-left: 20px;
	font-weight: 500;
	color: #777;
}

.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.header-logo img {
	height: 50px;
	width: auto;
}

.search-form {
	flex: 1;
	max-width: 600px;
	margin: 0 40px;
	position: relative;
}

.search-input {
	width: 100%;
	padding: 12px 40px 12px 20px;
	border: 2px solid #1c1b1f;
	border-radius: 100px;
	font-size: 14px;
}

.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.search-input::-ms-clear,
.search-input::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

.search-button {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-button img {
	width: 24px;
	height: 24px;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	position: relative;
}

.header-icons img,
.sub-icon-btn img {
	width: 30px;
	height: 30px;
}

.header-cart {
	position: relative;
}

.header-gnb {
	padding: 20px;
}

.header-gnb-list {
	width: 100%;
	display: flex;
	align-items: center;
	/*justify-content: space-between;*/
	justify-content: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 80px;
}

.category-btn {
	display: flex;
	align-items: center;
	background: none;
	border: none;
	/* font-size: 16px;
	font-weight: 500; */
	font-size: 0;
	color: transparent;
}

.header-gnb-icon {
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

.header-gnb-list li a {
	font-size: 20px;
	font-weight: 500;
	color: #1c1c1c;
	padding-bottom: 6px;
	opacity: 0.8;
}

.header-gnb-list li a {
	position: relative;
	opacity: 1;
	transition: all 0.3s ease;
}

.header-gnb-list li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #222;
	transition: width 0.3s ease;
}

.header-gnb-list li a:hover::after {
	width: 100%;
}



.header-gnb,
.sub-header .header-gnb {
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
}

.sub-header .header-gnb .header-logo img {
	height: 40px;
}

.category-panel[hidden] {
	display: none;
}

.category-panel {
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 20;
	width: 400px;
	background: #fff;
	border: 1px solid #d4d4d4;
}

.sub-header .category-panel {
	top: calc(100% + 8px);
}

.category-panel-inner {
	display: flex;
	align-items: stretch;
}

.category-depth1 {
	flex: 0 0 200px;
	max-height: 600px;
	overflow: auto;
	padding: 25px 0;
	background: #fff;
}

.depth1-item {
	display: block;
	width: 100%;
	text-align: left;
	padding: 16px 30px;
}

.depth1-item:hover,
.depth1-item:focus {
	background: #f3f3f3;
}

.depth1-item.is-active {
	background: #f3f3f3;
	color: var(--color-orange);
	font-weight: 600;
}

.category-depth2-wrap {
	flex: 1 1 auto;
	background: #f3f3f3;
	padding: 25px 0;
	max-height: 600px;
}

.category-depth2 {
	display: none;
}

.category-depth2.is-active {
	display: block;
}

.category-depth2 li {
	padding: 8px 16px;
}

.category-depth2 a {
	display: inline-block;
	width: auto;
	padding: 0 16px;
	height: 32px;
	line-height: 32px;
	text-decoration: none;
	font-size: 16px !important;
	border-radius: 32px;
	white-space: nowrap;
}

.category-depth2 a:hover {
	background-color: #fff;
}

.category-depth2 a:hover:after {
	display: none;
}

.header-gnb-list>li {
	position: relative;
}

.sub-header .search-form {
	position: relative
}

.suggest-list {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
	padding: 8px 0;
	max-height: 300px;
	overflow: auto;
	z-index: 30;
}

.suggest-list .suggest-item {
	padding: 10px 18px;
	cursor: pointer;
	display: block;
	white-space: nowrap;
	font-size: 15px;
}

.suggest-list .suggest-item:hover,
.suggest-list .suggest-item.is-active {
	background: #f6f6f6
}

.suggest-list .suggest-item .highlight {
	font-weight: 700
}

/* [common] sub-header.htm */
.sub-header {
	background-color: #fff;
	border-bottom: 1px solid var(--color-border-gray);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 3;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sub-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.sub-header-left {
	display: flex;
	align-items: center;
	gap: 30px;
	flex: 0 0 auto;
}

.hamburger-btn {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hamburger-icon {
	font-size: 16px;
	margin-right: 6px;
}

.hamburger-text {
	font-size: 15px;
	font-weight: 500;
}

.sub-header-nav-list {
	display: flex;
	gap: 30px;
}

.sub-header-nav-list a {
	font-size: 15px;
	font-weight: 500;
	padding: 8px 0;
	position: relative;
}

.sub-header-center {
	flex: 1;
	max-width: 400px;
	margin: 0 20px;
}

.sub-search-form {
	position: relative;
	width: 100%;
}

.sub-search-input {
	width: 100%;
	padding: 10px 40px 10px 15px;
	border: 2px solid #000;
	border-radius: 16px;
	font-size: 15px;
}

.sub-header-right {
	flex: 0 0 auto;
}

.sub-header-icons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sub-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	transition: background-color 0.3s ease;
	position: relative;
	text-decoration: none;
	color: #666;
}

.cart-btn {
	position: relative;
}

.cart-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	background-color: var(--color-red);
	color: white;
	border-radius: 50%;
	min-width: 18px;
	height: 18px;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* [common] footer.htm */
.site-footer {
	border-top: 1px solid var(--color-border-gray);
	padding: 20px 0 40px;
	font-size: 14px;
	margin-top: 100px;
	color: #222;
}

.site-footer .footer-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-top-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 48px;
}

.footer-top-links a {
	color: var(--text-gray);
	text-decoration: none;
}

.footer-top-links a:not(:last-child)::after {
	content: "|";
	display: inline-block;
	margin-left: 24px;
	color: #cfcfcf;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.footer-title {
	margin-bottom: 12px;
	font-weight: 500;
	font-size: 22px;
}

.footer-col section+section {
	margin-top: 34px;
}

.footer-tel {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 10px;
}

.footer-tel a {
	color: inherit;
	text-decoration: none;
}

.footer-time {
	color: var(--text-gray);
	line-height: 1.8;
}

.footer-notice-list {
	color: var(--text-gray);
	list-style: disc;
	padding-left: 20px;
	line-height: 1.8;
	margin-top: 4px;
}

.footer-about-links {
	display: flex;
	gap: 24px;
}

.footer-about-links a {
	text-decoration: underline;
	color: var(--text-gray);
}

.footer-about-links a:hover {
	text-decoration: underline;
}

.company-dl {
	display: grid;
	grid-template-columns: 130px 1fr;
	row-gap: 10px;
	column-gap: 12px;
	color: var(--text-gray);
	margin: 0 0 16px;
}

.company-dl dt {
	color: #555;
}

.company-dl dd {
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin: 24px 0
}

.footer-socials img {
	width: 36px;
	height: 36px;
	display: block;
}

.footer-inquiry-group {
	display: flex;
	width: 170px;
}

.btn-advertisement {
	width: 100%;
	text-align: center;
	padding: 0 16px;
	text-decoration: none;
	border: 1px solid var(--color-border-gray);
	border-radius: 8px;
	height: 40px;
	line-height: 40px;
	color: inherit;
}

.footer-copyright {
	text-align: center;
	margin-top: 28px;
	font-size: 12px;
	color: var(--text-gray);
}

/* [common] top_surab.htm  */
#sidebar .sidebar {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 115px;
	z-index: 40;
}

#sidebar .sidebar-panel {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 0 8px;
	height: 345px;
	display: flex;
	flex-direction: column;
}

#sidebar .sidebar-title {
	font-size: 14px;
	margin: 0 0 10px;
	text-align: center;
}

#sidebar .sidebar-list {
	height: 244px;
	overflow: hidden;
}

#sidebar .swiper {
	overflow: hidden;
}

#sidebar .sidebar-swiper {
	height: 100%;
}

#sidebar .sidebar-swiper .swiper-wrapper {
	align-items: center;
}

#sidebar .sidebar-swiper .swiper-slide {
	width: 73px !important;
	height: 78px !important;
	flex-shrink: 0;
	display: block;
}

#sidebar .thumb {
	display: block;
	width: 100%;
	height: 100%;
}

#sidebar .thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#sidebar .chev {
	margin: 0 auto;
	cursor: pointer;
}

#sidebar .chev img {
	width: 24px;
	height: 24px;
}

#sidebar .chev.up {
	margin-bottom: 10px;
}

#sidebar .chev.down {
	margin-top: 10px;
}


#sidebar .sidebar-cta {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
}

#sidebar .sidebar-cta .sidebar-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid #e5e7eb;
	background: #fff;
	font-size: 14px;
	height: 42px;
}

#sidebar .sidebar-cta .sidebar-btn+.sidebar-btn {
	border-top: 0;
}

#sidebar .sidebar-cta .sidebar-btn:first-child {
	border-radius: 8px 8px 0 0;
}

#sidebar .sidebar-cta .sidebar-btn:last-child {
	border-radius: 8px 8px 8px 8px;
}

/* [components] product-card */
.product-card {
	overflow: hidden;
	width: 100%;
}

.product-card-image {
	width: 280px;
	height: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0.9;
}

.product-card-actions {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 8px;
	display: flex;
	justify-content: space-between;
}

.product-card-icon,
.cart-icon {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 36px;
	pointer-events: auto;
	padding: 4px 8px;
	height: 36px;
	min-width: 36px;
}


.product-card-icon i,
.cart-icon i {
	font-size: 18px;
	color: var(--primary);
}

.product-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.heart-icon img,
.cart-icon img {
	width: 20px;
	height: 20px;
	display: block;
}

.heart-count {
	/* color: var(--color-red); */
	color: #222;
	font-size: 13px;
	padding-left: 4px;
}

.heart-count:empty {
	padding-left: 0;
}

.cart-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.product-card-info {
	padding: 15px 0;
}

.product-tags {
	display: flex;
	gap: 4px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.tag {
	padding: 3px 7px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 16px;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
}

.tag.free {
	border-color: #285aff;
	color: #285aff;
}

.tag.freedelivery {
	border-color: #8800ff;
	color: #8800ff;
}

.tag.timesale {
	border-color: #1b8b34;
	color: #1b8b34;
}

.tag.specialsale {
	border-color: #ff8000;
	color: #ff8000;
}

.product-card-name {
	font-size: 19px;
	font-weight: 400;
	text-align: left;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 8px;
	cursor: pointer;
}

.product-card-pricing {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.original-price {
	color: var(--text-light-gray);
	text-decoration: line-through;
	font-size: 12px;
}

.discount {
	color: var(--color-red);
	font-size: 16px;
}

.price {
	font-size: 20px;
	font-weight: 700;
}

.product-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.star-wrap {
	display: flex;
	align-items: center;
}

.star-wrap img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: block;
}

.reviews {
	color: var(--text-light-gray);
	font-size: 13px;
}

.product-card-point {
	font-size: 12px;
	color: var(--text-light-gray);
}

.product-card-point span {
	color: var(--color-orange);
}

.product-list-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
}

.product-item {
	display: block;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 47px;
}

.section-title {
	font-size: 30px;
	font-weight: 600;
	cursor: pointer;
	color: #222;
}

.product-section {
	margin-bottom: 50px;
}

/* 장바구니, 결제 페이지 */
.summary-box {
	padding: 34px;
	margin-bottom: 20px;
	background-color: var(--color-box-gray);
}

.summary-title {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 24px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.summary-label {
	font-size: 15px;
	color: var(--text-gray);
}

.summary-value {
	font-size: 17px;
	font-weight: 500;
}

.summary-total {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	margin-top: 30px;
	gap: 10px;
}

.summary-total-label {
	font-size: 17px;
}

.summary-total-value {
	font-size: 26px;
	font-weight: 700;
}

.text-highlight-orange {
	color: var(--color-orange);
}

.text-highlight-red {
	color: var(--color-red);
}

.form-group {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	white-space: nowrap;
}

.form-group label {
	font-size: 17px;
	min-width: 130px;
	width: 130px;
	font-weight: 500;
	line-height: 40px;
}

.form-group input {
	font-size: 15px;
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	height: 35px;
	box-sizing: border-box;
}

.addr-grid,
.request-combo {
	width: 100%;
	display: grid;
	gap: 8px;
}

.zip-row {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 190px;
}

.btn-zipcode {
	width: 190px;
	background-color: #5e5e5e1a;
	border: 1px solid #d9d9d9;
	border-left: none;
	font-size: 12px;
	color: #5e5e5e;
}

.input-select {
	width: 100%;
	padding: 8px 40px 8px 12px;
	border: 1px solid #d9d9d9;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a7a7a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 20px;
	height: 35px;
}

.input-description {
	font-size: 13px;
	font-weight: 400;
	color: #858585;
	margin-left: 10px;
}

input[type="radio"].custom-radio {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--color-border-gray);
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	background-color: #fff;
	transition: border-color 0.3s;
	padding: 0;
	margin: 0;
}

input[type="radio"].custom-radio:checked {
	border-color: var(--color-orange);
}

input[type="radio"].custom-radio:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background-color: var(--color-orange);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.notice-section {
	padding: 20px 0px;
	text-align: start;
}

.notice-text {
	font-size: 14px;
	line-height: 1.4;
	color: var(--text-gray);
}

.notice-link {
	text-decoration: underline;
}

.notice-link:hover {
	text-decoration: underline;
}

/* 주문 목록, 주문 상세, 주문 완료 페이지 */
.order-header-date {
	font-size: 24px;
	font-weight: 700;
}

.order-header-info {
	display: flex;
	align-items: center;
	gap: 5px;
}

.order-header-number {
	font-size: 17px;
	font-weight: 500;
	color: var(--text-light-gray);
}

.order-header-copy-icon {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.order-header-copy-icon img {
	width: 20px;
	height: 20px;
}

.order-header-total {
	font-size: 17px;
}

.order-header-total-amount {
	font-weight: 700;
	margin-right: 10px;
}

.order-header-detail {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 16px;
}

.order-card {
	border: 1px solid #d7d7d7;
	border-radius: 4px;
	overflow: hidden;
	padding: 47px;
	margin-bottom: 50px;
}

.order-card-container {
	display: grid;
	grid-template-columns: 1fr 200px;
	column-gap: 90px;
}

.order-card-items {
	flex: 1;
	min-width: 0;
}

.order-status {
	width: 100%;
	max-width: 380px;
	text-align: center;
	padding: 14px 44px;
	font-size: 15px;
	border-radius: 999px;
	margin-bottom: 30px;
	white-space: nowrap;
	font-weight: bold;
}

.order-status.shipping {
	background-color: var(--color-orange);
	color: #fff;
}

.order-status.delivered {
	background-color: #858585;
	color: #fff;
}

.order-status.paid,
.order-status.preparing {
	border: 1px solid var(--color-orange);
	color: var(--color-orange);
}

.order-card-header {
	width: 300px;
	text-align: center;
	background-color: var(--color-orange);
	color: #fff;
	padding: 14px 44px;
	font-size: 15px;
	border-radius: 999px;
	margin-bottom: 30px;
	white-space: nowrap;
}

.order-card-gray {
	background-color: #858585 !important;
}

.order-card-product {
	display: flex;
	justify-content: space-between;
	align-items: start;
	padding: 15px 0;
}

.order-card-product-details {
	display: flex;
	align-items: start;
}

.order-card-product-image {
	width: 100px;
	height: 100px;
	margin-right: 33px;
}

.order-card-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.order-card-product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}


.order-card-product-info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 6px;
	text-align: center;
}

.order-card-orderid {
	font-size: 17px;
	color: #5e5e5e;
}

.order-card-product-name {
	font-size: 17px;
}

.order-card-product-option {
	color: #5e5e5e
}

.order-card-product-price {
	font-size: 17px;
}

.order-card-product-quantity {
	color: #5e5e5e;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

.order-card-actions {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 20px;
	grid-column: 2;
}

.order-card-actions-horizontal {
	flex-direction: row;
	gap: 20px;
	margin-left: auto;
}

.order-card-actions button {
	width: 200px;
	height: 50px;
	font-size: 17px;
	line-height: 1;
	white-space: nowrap;
}

.order-card-close-icon {
	display: flex;
	align-items: center;
}

.orderlist-search {
	display: flex;
	justify-content: center;
	position: relative;
	margin-bottom: 60px;
}

.orderview-section {
	margin-bottom: 20px;
	padding: 45px;
	background-color: var(--color-box-gray);
	border-radius: 8px;
}

.orderview-section-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.orderview-info-row {
	display: flex;
	margin-bottom: 16px;
}

.orderview-info-row:last-child {
	margin-bottom: 0;
}

.orderview-info-label {
	width: 120px;
	color: var(--text-gray);
	font-size: 17px;
	font-weight: 700;
}

.orderview-info-value {
	flex: 1;
	color: var(--text-gray);
	font-size: 17px;
}

.orderview-payment-container {
	display: flex;
	justify-content: space-between;
}

.orderview-payment-box {
	width: 500px;
	padding: 30px;
	background-color: var(--color-box-gray);
	border-radius: 8px;
}

.orderview-payment-actions {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.orderview-payment-actions button {
	width: 200px;
	height: 50px;
	font-size: 17px;
	line-height: 1;
}

.orderview-payment-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 17px;
	table-layout: fixed;
}

.orderview-payment-table th,
.orderview-payment-table td {
	font-size: 17px;
	vertical-align: middle;
	padding: 0;
}

.orderview-payment-table th.orderview-payment-label {
	width: 120px;
	font-weight: 500;
	text-align: left;
	white-space: nowrap;
}

.orderview-payment-table td.orderview-payment-value {
	text-align: right;
	font-weight: 500;
}

.text-discount {
	color: #ff0000;
}

.orderview-payment-total-label {
	font-weight: 500;
	text-align: left;
	/* display: inline-flex; */
	/* align-items: center; */
}

.orderview-payment-total-value {
	font-size: 24px;
	font-weight: 700;
	text-align: right;
}

.orderview-payment-total-value strong {
	font-size: 21px;
}

.orderview-payment-method-row {
	display: flex;
	justify-content: space-between;
}

.orderview-payment-method-row .orderview-payment-label {
	font-size: 17px;
	font-weight: 500;
}

.orderview-payment-method-row .orderview-payment-value {
	font-size: 17px;
	font-weight: 500;
}

.orderview-notice-list {
	padding: 0 20px;
	list-style-type: disc;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.orderview-notice-item {
	font-size: 17px;
	color: var(--text-gray);
}

.orderview-payment-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.orderview-payment-total {
	display: flex;
	justify-content: space-between;
	margin: 30px 0 20px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border-gray);
}

.orderview-payment-method {
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
	border-top: 1px solid var(--color-border-gray);
}

/* 회원 결제 페이지, 비회원 결제 페이지 */
.order-header {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.order-content {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.order-product-info-section {
	font-size: 17px;
	margin-bottom: 30px;
	text-align: start;
	background-color: #fafafa;
	padding: 40px;
	border-radius: 4px;
}

.order-product-info-section h2 {
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 27px;
}

.order-form-container {
	border: 1px solid var(--color-border-gray);
	border-radius: 4px;
	width: 680px;
}

.order-section {
	padding: 48px;
}

.order-section h2 {
	font-size: 19px;
	font-weight: bold;
}

.order-section+.order-section:not(.no-line) {
	border-top: 1px solid #eaeaea;
	/*margin-top: 20px;*/
}

.order-email-info {
	margin-left: 130px;
	margin-top: 12px;
	margin-bottom: 15px;
	font-size: 13px;
	color: #858585;
}

.order-checkbox-area {
	width: 100%;
	background-color: #f1f1f1;
	padding: 20px;
	margin-top: 15px;
}

.order-checkbox-item {
	margin-bottom: 10px;
}

.order-checkbox-item:last-child {
	margin-bottom: 0;
}

.order-checkbox-item label {
	font-size: 13px;
}

.order-section-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.order-address-group {
	display: flex;
	align-items: center;
	gap: 13px;
}

.order-home-text {
	font-size: 17px;
	font-weight: bold;
}

.order-payment-easy,
.order-payment-regular {
	margin-top: 16px;
	border-radius: 8px;
	background: #fff;
	margin-bottom: 15px;
}

.radio-label {
	display: flex;
	align-items: center;
	font-size: 16px;
}

.order-easy-radio,
.order-regular-radio {
	gap: 14px;
	margin-bottom: 16px;
	font-weight: bold;
}

.order-easy-box {
	display: flex;
}

.order-easy-card {
	width: 281px;
	height: 157px;
	border: 1px solid #d9d9d9;
	margin-left: 25px;
	padding: 36px;
	font-size: 13px;
	border-radius: 8px;
	text-align: start;
}

.order-card-display {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.order-payment-tabs {
	display: flex;
	/* width: 400px; */
	height: 48px;
	margin: 0 0 24px 28px;
	padding: 0;
	list-style: none;
	border: 1px solid #d9d9d9;
	background-color: #fff;
	overflow: visible;
}

.order-payment-tabs>li {
	flex: 1;
}

.order-tab {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	background-color: #fff;
	border: none;
	cursor: pointer;
}

.order-payment-tabs>li+li .order-tab {
	border-left: 1px solid #d9d9d9;
}

.order-card-input-wrapper {
	width: 100%;
	margin-left: 28px;
}

.order-tab.active {
	background-color: var(--color-orange);
	color: #fff;
	font-weight: 700;
	position: relative;
}

.order-tab.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid var(--color-orange);
}

.deposit-remaining,
.points-remaining {
	margin-left: 18px;
	color: var(--color-orange);
	font-size: 15px;
}

.deposit-input,
.points-input {
	width: 195px !important;
}

.order-easy-title {
	font-size: 15px;
	margin-bottom: 30px;
}

.order-easy-desc {
	display: flex;
	justify-content: center;
	font-size: 13px;
	color: #5e5e5e;
}

.order-agreement {
	margin: 20px 0;
	display: flex;
	justify-content: flex-start;
	font-size: 17px;
	color: #221e1f;
}

.order-summary {
	position: sticky;
	top: 140px;
	overflow-y: auto;
	max-height: calc(100vh);
	width: 480px;
	border-radius: 4px;
}

/* 상품 리스트 페이지 */
.listpage-layout {
	/* display: grid;
	grid-template-columns: 260px 1fr; */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.listpage-content {
	min-width: 0;
}

.listpage-sidebar {
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background: #fff;
	padding: 36px 26px;
	box-sizing: border-box;
	position: sticky;
	top: 120px;
	align-self: start;
}

.listpage-sidebar>*+* {
	margin-top: 16px;
}

.listpage-sidebar>form>.checkbox-wrapper {
	gap: 4px;
	margin-bottom: 20px;
}

.filter-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}

.filter-sidebar form {
	border: 1px solid #e3e5e8;
	border-radius: 4px;
	padding: 20px;
}

.filter-group {
	margin-bottom: 30px;
	border: 0;
	padding: 0;
}

.filter-group legend {
	margin-bottom: 20px;
}

.filter-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.filter-actions {
	margin-top: 16px;
	display: flex;
	gap: 8px;
	align-items: center;
}

.btn-reset {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #e3e5e8;
	background: #fff;
	border-radius: 6px;
	height: 40px;
	padding: 0 12px;
}

.btn-primary {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	padding: 0 16px;
	border: 0;
	border-radius: 6px;
	background: var(--color-orange);
	color: #fff;
}

.listpage .product-card-image {
	height: 300px;
}

.listpage-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: #fafafa;
	padding: 6px 20px;
	width: 1200px;
}

.result-count {
	font-size: 18px;
}

.sort-tab {
	display: flex;
	align-items: center;
}

.sort-tab li {
	position: relative;
	padding: 0 10px;
}

.sort-tab li+li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background: #5e5e5e;
}

.tab-btn {
	padding: 8px 10px;
	font-size: 15px;
	background-color: inherit;
}

.tab-btn.is-active {
	color: var(--color-orange);
	font-weight: 700;
}

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

.listpage-tab-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: none;
	margin-bottom: 50px;
}

.listpage-tab-nav .tab-btn {
	width: 100%;
	height: 48px;
	background: #fff;
	border: 1px solid #e3e5e8;
	font-size: 16px;
}

.listpage-tab-nav li:first-child .tab-btn {
	border-right: none;
}

.listpage-tab-nav .tab-btn.is-active {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: #fff;
}

.filter-footer {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #e6e6e6;
}

.filter-reset {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	font-size: 16px;
	color: #222;
	cursor: pointer;
}

.filter-reset .icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.filter-cta {
	margin-top: 12px;
	width: 100%;
	height: 43px;
	border: 0;
	border-radius: 4px;
	background: var(--color-orange);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
}

#priceFilterBody.is-disabled {
	opacity: .5;
	pointer-events: none;
}

.listpage input.custom-radio:disabled {
	border-color: #ddd;
	background: #f5f5f5;
	cursor: not-allowed;
}

input.custom-radio:disabled::after {
	display: none;
}

/* 마이페이지 */
.mypage-layout {
	display: flex;
	gap: 70px;
}

.mypage-content {
	flex: 1;
	min-width: 0;
}

.mypage-title {
	font-size: 26px;
	font-weight: 600;
	margin: 50px 0 30px 0;
}

/* 마켓소개, 이용안내, 입점안내 페이지 */
.doc-page {
	padding-top: 160px !important;
}

.doc-page .page-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e9e9e9;
	margin-bottom: 32px;
}

.breadcrumb ol {
	display: flex;
	gap: 8px;
	font-size: 12px;
	color: #8b8b8b;
}

.breadcrumb li+li::before {
	content: "›";
	margin: 0 6px;
	color: #c8c8c8;
}

.breadcrumb a {
	color: inherit;
}

.doc-article {
	max-width: 880px;
	margin: 0 auto;
}

.doc-lead h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 8px 0 18px;
}

.doc-section {
	margin-top: 28px;
}

.doc-section h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.doc-section p {
	line-height: 1.9;
	color: #333;
}

.doc-section p strong {
	font-weight: 700;
}

.doc-cta {
	margin-top: 24px;
}

.doc-contact {
	margin-top: 20px;
	line-height: 1.8;
	color: #555;
}

/* 탭 */
.activity-nav {
	position: relative;
	display: flex;
	justify-content: space-evenly;
	gap: 60px;
	border: 0;
	border-bottom: 2px solid var(--color-border-gray);
	list-style: none;
}

.activity-nav .tab-nav,
.activity-nav .link-nav,
.activity-nav .inquiry-nav,
.activity-nav .review-nav {
	display: flex;
	gap: 60px;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0;
}

.cs-nav {
	gap: 120px !important;
}

.tab-nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid var(--color-border-gray);
	list-style: none;
	margin-bottom: 16px;
}

.tab-item,
.link-item {
	font-size: 17px;
	font-weight: 400;
	background: none;
	border: none;
	padding-bottom: 12px;
	cursor: pointer;
	position: relative;
	transition: color 0.2s;
}

.tab-item.is-active,
.link-btn.as-tab.is-current {
	font-weight: 700;
}

.tab-item.is-active .tab-count,
.link-btn.as-tab.is-current .tab-count {
	font-weight: 700;
	color: #ff0000;
}

.tab-item.is-active::after,
.link-btn.as-tab.is-current::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: -12%;
	width: 120%;
	height: 2px;
	background-color: #000;
}

.tab-count {
	margin-left: 8px;
	font-size: 17px;
	font-weight: 500;
	color: #858585;
}

.filter-list {
	display: flex;
	gap: 0;
	margin-bottom: 50px;
}

.filter-item {
	width: 100%;
	height: 50px;
	line-height: 50px;
	border: 0;
	background: none;
	font-size: 17px;
}

.filter-list-segmented {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid #e5e5e5;
}

/* 오늘 단하루 특가 카운트다운 */
.today-special-countdown {
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	padding: 30px;
	margin: 20px 0;
	border-radius: 20px;
	text-align: center;
	color: white;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
	position: relative;
	overflow: hidden;
}

.today-special-countdown::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="18" cy="18" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="15" r="0.8" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>') repeat;
	pointer-events: none;
}

.countdown-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.countdown-icon {
	font-size: 28px;
	color: #ffd700;
	animation: flash 2s ease-in-out infinite;
}

.countdown-title {
	font-size: 28px;
	font-weight: 800;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.countdown-fire {
	font-size: 24px;
	color: #ff4757;
	animation: bounce 1.5s ease-in-out infinite;
}

.countdown-timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.countdown-time-icon {
	font-size: 18px;
	margin-bottom: 5px;
	opacity: 0.9;
}

.countdown-number {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 15px 20px;
	font-size: 36px;
	font-weight: 900;
	min-width: 80px;
	margin-bottom: 8px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.countdown-number:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.3);
}

.countdown-label {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.countdown-separator {
	font-size: 32px;
	font-weight: 900;
	opacity: 0.8;
	animation: blink 1s ease-in-out infinite;
}

.countdown-message {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

.countdown-message i {
	font-size: 18px;
	animation: swing 2s ease-in-out infinite;
}

@keyframes flash {

	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0.3;
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-8px);
	}

	60% {
		transform: translateY(-4px);
	}
}

@keyframes blink {

	0%,
	50% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0.3;
	}
}

@keyframes swing {

	0%,
	100% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(5deg);
	}

	75% {
		transform: rotate(-5deg);
	}
}

@media (max-width: 768px) {
	.today-special-countdown {
		padding: 20px;
		margin: 15px 0;
	}

	.countdown-title {
		font-size: 22px;
	}

	.countdown-timer {
		gap: 15px;
	}

	.countdown-number {
		font-size: 28px;
		padding: 12px 16px;
		min-width: 65px;
	}

	.countdown-message {
		font-size: 14px;
	}
}

.filter-list-cols-2 {
	grid-template-columns: 1fr 1fr;
}

.filter-list-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.filter-list-cols-7 {
	grid-template-columns: 1.8fr repeat(6, 1fr);
}

.filter-list-segmented .filter-item {
	border-right: 1px solid #d7d7d7;
}

.filter-list-segmented li:last-child .filter-item {
	border-right: none;
}

.filter-list-segmented .filter-item.is-active {
	background: #ff7a00;
	color: #fff;
	font-weight: 700;
}

/* 마이페이지 예치금/적립금 상단 요약 */
.deposit-summary,
.point-summary {
	background-color: #fafafa;
	border-radius: 8px;
	margin-bottom: 40px;
}

.deposit-summary-info,
.point-summary-info {
	padding: 45px 38px;
}

.deposit-summary-text,
.point-summary-text {
	font-size: 17px;
	font-weight: 400;
	margin-bottom: 15px;
}

.deposit-summary-text .highlight,
.point-summary-text .highlight {
	font-size: 19px;
	font-weight: 700;
}

.deposit-sub-text {
	font-size: 16px;
	color: var(--text-light-gray);
}

.deposit-summary-stats,
.point-summary-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 27px 40px;
	border-top: 1px solid #e9e9e9;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 70px;
}

.deposit-stat-item,
.point-stat-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.deposit-stat-item strong,
.point-stat-item strong {
	font-weight: 600;
	font-size: 26px;
	margin-left: 5px;
	margin-right: 5px;
}

.deposit-stat-item.with-divider {
	position: relative;
}

.deposit-stat-item.with-divider::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: #ddd;
}

.deposit-title {
	font-size: 18px;
	font-weight: 400;
	color: #333;
}

.deposit-amount {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-orange);
}

.deposit-list,
.point-list {
	display: flex;
	flex-direction: column;
}

.deposit-item,
.point-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e9e9e9;
	padding: 32px 0;
	gap: 30px;
}

.deposit-details,
.point-details {
	display: flex;
	align-items: center;
	gap: 30px;
	flex: 1;
	min-width: 0;
}

.deposit-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	min-width: 120px;
}

.deposit-btn-refunded {
	background: #eee;
	color: #5e5e5e;
	font-size: 12px;
}

.deposit-btn-requested {
	background: #ffda8a80;
	border: 1px solid #f9c454;
	color: #5e5e5e;
	font-size: 12px;
}

.deposit-badge,
.point-badge {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid #ddd;
	border-radius: 30px;
	padding: 8px 16px;
	height: 35px;
	width: 60px;
	box-sizing: border-box;
}

.deposit-badge.deposit,
.point-badge.point {
	background-color: #fff6ec;
	color: #ff8000;
	border-color: #ff8000;
}

.deposit-badge.use,
.point-badge.use {
	background-color: #f4f4f4;
	color: #5e5e5e;
	border-color: #a7a7a7;
}

.deposit-info,
.point-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.deposit-desc,
.point-desc {
	font-size: 17px;
	font-weight: 500;
	color: #222;
	line-height: 1.4;
}

.deposit-date,
.point-date {
	font-size: 15px;
	color: #858585;
}

.deposit-item-amount,
.point-item-amount {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 500;
	color: #5e5e5e;
	white-space: nowrap;
	flex-shrink: 0;
}

.deposit-item-amount .status,
.point-item-amount .status {
	font-size: 12px;
	padding: 0 16px;
	border-radius: 4px;
	height: 30px;
	line-height: 30px;
}

.status.refund-pending {
	background-color: #ffda8a80;
	border: 1px solid #f9c454;
}

.status.refund-completed {
	background-color: #f0f0f0;
	border: 1px solid #b5b5b5;
}

.deposit-status {
	margin-left: auto;
}

.empty-text {
	text-align: center;
	padding: 80px 0;
	font-size: 22px;
	font-weight: 600;
}

/* 쿠폰 */
.mycoupon-item {
	background: linear-gradient(to right, #FFF3DA, #FFE3C7);
	border-radius: 8px;
	padding: 40px 50px;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	font-weight: 400;
}

.mycoupon-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.mycoupon-discount {
	font-size: 28px;
	font-weight: 700;
}

.mycoupon-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
}

.mycoupon-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 17px;
}

.mycoupon-footer-info {
	display: flex;
	align-items: center;
	line-height: 1;
	gap: 20px;
}

.mycoupon-period {
	color: #858585;
}

.mycoupon-expire {
	color: var(--color-orange);
}

.mycoupon-apply-link {
	text-decoration: underline;
	font-size: 17px;
}

/* [component] mypage-summary.htm */
.mypage-greeting {
	display: flex;
	justify-content: center;
	gap: 15px;
	align-items: center;
	padding-bottom: 40px;
}

.mypage-greeting-text {
	font-size: 27px;
	font-weight: 500;
	margin: 0;
}

.member-name {
	font-size: 30px;
	font-weight: 600;
}

.mypage-edit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	font-size: 16px;
	height: 46px;
	line-height: 46px;
}

.mypage-summary-box {
	display: flex;
	justify-content: space-between;
	background: var(--color-box-gray);
	border-radius: 4px;
	padding: 40px 200px;
	margin-bottom: 20px;
}

.mypage-summary-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 14px;
	color: #333;
}

.mypage-summary-title {
	margin-bottom: 6px;
	font-size: 16px;
	font-weight: 400;
	align-self: flex-start;
}

.mypage-summary-value {
	font-size: 26px;
	font-weight: 600;
	display: inline;
	margin-right: 4px;
}

.mypage-summary-value.highlight {
	color: var(--color-orange);
}

.mypage-summary-unit {
	font-size: 15px;
}

/* [common] sidebar.htm */
.mypage-sidebar {
	width: 380px;
	padding: 52px 42px 6px 42px;
	border: 1px solid var(--color-border-gray);
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
	font-family: "Noto Sans KR", sans-serif;
}

.mypage-sidebar-list {
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 46px;
}

.mypage-sidebar-item a {
	display: flex;
	align-items: center;
	gap: 19px;
	font-size: 15px;
	text-decoration: none;
	position: relative;
}

.mypage-sidebar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mypage-sidebar-icon img {
	width: 60px;
	height: 60px;
}

.mypage-sidebar-text {
	flex: 1;
	font-size: 18px;
	font-weight: 500;
}

.mypage-sidebar-count {
	font-weight: 700;
	font-size: 22px;
}

.mypage-sidebar-section {
	border-top: 1px solid var(--color-border-gray);
	padding: 46px 0;
}

.mypage-sidebar-section-title {
	font-size: 17px;
	font-weight: 500;
	color: #a7a7a7;
	margin-bottom: 22px;
}

.mypage-sidebar-sublist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mypage-sidebar-sublist li {
	margin-bottom: 22px;
}

.mypage-sidebar-sublist li:last-child {
	margin-bottom: 0;
}

.mypage-sidebar-sublist a {
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
}

/* 작성한 후기*/
.review-item {
	padding: 40px 0;
	border-bottom: 1px solid var(--color-border-gray);
	background-color: #fff;
}

.review-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.review-rating {
	display: flex;
}

.review-gallery {
	display: flex;
	gap: 10px;
	width: 96px;
	height: 96px;
	margin-bottom: 32px;
}

.review-gallery img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	object-fit: cover;
}

.review-body {
	margin-bottom: 40px;
	font-size: 16px;
}

.review-body p {
	line-height: 1.6;
}

.review-footer {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 10px;
}

.btn-review-helpful,
.btn-review-edit,
.btn-review-delete {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border: 1px solid var(--color-border-gray);
	background-color: #fff;
	font-size: 13px;
	border-radius: 4px;
	transition: background 0.2s;
	height: 40px;
	line-height: 40px;
}

.btn-review-delete img {
	width: 15px;
	height: 15px;
}

.btn-review-helpful span {
	color: var(--color-red);
}

.btn-review-writable {
	display: flex;
	align-items: center;
	margin-left: auto;
	padding: 0;
	margin-top: 30px;
}

.btn-review-writable span {
	color: #858585;
	font-size: 15px;
}

/* [component] review-writable-list.htm */
.review-writable-list {
	display: flex;
	flex-direction: column;
}

.review-writable-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e9e9e9;
	padding: 32px 0;
}

.review-product-info {
	display: flex;
	gap: 30px;
	flex: 1;
	min-width: 0;
}

.review-product-thumbnail {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
}

.review-product-thumbnail img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
}

.review-product-texts {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.review-product-name {
	font-size: 20px;
}

.review-product-details {
	font-size: 16px;
	color: var(--text-gray);
}

.review-action {
	margin-left: 30px;
}

/* 공지사항, FAQ, 입점광고문의 페이지 */
.notice-list {
	display: flex;
	flex-direction: column;
}

.notice-item {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 30px 0;
	border-bottom: 1px solid #e9e9e9;
	cursor: pointer;
}

.notice-item-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	cursor: pointer;
}

.notice-badge {
	font-size: 12px;
	font-weight: 500;
	color: var(--color-red);
	border: 1px solid var(--color-red);
	padding: 0 8px;
	border-radius: 4px;
	margin-bottom: 0;
	height: 24px;
	line-height: 24px;
}

.notice-item-title {
	font-size: 17px;
	font-weight: 500;
}

.notice-item-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #858585;
}

.notice-icon {
	display: inline-flex;
	align-items: center;
}

.notice-icon img {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-right: 3px;
}

.toggle-arrow-btn,
.board-toggle-btn {
	position: absolute;
	right: 0;
	top: 36px;
	transform: none;
	background: none;
	border: none;
}

.toggle-arrow-btn img {
	transition: transform 0.3s ease;
}

.toggle-item.is-open .toggle-arrow-btn img {
	transform: rotate(180deg);
}

.notice-content {
	display: none;
	background-color: #f5f5f5;
	margin-top: 20px;
	padding: 32px 30px;
	font-size: 15px;
	line-height: 1.5;
	border-radius: 2px;
}

.notice-item.is-open .notice-content {
	display: block;
}

/* 문의 목록 */
.board-list {
	display: flex;
	flex-direction: column;
}

.board-item {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 30px 0;
	border-bottom: 1px solid #e9e9e9;
}

.board-header {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	cursor: pointer;
	padding-right: 40px;
}

.board-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #858585;
}

.board-badge {
	flex: 0 0 auto;
	white-space: nowrap;
	font-size: 12px;
	font-weight: 500;
	padding: 0 8px;
	border-radius: 4px;
	margin-bottom: 0;
	border: 1px solid;
	display: inline-block;
	width: auto;
	height: 24px;
	line-height: 24px;
}

.board-badge[data-status="답변완료"],
.board-badge[data-status="공지"] {
	color: var(--color-red);
	border-color: var(--color-red);
}

.board-badge[data-status="답변"] {
	color: var(--color-orange);
	border-color: var(--color-orange);
}

.board-badge[data-status="신규등록"] {
	color: #28a745;
	border-color: #28a745;
}

.board-title {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.board-item.is-open .board-title {
	display: block;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
	-webkit-line-clamp: unset;
	overflow-wrap: anywhere;
}

.board-content {
	display: none;
	margin-top: 20px;
}

.board-icon {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.board-toggle-btn {
	position: absolute;
	right: 0;
	top: 36px;
	transform: none;
	background: none;
	border: none;
}

.board-toggle-btn img {
	transition: transform 0.3s ease;
}

.toggle-item.is-open .board-toggle-btn img {
	transform: rotate(180deg);
}

.notice-content {
	background-color: #f5f5f5;
	padding: 32px 30px;
	font-size: 15px;
	line-height: 1.6;
	border-radius: 2px;
}

.board-item.is-open .board-content {
	display: block;
}

.board-question {
	background-color: #f5f5f5;
	padding: 32px 30px;
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.6;
	border-radius: 2px;
}

.board-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	justify-content: flex-end;
}

.btn-inquiry-edit,
.btn-inquiry-delete {
	padding: 0 12px;
	height: 30px;
	line-height: 30px;
}

.board-answer {
	padding: 20px;
}

.answer-header {
	margin-bottom: 15px;
}

.answer-header {
	display: inline-block;
	width: auto;
}

.answer-content {
	font-size: 14px;
	line-height: 1.6;
}

.board-footer {
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
}

.btn-board-submit,
.btn-board-write {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 45px;
	padding: 0 24px;
	font-size: 17px;
	font-weight: bold;
	border-radius: 4px;
}

/* FAQ */
.faq-search-bar {
	position: relative;
	width: 480px;
	margin: 40px auto;
}

.faq-search-bar .faq-input {
	width: 100%;
	padding: 10px 40px 10px 16px;
	box-sizing: border-box;
	border: 1px solid var(--color-border-gray);
	border-radius: 8px;
	font-size: 15px;
}

.faq-search-bar .faq-search-btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.faq-search-bar .faq-search-icon {
	display: block;
	width: 20px;
	height: 20px;
	pointer-events: none;
}

.faq-result-count {
	padding: 40px 0;
	border-top: 1px solid #e9e9e9;
	font-size: 20px;
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid #e9e9e9;
}

.faq-item:first-child {
	border-top: 1px solid #e9e9e9;
}

.faq-question {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-bottom: 0;
}

.faq-answer {
	display: none;
	background-color: #f5f5f5;
	margin-top: 20px;
	padding: 32px 30px;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 2px;
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-item .board-toggle-btn {
	top: auto;
}

/* 폼 */
.business-inquiry-form,
.myqna-form {
	padding-top: 27px;
}

.form-section {
	margin-bottom: 40px;
}

.form-select {
	width: 100%;
	padding: 0 16px;
	border: 1px solid #d9d9d9;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
	background-color: #fff;
	height: 35px;
	line-height: 35px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a7a7a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	background-size: 28px;
	padding-right: 40px;
}

.form-select:has(option[disabled]:checked) {
	color: #a7a7a7;
}

.form-select option {
	color: #000;
}

.form-select option:disabled {
	color: #a7a7a7;
}

.form-description {
	font-size: 13px;
	color: #858585;
	margin-top: 6px;
	margin-bottom: 0;
}

.inquiry-content-group {
	position: relative;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.inquiry-content-group .form-label {
	width: auto;
	min-width: 0;
	line-height: 1.5;
	text-align: left;
	font-size: 17px;
	font-weight: 500;
}

.label-hidden {
	visibility: hidden;
}

.inquiry-textarea {
	width: 100%;
	height: 200px;
	padding: 16px;
	font-size: 15px;
	line-height: 1.6;
	border: 1px solid #d9d9d9;
	resize: vertical;
	box-sizing: border-box;
}

.textarea-wrap {
	position: relative;
}

.textarea-wrap::after {
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	bottom: 1px;
	height: 36px;
	background: #fff;
	border-bottom: 1px solid #d9d9d9;
	pointer-events: none;
	z-index: 1;
}

.inquiry-char-counter {
	position: absolute;
	bottom: 12px;
	right: 16px;
	font-size: 13px;
	color: #a7a7a7;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 2px 6px;
	pointer-events: none;
	z-index: 2;
}

.image-upload-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.image-upload-area {
	display: flex;
	align-items: flex-end;
	gap: 25px;
	width: 180px !important;
	min-width: 180px !important;
}

.upload-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.upload-thumb {
	position: relative;
	width: 85px;
	height: 85px;
	border: 1px solid #e5e5e5;
	overflow: hidden;
	background: #f7f7f7;
}

.upload-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.upload-thumb .btn-delete-image {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #000;
	color: #fff;
	opacity: .7;
	cursor: pointer;
}

.upload-icon {
	width: 85px;
	height: 85px;
}

.upload-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	cursor: pointer;
}

.upload-text {
	font-size: 19px;
	color: #858585;
	font-weight: 400;
}

.upload-guidelines ul {
	margin: 0;
	padding-left: 20px;
	list-style-type: disc;
}

.upload-guidelines li {
	font-size: 13px;
	color: #a7a7a7;
	line-height: 1.4;
	margin-bottom: 8px;
}

.upload-guidelines li:last-child {
	margin-bottom: 0;
}

.form-actions {
	display: flex;
	gap: 20px;
	justify-content: flex-end;
	padding-top: 20px;
}

.btn-download {
	padding: 14px 30px;
	border: 1px solid #d7d7d7;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 500;
	max-width: 262px;
	height: 45px;
}

.btn-business-submit,
.btn-myqna-submit {
	padding: 0 30px;
	background-color: var(--color-orange);
	color: #fff;
	border-radius: 4px;
	font-size: 17px;
	font-weight: 500;
	width: 200px;
	height: 45px;
}

.btn-product-like {
	cursor: pointer;
}

/* 공통 모달 */
body.is-modal-open {
	overflow: hidden;
}

#modal-root {
	position: relative;
	z-index: 50;
}

#modal-root [hidden] {
	display: none;
}

#modal-root .modal-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .5);
}

@keyframes fadeIn{
	from {
		transform: translateY(8px);
		opacity: 0;
	}
	to {
		transform: none;
		opacity: 1;
	}
}

#modal-root .modal-dialog {
	width: 640px;
	max-width: calc(100% - 40px);
	max-height: calc(100dvh - 100px);
	min-height: 200px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
	position: relative;
	display: flex;
	flex-direction: column;
	overflow-y: hidden;
	height: auto;
	animation: fadeIn .2s ease-out;
}

#modal-root .modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	font-size: 22px;
	cursor: pointer;
	z-index: 50;
}

#modal-root .modal-body {
	padding: 40px;
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

#modal-root .modal-title {
	margin: 0 0 42px;
	font-size: 25px;
	text-align: center;
}

#modal-root .modal-form {
	display: flex;
	flex-direction: column;
	gap: 12px
}

#modal-root .modal-field {
	position: relative;
}

#modal-root .modal-input,
#modal-root .modal-textarea,
#modal-root .modal-select {
	width: 100%;
	height: 40px;
	border: 1px solid #d9d9d9;
	padding: 0 20px;
	font-size: 14px;
	background: #fff
}

#modal-root .modal-select {
	appearance: none;
	background: #fff url('https://cdn-ddanzi.bizhost.kr/renewal2025/web/images/icon_toggle_modal.svg') no-repeat right 12px center / 12px auto;
	padding-right: 36px;
	cursor: pointer;
}

#modal-root .modal-select:invalid {
	color: #5e5e5e;
}

#modal-root .modal-select option {
	color: #000;
}

/* Back to Top 버튼 */
.btn-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
}

.btn-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.btn-top:hover {
	background: #f8f8f8;
	border-color: #999;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-top i {
	font-size: 20px;
	color: #666;
	transition: color 0.3s ease;
}

.btn-top:hover i {
	color: #333;
}

#modal-root .has-counter .modal-input {
	padding-right: 60px;
}

#modal-root .has-counter .modal-textarea {
	box-sizing: border-box;
	min-height: 240px;
	height: 240px;
	padding: 20px 40px 20px 20px;
	line-height: 1.4;
	overflow-y: auto;
	resize: vertical;
}

#modal-root .modal-field.is-textarea {
	position: relative;
}

#modal-root .modal-field.is-textarea::after {
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	bottom: 1px;
	height: 40px;
	background: #fff;
	pointer-events: none;
	z-index: 1;
}

#modal-root .modal-field.is-textarea::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #d9d9d9;
	z-index: 3;
	pointer-events: none;
}

#modal-root .modal-counter {
	position: absolute;
	top: 10px;
	right: 12px;
	font-size: 14px;
	color: #a7a7a7;
}

#modal-root .is-textarea .modal-counter {
	position: absolute;
	top: auto;
	right: 16px;
	bottom: 12px;
	font-size: 14px;
	color: #a7a7a7;
	background: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	pointer-events: none;
	z-index: 2;
}

#modal-root .modal-upload {
	margin-top: 6px
}

#modal-root .modal-file {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0
}

#modal-root .modal-upload-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 85px;
	height: 85px;
	border: 1px solid #d9d9d9;
	cursor: pointer;
}

#modal-root .modal-upload-trigger img {
	width: 32px;
	height: 32px
}

#modal-root .modal-upload-count {
	display: inline-block;
	margin-left: 14px;
	vertical-align: bottom;
	color: #858585;
	font-size: 19px;
}

#modal-root .modal-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px
}

#modal-root .modal-thumb {
	position: relative;
	width: 85px;
	height: 85px;
	overflow: hidden;
	border: 1px solid #eee;
	background: #f7f7f7
}

#modal-root .modal-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

#modal-root .modal-thumb button {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #000;
	color: #fff;
	opacity: .7;
	cursor: pointer
}

#modal-root .modal-upload-notes {
	list-style: disc;
	margin: 12px 0 0 0;
	padding: 0 0 0 14px;
	color: #a7a7a7;
	font-size: 13px;
	line-height: 1.6
}

#modal-root .modal-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	width: 100%
}

#modal-root .modal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	background: #e6e6e6;
	border-radius: 4px;
	font-size: 17px;
	flex: 1;
}

#modal-root .modal-btn-submit {
	background: var(--color-orange);
	color: #fff;
}


.postBtn {
	background-color: #f5f5f5;
	padding: 8px 12px;
	cursor: pointer;
	border: 1px solid #ddd;
	border-left: none;
	height: 35px;
	color: #858585;
	font-size: 14px;
}

.pointerObj {
	cursor: pointer;
}

.empty-message {
	width: 100%;
	text-align: center;
	padding: 80px 0;
	font-size: 22px;
	font-weight: 600;
	color: #858585;
}

/* Product Tags Styles */
.product-tags {
	display: flex;
	flex-wrap: wrap;
	margin: 7px 0;
	gap: 4px;
}

.tag-label {
	display: flex;
	align-items: center;
	min-height: 21px;
	padding: 2px 4px;
	border: #000 1px solid;
	border-radius: 2px;
	font-weight: 500;
	font-size: 11px;
	line-height: 13px;
	box-sizing: border-box;
	word-break: break-all;
}

.tag-blue {
	color: #285aff;
	border: 1px solid #4972f8;
}

.tag-purple {
	color: #6A30A9;
	border: 1px solid #7E40BA;
}

.tag-yellow {
	color: #ff8000;
	border: 1px solid #b57331;
}

.tag-green {
	color: #1b8b34;
	border: 1px solid #278b3d;
}

.tag-red {
	color: #F94D4D;
	border: 1px solid #FF7777;
}

.tag-orange {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.tag-soldout {
	color: #fff;
	background: #666666;
	border: 1px solid #666666;
}

.tag-gray {
	color: #555;
	border: 1px solid #999;
}

/* 품절 상품 스타일링 */
.product-card.is-soldout {
	opacity: 0.4;
}

.product-card.is-soldout .product-card-image {
	position: relative;
}

.product-card.is-soldout .product-card-image::after {
	content: '품절';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	z-index: 2;
}

/* Remix 아이콘 지원 - 하트 아이콘 */
.btn-product-like i.ri-heart-3-line {
	display: inline-block !important;
	color: #222 !important;
}

.btn-product-like.is-liked i.ri-heart-3-fill {
	display: inline-block !important;
	color: #ff4757 !important;
}

.btn-product-like.is-liked i.ri-heart-3-line {
	display: none !important;
}

.btn-product-like:not(.is-liked) i.ri-heart-3-fill {
	display: none !important;
}

/* 장바구니 아이콘 */
.btn-product-cart i.ri-shopping-cart-line {
	color: var(--primary-color);
	font-size: 18px;
}

/* 
.listpage-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.listpage-layout.is-centered {
  grid-template-columns: 1fr;
  justify-items: center;
}

.category-content.is-centered {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
} */



.qnaw-content .form-section {
	margin-bottom: 0;
}

.qnaw-content .form-group {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 16px;
	padding: 16px 0;
	margin-bottom: 0;
}

.qnaw-content .form-select {
	font-size: 14px;
}

.qnaw-content .form-input {
	margin-bottom: 12px;
	font-size: 14px;
}

.qnaw-content .form-group>label {
	align-self: start;
	font-size: 19px;
	font-weight: 400;
}

#modal-root .modal-dialog.modal-alert {
	width: 360px;
}

#modal-root .modal-dialog.modal-alert .modal-body p {
	font-size: 17px;
	margin: 0 0 27px;
}

#modal-root .modal-dialog.modal-alert .modal-btn {
	margin-left: auto;
	background-color: #fff;
	color: var(--color-orange);
	text-decoration-line: underline;
	height: auto
}

.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.no-arrows {
	-moz-appearance: textfield;
}

.empty-message-s {
	text-align: center;
	padding: 40px 0;
	font-size: 14px;
	color: #858585;
}

/* 후기 상세 모달 */
.review-detail-modal .modal-dialog {
	width: 100%;
	max-width: 100%;
	max-height: 100dvh;
	border-radius: 0;
	box-shadow: none !important;
}

.review-detail-modal {
	background: #fff !important;
	z-index: 20;
	flex-direction: column;
	justify-content: flex-start !important;
}

.modal-dialog.modal--fullscreen {
	background: #fff !important;
	width: 100% !important;
	max-width: 100% !important;
	max-height: 100dvh !important;
	border-radius: 0 !important;
	padding-top: 0;
}

.review-detail-modal .modal-dialog .modal-body {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 !important;
}

.review-detail-page {
	--review-header-h: 75px;
}

.review-detail-page .page-header {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-height: 90px;
	background: #fff;
	z-index: 10;
	border-bottom: 1px solid #e6e6e6;
	justify-content: space-between;
}

.review-detail-page .page-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.review-detail-page .btn-close {
	border: 0;
	background: transparent;
	padding: 6px;
	line-height: 0;
	cursor: pointer;
}

.review-detail-page .scroll-area {
	flex: 1;
	overflow: visible;
	-webkit-overflow-scrolling: touch;
	padding: calc(var(--review-header-h) + 16px) 20px 24px;
}

.review-detail-page article.review {
	margin: 0 0 20px;
}

.review-detail-page .meta {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 16px;
}

.review-detail-page .stars {
	display: flex;
	gap: 0;
}

.review-detail-page .stars img {
	width: 20px;
	height: 20px;
	display: block;
}

.review-detail-page .user {
	font-size: 15px;
	color: #000;
}

.review-detail-page .images {
	display: none;
	margin: 0;
}

.review-detail-page .images:has(img[src]) {
	display: block;
	margin: 0 0 16px;
}

.review-detail-page .images img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 10px;
}

.review-detail-page .text {
	font-size: 14px;
	line-height: 1.5;
	margin: 16px 0;
}

.review-detail-page .footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.review-detail-page time {
	color: #858588;
	font-size: 13px;
}

.review-detail-page .comments {
	border-top: 1px solid #e5e5e5;
	padding-top: 12px;
}

.review-detail-page .comments h2 {
	margin: 0 0 12px;
	padding: 0 0 12px;
	border-bottom: 1px solid #e5e5e5;
	font-size: 16px;
	font-weight: 700;
}

.review-detail-page .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.review-detail-page .comment-item {
	padding: 16px 0;
	border-bottom: 1px solid #e2e2e2;
}

.review-detail-page .comment-item:last-child {
	border-bottom: 0;
}

.review-detail-page .comment-head {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 12px;
	color: #666;
	margin-bottom: 8px;
}

.review-detail-page .comment-user {
	font-weight: 700;
	color: #000;
}

.review-detail-page .comment-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.review-detail-page .comment-form {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.review-detail-page .comment-input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	resize: vertical;
}

.review-detail-page .btn-comment-submit {
	border: 0;
	background: #ff8000;
	color: #fff;
	border-radius: 4px;
	padding: 0 14px;
	font-size: 14px;
	cursor: pointer;
}

/* 장바구니 옵션 모달 */
#modal-root .cart-option-modal {
	--modal-pad-x: 30px;
	position: relative;
}

#modal-root .cart-option-modal .modal-body {
	padding: 0 var(--modal-pad-x) 80px;
}

#modal-root .cart-option-modal .modal-title {
	position: sticky;
	top: 0;
	z-index: 2;
	background: #fff;
	margin: 0 calc(-1 * var(--modal-pad-x)) 16px;
	padding: 30px var(--modal-pad-x) 14px;
	text-align: center;
}

#modal-root .cart-option-modal .modal-title::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #e9e9e9;
}

#modal-root .cart-option-modal .option-list {
	list-style: none;
	margin: 0;
	padding: 0;
	height: auto;
	transition: all 0.3s ease;
}

#modal-root .cart-option-modal .option-item+.option-item {
	border-top: 1px solid #f0f0f0;
}

#modal-root .cart-option-modal .option-row {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 14px 0;
}

#modal-root .cart-option-modal .option-thumb img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #eee;
}

#modal-root .cart-option-modal .option-name {
	margin: 0;
	font-weight: 600
}

#modal-root .cart-option-modal .option-price {
	margin: 0
}

#modal-root .cart-option-modal .option-normal-price {
	color: #a8a8a8;
	text-decoration: line-through;
	font-size: 12px
}

#modal-root .cart-option-modal .price-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px
}

#modal-root .cart-option-modal .option-sale-percent {
	color: #ff3b30;
	font-weight: 700;
	margin-right: 6px
}

#modal-root .cart-option-modal .option-selling-price {
	font-size: 18px;
	font-weight: 700
}

#modal-root .cart-option-modal .modal-actions-fixed {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	background: #fff;
	border-top: 1px solid #eee;
}

#modal-root .cart-option-modal .product-actions {
	display: flex;
	width: 100%;
	height: 64px;
	cursor: pointer
}

#modal-root .cart-option-modal .product-btn {
	padding: 0;
	border: 0;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center
}

#modal-root .cart-option-modal .product-btn-wish {
	flex: 0 0 64px;
	background: #fff;
	color: #666;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

#modal-root .cart-option-modal .product-btn-cart {
	flex: 1;
	font-size: 19px;
	font-weight: 700;
	background: #B5B5B5;
	color: #fff
}

#modal-root .cart-option-modal .product-btn-buy {
	flex: 1;
	background: #ef2a23;
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}

#modal-root .cart-added-modal {
	text-align: center;
}

#modal-root .cart-added-modal .selected-panel-subtitle {
	font-size: 16px;
	color: #858585;
	margin: 28px 0 8px 0;
}

#modal-root .cart-added-modal .selected-panel-title {
	font-size: 20px;
	margin-bottom: 40px;
}

#modal-root .cart-added-modal .modal-actions {
	display: flex;
	gap: 8px;
}

#modal-root .cart-added-modal .btn-go-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	background: #ef2a23;
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	border-radius: 4px;
	height: 50px;
	text-decoration: none;
}

/* 후기 작성 모달 */
.activity-section .review-rating img {
    width: 27px;
    height: 27px
}

/* 후기 작성 모달 공통 */
#modal-root .review-modal {
    padding: 50px 25px 25px;
    max-height: calc(100dvh - 100px);
}

#modal-root .review-modal .modal-title {
    text-align: start;
    font-weight: 600;
    margin-bottom: 30px;
}

#modal-root .review-modal .modal-body {
    padding: 0;
    overflow: auto;
    margin-bottom: 60px;
    padding-right: 10px;
}

#modal-root .review-modal .modal-footer {
    position: sticky;
    bottom: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background: #fff
}

#modal-root .modal-btn-primary {
    background: var(--color-orange);
    color: #fff
}

#modal-root .modal-btn-ghost {
    background: #f4f4f4
}

#modal-root .modal-btn-confirm {
    color: var(--color-orange)
}

#modal-root .modal-btn-next {
    background: #eaeaea;
    color: #858585;
    cursor: not-allowed;
}

#modal-root .modal-btn-next:not(:disabled) {
    background: var(--color-orange);
    color: #fff;
    cursor: pointer;
}

/* 요약 */
.review-modal .review-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 33px;
    border-bottom: 1px solid #d9d9d9
}

.review-modal .review-summary .review-product-texts {
    min-width: 0
}

.review-modal .modal-section-divider {
    border-color: #d9d9d9
}

#modal-root .review-summary .review-product-name {
    color: #858585
}

#modal-root .review-summary .review-product-details {
    color: #858585
}

/* 별점 */
#modal-root .q-title {
    margin: 100px 0 16px;
    font-size: 23px;
    text-align: center
}

#modal-root .q-sub {
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px
}

#modal-root .stars {
    display: flex;
    gap: 2px;
    justify-content: center
}

#modal-root .review-modal.step1 .stars {
    margin-bottom: 80px
}

#modal-root .review-modal.step2 .stars {
    margin: 45px 0
}

#modal-root .star {
    width: 30px;
    height: 30px;
    background: url('https://cdn-ddanzi.bizhost.kr/renewal2025/web/images/icon_star_default_card.svg') center/contain no-repeat;
    border: 0
}

#modal-root .star.on {
    background-image: url('https://cdn-ddanzi.bizhost.kr/renewal2025/web/images/icon_star_active_card.svg')
}

/* 카테고리별 rating 레이아웃 */
#modal-root .rating-group {
    margin: 32px 0 0;
}

#modal-root .rating-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px
}

#modal-root .rating-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: flex-start;
    margin: 40px 0;
}

#modal-root .rating-q {
    grid-column: 1;
    margin: 0;
    white-space: nowrap
}

#modal-root .rating-a {
    grid-column: 2
}

#modal-root .rating-row .range-labels {
    display: flex;
    justify-content: space-between;
    color: #5e5e5e;
    font-size: 13px;
    margin-top: 14px;
}

/* 점수바 */
#modal-root .rating-row input[type="range"] {
    --track: #e6e6e6;
    --fill: var(--color-orange, #ff7a00);
    --percent: 0%;
    background:
        linear-gradient(var(--fill), var(--fill)) 0 0/var(--percent) 100% no-repeat,
        var(--track);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    outline: 0;
    cursor: pointer;
}

/* WebKit */
#modal-root .rating-row input[type="range"]::-webkit-slider-runnable-track,
#modal-root .slider-q input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    border-radius: 999px
}

#modal-root .rating-row input[type="range"]::-webkit-slider-thumb,
#modal-root .slider-q input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--fill);
    border: 0;
    margin-top: -6px
}

/* Firefox */
#modal-root .rating-row input[type="range"]::-moz-range-track,
#modal-root .slider-q input[type="range"]::-moz-range-track {
    height: 6px;
    background: var(--track);
    border-radius: 999px
}

#modal-root .rating-row input[type="range"]::-moz-range-progress,
#modal-root .slider-q input[type="range"]::-moz-range-progress {
    height: 6px;
    background: var(--fill);
    border-radius: 999px
}

#modal-root .rating-row input[type="range"]::-moz-range-thumb,
#modal-root .slider-q input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--fill);
    border: 0
}

/* Old Edge/IE */
#modal-root .rating-row input[type="range"]::-ms-track,
#modal-root .slider-q input[type="range"]::-ms-track {
    height: 6px;
    background: transparent;
    color: transparent;
    border: 0
}

#modal-root .rating-row input[type="range"]::-ms-fill-lower,
#modal-root .slider-q input[type="range"]::-ms-fill-lower {
    background: var(--fill)
}

#modal-root .rating-row input[type="range"]::-ms-fill-upper,
#modal-root .slider-q input[type="range"]::-ms-fill-upper {
    background: var(--track)
}

#modal-root .rating-row input[type="range"]::-ms-thumb,
#modal-root .slider-q input[type="range"]::-ms-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--fill);
    border: 0
}

/* 텍스트 영역 & 업로드 */
#modal-root .textarea-label {
    display: block;
    margin: 50px 0 14px;
    font-weight: 700
}

#modal-root .textarea-wrap {
    position: relative
}

#modal-root .textarea-placeholder {
    position: absolute;
    inset: 20px 20px auto 20px;
    color: #959595;
    pointer-events: none
}

#modal-root .textarea-wrap .textarea-placeholder.is-hidden {
    display: none
}

#modal-root .guide-list {
    list-style: disc;
    margin: 0;
    padding-left: 18px
}

#modal-root .textarea-wrap textarea {
    width: 100%;
    border: 1px solid #e6e6e6;
    padding: 20px
}

#modal-root .textarea-wrap .char-count {
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: #888;
    font-size: 12px
}

#modal-root .guide-list {
    color: #959595;
    font-size: 14px;
    line-height: 1.4
}

#modal-root .guide-list li {
    margin-bottom: 4px
}

/* 완료 팝업 */
#modal-root .review-done {
    width: 460px;
    padding: 40px
}

#modal-root .review-done .done-text {
    text-align: left;
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 40px
}

#modal-root .review-done .modal-footer {
    display: flex;
    justify-content: center;
}