/* ============================================
   Price Page - 시술안내/가격
   ============================================ */

/* Empty State */
.empty-state {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 400px;
	color: #aaa;
	font-size: 16px;
	text-align: center;
}

/* Category Menu Bar */
.category-menu-bar {
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	z-index: 1;
	padding: 12px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-menu-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.category-menu-swiper {
	flex: 1;
	overflow: hidden;
	max-height: 50px;
	transition: max-height 0.3s ease;
	display: flex;
	justify-content: flex-start;
}
.category-menu-swiper.centered .swiper-wrapper {
	width: max-content !important;
}
.category-menu-swiper.centered {
	justify-content: center;
}

.category-menu-swiper.expanded {
	max-height: 100px;
	overflow: visible;
}

.category-menu-swiper .swiper {
	overflow: hidden;
	height: 100%;
}

.category-menu-swiper.expanded .swiper {
	overflow: visible;
}

.category-menu-swiper .swiper-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.category-menu-swiper.expanded .swiper-wrapper {
	flex-wrap: wrap;
	height: auto !important;
	transform: none !important;
	width: 100% !important;
	transition: none !important;
}

.category-menu-swiper .swiper-slide {
	width: auto;
	height: auto;
	max-width: min(44vw, 220px);
	min-width: 0;
}

.category-menu-swiper.expanded .swiper-slide {
	width: auto !important;
	max-width: none !important;
	flex-shrink: 0;
}

.category-menu-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: flex-start;
	align-items: center;
	min-width: max-content;
}

.category-menu-list.expanded {
	flex-wrap: wrap;
}

.category-menu-list li {
	margin: 0;
	padding: 0;
}

.category-menu-swiper .category-link {
	display: block;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 20px;
	transition: all 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.category-menu-list .category-link {
	display: inline-block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 20px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.category-menu-swiper .category-link.active,
.category-menu-list .category-link.active {
	border: 2px solid #b6858c;
	background-color: #fff;
	font-weight: 500;
}

.category-expand-btn {
	display: none;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.category-expand-btn:hover {
	background-color: #f5f5f5;
	border-color: #999;
}

.category-expand-btn.visible {
	display: flex;
}

.expand-icon {
	position: relative;
	width: 16px;
	height: 16px;
	font-size: 0;
	display: block;
}

.expand-icon::before,
.expand-icon::after {
	content: '';
	position: absolute;
	background-color: #333;
	transition: all 0.3s ease;
}

.expand-icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.expand-icon::after {
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.category-expand-btn.expanded .expand-icon::after {
	opacity: 0;
	transform: translateX(-50%) scale(0);
}

.price-page {
    padding: 50px 0 215px;
    text-align: center;
    margin-top: 190px;
    background-color: #fff;
    min-height: 100vh;
}

@media (max-width: 1200px) {
    .price-page {
        margin-top: 150px;
        padding: 40px 0 160px;
    }
}

@media (max-width: 768px) {
    .price-page {
        margin-top: 120px;
        padding: 30px 0 100px;
    }
}

.price-header {
	text-align: center;
	margin-bottom: 80px;
}

.price-subtitle {
	display: block;
	font-size: 14px;
	color: #999;
	margin-bottom: 5px;
}

.price-title {
	font-size: 27px;
	font-weight: 600;
	line-height: 1.4;
}


/* Mobile Product Option */
.m-pro-option {
	display: none; /* 기본적으로 숨김 */
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.m-pro-option p {
	font-size: 14px;
	margin: 0;
}

.m-pro-option .num {
	font-weight: 600;
	color: #333;
}

.view-option {
	display: flex;
	gap: 10px;
}

.view-option i {
	width: 24px;
	height: 24px;
	cursor: pointer;
	opacity: 0.4;
	transition: opacity 0.3s ease;
}

.view-option i.active {
	opacity: 1;
}

.view-option i.list {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>') no-repeat center;
	background-size: contain;
}

.view-option i.img {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect></svg>') no-repeat center;
	background-size: contain;
}

/* Product List View Modes - 모바일 전용 (데스크톱에서는 기본 레이아웃 유지) */
@media (max-width: 768px) {
	.product-list.list-view {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	
	.product-list.list-view li {
		max-width: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		min-height: auto;
		height: auto;
	}
	
	.product-list.list-view li figure {
		display: none; /* 이미지 숨김 */
	}
	
	.product-list.list-view li .txt {
		padding: 15px;
		width: 100%;
	}
	
	.product-list.list-view .pro-name {
		min-height: auto;
		margin-bottom: 8px;
	}
	
	.product-list.list-view .pro-desc {
		margin-bottom: 10px;
	}
	
	.product-list.grid-view {
		display: grid;
		grid-template-columns: 1fr; /* 1열 */
		gap: 15px;
	}
	
	.product-list.grid-view li {
		max-width: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
	}
}

/* ============================================
   Detail Page - 상품 상세 페이지
   ============================================ */

.detail-wrap {
	margin-top: 200px;
	padding: 0 0 200px;
	text-align: left;
}

.detail-wrap > .container {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	position: relative;
}

.detail-wrap .left {
	padding: 0;
	width: 700px;
	flex-shrink: 0;
}

.detail-wrap .left .content {
	width: 100%;
}

.detail-title {
	padding: 0 0 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
    margin-top: 35px;   
}

.detail-title .txt-area {
	flex: 1;
}

.detail-title h2 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}

.detail-title span {
	font-size: 15px;
	font-weight: 300;
	word-break: keep-all;
	line-height: 1.6;
	display: block;
}


.detail-title .share-icon.hide {
	display: none;
}

.detail-title .share-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 시술 상세 — 공유 팝업 */
.share-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10050;
	background: rgba(0, 0, 0, 0.45);
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.share-popup-overlay.active {
	display: flex;
}

.share-popup {
	position: relative;
	width: 100%;
	max-width: 320px;
	background: #fff;
	border-radius: 12px;
	padding: 32px 20px 36px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
}

.share-popup--icons {
	max-width: 340px;
}

.share-popup-del {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	background: transparent url(/assets/img/Icon_close_thin.svg) center / 20px no-repeat;
	cursor: pointer;
}



.share-popup-title {
	margin: 0 0 32px;
	padding: 0 36px;
	font-size: 18px;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
	text-align: center;
}

.share-popup-btns {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
}

.share-popup-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	min-width: 0;
	padding: 4px 8px;
	margin: 0;
	background: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	font-family: inherit;
}

.share-popup-option:hover .share-popup-option-label {
	opacity: 0.85;
}

.share-popup-option:active {
	opacity: 0.9;
}

.share-popup-option-ic {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.share-popup-option-ic img {
	width: 72px;
	height: auto;
	max-width: 100%;
	display: block;
}

.share-popup-option-label {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 500;
	color: #111;
	text-align: center;
	line-height: 1.35;
	max-width: 110px;
	word-break: keep-all;
}

@media screen and (max-width: 400px) {
	.share-popup-btns {
		gap: 24px;
	}

	.share-popup-option-ic img {
		width: 64px;
	}
}

.main-img {
	width: 100%;
	margin: 0;
	padding: 0;
}

.main-img img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.pro-detail {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pro-detail hr {
	border: none;
	border-top: 1px solid #e8e8e8;
	margin: 12px 0;
}

.pro-detail > li {
	border-bottom: 1px solid #efefef;
	padding: 45px 10px;
}

.pro-detail > li:last-child {
	border-bottom: 0;
}

.pro-detail h3 {
	font-size: 18px;
	font-weight: 600;
	color: rgb(234, 153, 153);
	margin-bottom: 30px;
	line-height: 1.4;
}

.pro-detail small {
	font-size: inherit;
	color: inherit;
	display: inline-block;
}

.pro-detail small::before {
	content: '';
	display: inline-block;
	width: 2px;
	height: 14px;
	background-color: #ccc;
	margin: 0 20px;
	vertical-align: middle;
}

.part1 > div {
	font-size: 15px;
	line-height: 1.8;
	white-space: pre-line;
	word-break: keep-all;
	color: #333;
}

.part1 > div strong,
.part1 > div b {
	color: #222;
	font-weight: 600;
}

.part1 > div u,
.part1 > div mark {
	text-decoration: underline;
	color: #444;
	background: transparent;
	padding: 0;
}

.part1 > div em {
	color: #555;
	font-style: normal;
	text-decoration: underline;
}

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

.part2-list li {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.part2-list li:last-child {
	margin-bottom: 0;
}

.part2-list span {
	font-size: 14px;
	font-weight: 500;
	font-family: var(--font-montserrat);
	color: #999;
	flex-shrink: 0;
	min-width: 100px;
}

.part2-list .procedure-text {
	min-width: 90px;
}

.part2-list .number-text {
	min-width: 40px;
}

.part2-list div {
	font-size: 15px;
	line-height: 1.8;
	flex: 1;
}

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

.part3-list li {
	margin-bottom: 20px;
}

.part3-list li:last-child {
	margin-bottom: 0;
}

.part3-list .Q {
	padding: 20px;
	background-color: #f8f8f8;
	border-radius: 4px;
	margin-bottom: 15px;
}

.part3-list .Q > div {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.part3-list .Q i {
	font-size: 18px;
	font-weight: 600;
	font-style: normal;
	flex-shrink: 0;
}

.part3-list .Q div > div {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
}

.part3-list .A {
	padding: 20px;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
}

.part3-list .A div {
	font-size: 15px;
	line-height: 1.8;
	white-space: pre-line;
}

.part4 {
	padding: 60px 10px;
}

.part4 > p {
	font-size: 15px;
	font-weight: 600;
	color: #111;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.part4 > p::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 23px;
	background: url(/assets/img/Icon_exMark.svg) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
	flex-shrink: 0;
}

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

.part4-list li {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	align-items: flex-start;
}

.part4-list li:last-child {
	margin-bottom: 0;
}

.part4-list i {
	font-size: 15px;
	color: #999;
	font-style: normal;
	flex-shrink: 0;
}

.part4-list span {
	font-size: 15px;
	line-height: 1.8;
	flex: 1;
}

/* Right Sidebar */
.detail-wrap .right {
	width: 470px;
	position: fixed;
	right: calc((100% - 1200px) / 2);
	top: 190px;
	height: calc(100vh - 190px);
	transition: height 0.3s;
	background-color: #fff;
	overflow-y: auto;
}

.detail-wrap .right.no-follow {
	position: initial;
	right: auto;
	height: auto !important;
}

.add-list {
	padding: 20px;
    background-color: #f8f8f8;
}

.add-list > small {
	font-size: 12px;
	color: #767676;
	letter-spacing: .3px;
	display: inline-block;
}

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

.regular-list + small,
.event-list + small {
	display: block;
	padding-top: 16px;
	margin-top: 4px;
}

.event-list li {
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
	margin-bottom: 12px;
}

.event-list li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.event-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

.event-left {
	flex: 1;
	min-width: 0;
}

.event-left .pro-tit {
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 6px;
	line-height: 1.4;
	color: #222;
}

.event-left .pro-desc {
	display: block;
	font-size: 12px;
	font-weight: 100;
	color: #555;
	line-height: 1.5;
	margin-bottom: 4px;
}

.event-left .pro-note {
	display: block;
	font-size: 12px;
	font-weight: 100;
	color: #555;
	margin-top: 15px;
}

.event-right {
	flex-shrink: 0;
	text-align: right;
	white-space: nowrap;
}

.event-right .origin-price {
	display: block;
	font-size: 13px;
	color: #aaa;
	text-decoration: line-through;
	margin-bottom: 2px;
}

.event-right .sale-price {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.event-right .sale-price small {
	font-size: 14px;
	font-weight: 400;
}

.content {
	display: block;
	font-size: 13px;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
	.detail-wrap .right {
		right: 20px;
	}
}

@media (max-width: 968px) {
	.detail-wrap {
		margin-top: 120px;
		padding: 0 0 100px;
	}
	
	.detail-wrap > .container {
		flex-direction: column;
		gap: 30px;
	}
	
	.detail-wrap .left {
		width: 100%;
	}
	
	.detail-wrap .right {
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
		height: auto;
	}
	
	.detail-title {
		padding: 0 0 20px 0;
	}
	
	.detail-title h2 {
		font-size: 24px;
	}
	
	.pro-detail > li {
		padding: 40px 0;
	}
}

@media (max-width: 768px) {
	.detail-wrap {
		margin-top: 125px;
	}
	
	.detail-title h2 {
		font-size: 22px;
	}
	
	.detail-title span {
		font-size: 14px;
	}
	
	.pro-detail > li {
		padding: 30px 0;
	}
	
	.pro-detail h3 {
		font-size: 15px;
		margin-bottom: 15px;
	}
	
	.part1 > div,
	.part2-list div,
	.part3-list .Q div > div,
	.part3-list .A div,
	.part4-list span {
		font-size: 14px;
	}
	
	.part2-list span {
		font-size: 14px;
		min-width: 80px;
	}
	
	.part3-list .Q,
	.part3-list .A {
		padding: 15px;
	}
}

.price-category {
	margin-bottom: 50px;
}

.price-category h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.price-category hr {
	border: none;
	height: 1px;
	background-color: #eee;
	margin: 0;
}

/* Search Area */
.search-area {
	position: relative;
	max-width: 500px;
	margin: 0 auto 60px;
}

.search-area::before {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background-color: #333;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: width 0.5s ease-in-out;
}

.search-area::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="11" cy="11" r="8"></circle><path d="m21 21-4.35-4.35"></path></svg>') no-repeat center center;
	background-size: contain;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.8;
	pointer-events: none;
}

.search-area:hover::before,
.search-area:focus-within::before {
	width: 100%;
}

.search-area .search {
	border: none;
	border-bottom: 1px solid #cfcfcf;
	width: 100%;
	padding: 15px 45px 15px 0;
	font-size: 15px;
	font-weight: 300;
	background: transparent;
	outline: none;
	transition: border-color 0.3s ease;
}

.search-area .search:focus {
	border-bottom-color: #333;
}

.search-area .search::placeholder {
	color: #999;
	opacity: 0.6;
}

/* Product List */
.product-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-list li {
	width: 100%;
	height: auto;
	min-height: 400px;
	border: 1px solid #eee;
	background-color: #fff;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.product-list li figure {
	overflow: hidden;
	border-bottom: 1px solid #eee;
	height: 235px;
	position: relative;
	background-color: #f8f8f8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-list li figure img,
.product-list li figure video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-list li:hover figure .video-wrap > video,
.product-list li:hover figure > img {
	transform: scale(1.05);
}

.product-list li figure.no-img {
	background-color: #f8f8f8;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
}

.product-list li figure.no-img img {
	width: auto;
	height: 15px;
}

button.video-play-btn {
	width: 72px;
	height: 72px;
	background: url(/assets/img/Icon_videoPlay.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: none;
	cursor: pointer;
}
.video-play-btn.hidden {
	opacity: 0;
	pointer-events: none;
}
.detail-wrap .main-img .video-wrap.detail-video-wrap {
	position: relative;
	display: block;
	width: 100%;
}
.detail-wrap .main-img .video-wrap.detail-video-wrap video {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.product-list li .txt {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.pro-name {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.pro-desc {
	font-size: 15px;
	line-height: 1.5;
	flex: 1;
}

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

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

.product-list li .price {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: auto;
}

.low-price {
	font-size: 25px;
	font-weight: 600;
	margin: 0;
}

.low-price .price-unit {
	font-size: 16px;
	font-weight: 400;
}

.look-detail {
	width: 30px;
	height: 30px;
	border: none;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>') no-repeat center;
	background-size: 16px;
	cursor: pointer;
	opacity: 0.4;
	transition: all 0.3s ease;
}

.look-detail:hover {
	opacity: 1;
	transform: translateX(3px);
}

/* =====================
   info-sub-list
   ===================== */
   .info-sub-list {
    padding: 50px 10px 20px;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
}
.info-sub-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 10px;
    max-width: 165px;
}
.info-sub-list li::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 44px;
    background: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.info-sub-list li:last-child::after {
    display: none;
}
.info-sub-list img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.info-sub-list span {
    font-size: 15px;
    font-weight: 500;
    margin: 16px 0 4px;
}
.info-sub-list li > div {
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    white-space: pre-line;
    text-align: center;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .info-sub-list {
        padding: 30px 0 0;
        max-width: 320px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .info-sub-list li {
        border-right: 1px solid #eee;
        padding: 25px 10px;
        width: 50%;
        max-width: none;
        position: relative;
    }
    .info-sub-list li::after {
        display: none;
    }
    .info-sub-list li:nth-child(2n) {
        border-right: 0;
    }
    .info-sub-list li:nth-child(1) {
        border-right: 0;
        max-width: 320px;
        width: -webkit-fill-available;
        width: stretch;
    }
    .info-sub-list li:nth-child(1):has(+ li) {
        width: 50%;
        border-right: 1px solid #eee;
    }
    .info-sub-list li:nth-child(1):has(+ li + li) {
        border-bottom: 1px solid #eee;
    }
    .info-sub-list li:nth-child(2):has(+ li) {
        width: 50%;
        border-bottom: 1px solid #eee;
    }
    .info-sub-list img {
        width: 40px;
        height: 40px;
    }
    .info-sub-list span {
        font-size: 13px;
        margin: 12px 0 4px;
    }
    .info-sub-list li > div {
        font-size: 12px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
	.product-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
}

@media (max-width: 968px) {
	.price-header {
		margin-bottom: 60px;
	}
	
	.price-subtitle {
		font-size: 20px;
	}
	
	.price-title {
		font-size: 24px;
	}
	
	.price-category h2 {
		font-size: 22px;
	}
	
	.search-area {
		max-width: 100%;
		margin-bottom: 50px;
	}
	
	.product-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.m-pro-option {
		display: flex; /* 모바일에서만 표시 */
	}
	
	.category-menu-bar {
		padding: 10px 0;
	}
	
	.category-menu-swiper {
		max-height: 45px;
	}
	
	.category-menu-swiper.expanded {
		max-height: 90px;
	}
	
	.category-menu-swiper .category-link {
		padding: 5px 10px;
		font-size: 13px;
	}
	
	.category-expand-btn {
		display: flex; /* 모바일에서 항상 표시 */
		width: 28px;
		height: 28px;
	}
	
	.expand-icon {
		font-size: 18px;
	}
	
	
	/* 모바일에서 기본 그리드 뷰 */
	.product-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.product-list li {
		max-width: 100%;
		min-height: 350px;
	}
	
	.product-list li figure {
		height: 180px;
	}
	
	
	.price-header {
		display: none;
	}
	
	.price-subtitle {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.price-title {
		font-size: 22px;
	}
	
	
	.price-category {
		margin-bottom: 40px;
	}
	
	.price-category h2 {
		font-size: 20px;
	}
	
	.search-area {
		margin-bottom: 40px;
	}
	
	.product-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.product-list li {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.price-page {
		padding: 80px 0 50px;
	}
	
	.price-header {
		margin-bottom: 40px;
	}
	
	.price-subtitle {
		font-size: 16px;
	}
	
	.price-title {
		font-size: 20px;
	}
	
	.product-list li {
		min-height: 350px;
	}
	
	.product-list li figure {
		height: 180px;
	}
	
	.pro-name {
		font-size: 16px;
		min-height: 45px;
	}
	
	.pro-desc {
		font-size: 13px;
	}
	
	.low-price {
		font-size: 18px;
	}
}

/* 모바일 카테고리 전체 메뉴 (플러스 → 세로 리스트) */
.category-menu-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 10045;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.category-menu-mobile-drawer.is-open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.category-menu-mobile-drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.category-menu-mobile-drawer-panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: #fff;
	display: flex;
	flex-direction: column;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.category-menu-mobile-drawer-head {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #eee;
	background: #fff;
}

.category-menu-mobile-drawer-title {
	font-size: 15px;
	font-weight: 600;
	color: #222;
}

.category-menu-mobile-drawer-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: -8px -8px -8px 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.category-menu-mobile-drawer-close-icon {
	display: block;
	width: 16px;
	height: 2px;
	background: #333;
	border-radius: 1px;
}

.category-menu-mobile-drawer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	flex: 1;
	-webkit-overflow-scrolling: touch;
}

.category-menu-mobile-drawer-list li {
	border-bottom: 1px solid #eee;
}

.category-menu-mobile-drawer-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
	font-size: 15px;
	font-weight: 400;
	color: #333;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.category-menu-mobile-drawer-link::after {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url('/assets/img/mIcon_menuArrow.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.category-menu-mobile-drawer-link.active {
	background: #e994a4;
	color: #fff;
	font-weight: 500;
}

.category-menu-mobile-drawer-link.active::after {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.97 5.47a.75.75 0 0 0 0 1.06L13.44 12l-5.47 5.47a.75.75 0 1 0 1.06 1.06l6-6a.75.75 0 0 0 0-1.06l-6-6a.75.75 0 0 0-1.06 0z' fill='rgba(255,255,255,0.85)'/%3E%3C/svg%3E");
}

@media (min-width: 769px) {
	.category-menu-mobile-drawer {
		display: none !important;
	}
}

