/* utility: responsive display */
/* 모바일 전용 - 데스크톱에서는 숨김 */
.mobile-only {
	display: none;
}
/* 데스크톱 전용 - 모바일에서는 숨김 */
.desktop-only {
	display: block;
}

/* section: main swiper */
.section-main-swiper {
	width: calc(100vw - 4px);
	margin-left: calc(-50vw + 50%);
}
.section-main-swiper.use-breadcrumb {
	margin-top: var(--breadcrumb-h);
}
.section-main-swiper-inner {
	max-width: min(calc(100vw - 4px), var(--max-wrapper-w));
	/* margin: 0 auto; */
	overflow: hidden;
}

.main-swiper {
	position: relative;
	width: 1440px;
	margin: 0 auto;
}

.main-swiper .swiper-wrapper {
	overflow: visible;
}

.main-swiper .swiper-slide {
	/*width: 100% !important;*/
	/*height: calc(100vh - var(--header-h));*/
	/*height: calc(100dvh - var(--header-h));*/
	width: 1440px !important;
	height: 690px;
	position: relative;
}

.main-swiper-item {
	/*width: 100%;*/
	/*height: calc(100vh - var(--header-h));*/
	/*height: calc(100dvh - var(--header-h));*/
	width: 1440px;
	height: 690px;
	position: relative;
	overflow: hidden;
}

.main-swiper-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.swiper-button-wrapper {
	position: absolute;
	left: var(--spacing-9);
	bottom: var(--spacing-9);
	width: 100%;
}
.swiper-button-box {
	display: flex;
	gap: var(--spacing-7);
	max-width: var(--max-w);
	margin: 0 auto;
}
.swiper-button-prev, .swiper-button-next, .swiper-button-toggle {
	--swiper-navigation-size: var(--spacing-10);
	z-index: 2;
	position: relative;
	left: unset;
	right: unset;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--swiper-navigation-size);
	height: var(--swiper-navigation-size);
	border-radius: var(--radius-6);
	background: var(--gray-600-a-20);
	margin-top: 0;
	cursor: pointer;
}
/* 그래디언트 보더를 위한 before */
.swiper-button-prev::before, .swiper-button-next::before, .swiper-button-toggle::before {
	/*content: "";*/  /* TODO: 테두리 안 쓸 때 주석처리 */
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 1px;
	background: linear-gradient(180deg, #929292 0%, #F8F8F8 42.31%, #929292 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
}
/* 기존 swiper button 없애기 */
.swiper-button-prev::after, .swiper-button-next::after {
	content: '';
}

.swiper-button-prev svg, .swiper-button-next svg, .swiper-button-toggle svg {
	width: var(--spacing-7);
	height: var(--spacing-7);
}

.swiper-button-prev path, .swiper-button-next path {
	stroke: var(--white);
}
.swiper-button-toggle path {
	fill: var(--white);
}

/* section */
.section-header {
	display: flex;
	flex-direction: column;
	gap: calc(var(--spacing)*15);
}
.section-header.center {
	align-items: center;
}
.section-header.center .section-description {
	text-align: center;
}
.section-title {
	position: relative;
	padding-left: calc(18px + 8px);  /* after width + gap */
}
.section-title::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	width: 18px;
	height: 18px;
	border-radius: var(--radius-6);
	background: var(--secondary);
}
.section-description {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-6);
}
.section-description-inner .body-xl {
	font-weight: 500;
}

/* 압축공기 텍스트 처리.. */
div:has(.pressure-air-filter-text) {
	display: inline-flex;
}
.pressure-air-filter-text {
	margin: 0 7px;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

/* section: product */
.section-product, .section-tesllon-care, .section-support-inner, .section-care-faq {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-9);
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 80px 0 80px;
}

.product-contents {
	display: flex;
	justify-content: center;
	gap: var(--spacing-7);
	width: 100%;
}
.product-item {
	z-index: 2;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 342px;
	border-radius: var(--radius-5);
	background: var(--gray-100);
	cursor: pointer;
	transition: var(--transition);
}
.product-item::before {
	content: "";
	z-index: -1;
	position: absolute;
	inset: 0;
	border-radius: var(--radius-5);
	padding: 1px;
	background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 42.31%, var(--gray-200) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	transition: var(--transition);
}
.product-item:hover {
	background: var(--white);
	box-shadow: 0 2px 10px 0px #1C56FF66;  /* primary(blue-600) 40% */
}
.product-item:hover::before {
	z-index: -1;
	padding: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--blue-500) 42.31%, var(--primary) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.product-top {
	position: relative;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 280px;
	padding: calc(var(--spacing-2)*9);
	flex-shrink: 0;
	position: relative;
}
.product-top img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	max-width: 280px;
	max-height: 280px;
	/*aspect-ratio: 464/321;*/
	object-fit: cover;
}
.product-bottom {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: var(--spacing-9);
	padding: var(--spacing-8);
}
.product-info {
	display: flex;
	flex: 1;
	justify-content: flex-start;
	flex-direction: column;
	gap: var(--spacing-7);
}
.product-name {
	display: flex;
	align-items: center;
	gap: var(--spacing-3);
}
.product-description {
	display: -webkit-box;
	flex: 1;
	max-height: 3em; /* 2줄 높이 제한 (line-height 1.5 × 2줄) */
	line-height: 1.5;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: var(--text-secondary);
}
.product-description.text-third {
	color: var(--text-third);
}

.product-price {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.product-price .value .price-value {
	/*color: var(--secondary);*/
}
.product-price .value .before-sale-price {
	margin-right: var(--spacing-3);
	leading-trim: NONE;
	text-decoration: line-through;
	color: var(--text-third);
}
.product-price:has(.before-sale-price) .value .price-value {
	color: var(--secondary);
}

.product-more {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: calc(var(--spacing)*5);
	margin-top: auto;
	color: var(--text-secondary);
	transition: var(--transition);
}
.product-more svg {
	width: 36px;
	height: 36px;
}
.product-more path {
	transition: var(--transition);
}
.product-item:hover .product-more {
	color: var(--primary);
}
.product-item:hover .product-more path {
	fill: var(--primary);
}
/* 장바구니 버튼 아이콘 스타일 */
.btn.product-cart-btn .icon--custom {
    color: var(--white) !important;
}
.product-cart-btn-wrapper {
	display: none;
	margin-top: auto;
	width: 100%;
}
.product-cart-btn-wrapper .btn {
	width: 100%;
}


/* section: text */
.section-text {
	display: flex;
	flex: 0 0 auto;
	max-width: var(--max-wrapper-w);
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	transition: 0.3s;
}
.section-text .text-flow-item {
	padding-right: 88px;
	font-size: 200px;
	font-weight: 600;
	line-height: 1;
	color: var(--blue-100);
	animation: textLoop 18s linear infinite;
}
@keyframes textLoop {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

/* section: highlights */
.section-highlights {
	display: flex;
	flex-direction: row;
	gap: 10px;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 80px 0 44px 0;
}
.section-highlights .section-header,
.section-highlights-description,
.section-where .section-header,
.section-where .section-where-description{
	flex-basis: 50%;
}
.section-highlights-description {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.section-highlights-image {
    position: relative;
    width: calc(100vw - 4px);
	max-width: min(calc(100vw - 4px), var(--max-wrapper-w));
	margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.highlights-image-container {
	position: relative;
	width: 100%;
	height: fit-content;
	margin-bottom: 80px;
}

.highlights-image-bg {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center center;
}

.highlights-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	gap: var(--spacing-9); /* 카드 사이 간격 */
	width: 100%;
	max-width: var(--max-w);
	height: fit-content;
	margin: 0 auto;
	padding: var(--spacing-9) 0;
	color: white;
}

.highlights-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--spacing-5);
	width: 100%;
	max-width: 330px;
	height: 100%;
	max-height: 260px;
	aspect-ratio: 33/26;
	padding: calc(var(--spacing-2)*9);
	background-color: #1C56FF66;
	border-radius: 18px;
	box-shadow: 1px 1px 1px 0 #0A31A826 inset, -1px -1px 1px 0 #FFFFFF inset;
	backdrop-filter: blur(20px)

}
.highlights-card:hover::before {
	z-index: -1;
	padding: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--blue-500) 42.31%, var(--primary) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.highlights-card-title {
	position: relative;
	padding-left: calc(18px + var(--spacing-3));
	color: white;
}
.highlights-card-title::after {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border-radius: var(--radius-6);
	background: var(--white);
}

.highlights-card-value {
	color: white;
	text-align: right;
}
.highlights-card-value .number-value {
	margin-right: var(--spacing-3);
	color: inherit;
}

.section-where {
	display: flex;
	flex-direction: row;
	gap: 10px;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 80px 0 40px 0;
}

.section-where-description {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.section-where-card-container {
	display: flex;
	flex-direction: column;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 0 80px 0;
}

.where-card-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 2rem;
}

.where-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* section: tesllon-care */
.section-tesllon-care {
	/*gap: 100px;*/
	/*padding: 160px 0 90px;*/
}
.tesllon-care-contents {
	display: flex;
	gap: var(--spacing-7);
}
.tesllon-care-item {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-7);
	cursor: pointer;
	transition: var(--transition);
}
.tesllon-care-top {
	border-radius: 24px;
	overflow: hidden;
}
.tesllon-care-top img {
	width: 100%;
	aspect-ratio: 464/321;
	object-fit: cover;
}
.tesllon-care-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: var(--spacing-6);
	padding: 0 var(--spacing-3);
}
.tesllon-care-bottom-inner {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-6);
}
.tesllon-care-bottom-title {
	color: var(--secondary)
}
.tesllon-care-bottom-description strong {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}
.tesllon-care-item:hover .tesllon-care-bottom-btn {
	border-color: var(--gray-300);
	background: var(--gray-300);
}
.tesllon-care-item:hover .tesllon-care-bottom-btn svg path {
	stroke: var(--white);
}

/* section: text */
.section-support {
	width: calc(100vw - 4px);
	max-width: min(calc(100vw - 4px), var(--max-wrapper-w));
	margin-left: calc(-50vw + 50%);
	padding: 0 var(--main-px);
	background: var(--blue-050);
	overflow: hidden;
}
.support-contents {
	display: flex;
	/*flex-direction: column;*/
	gap: var(--spacing-5);
}
.support-item {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-3);
	width: 100%;
	padding: var(--spacing-9);
	border-radius: var(--radius-5);
	background: var(--white);
	cursor: pointer;
	transition: var(--transition);
}
.support-item-left {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
	/*min-width: 402px;*/
}
.support-item-left .description {
	max-width: 244px;
	color: var(--text-secondary);
}
.support-item-right {
	align-self: flex-end;
	position: relative;
	width: 120px;
	height: 120px;
	overflow: hidden;
}
.support-item-right::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -3px;
	display: flex;
	width: 98px;
	height: 6px;
	border-radius: var(--radius-6);
	background: var(--gray-200);
	transform: translateX(-50%);
}
.support-item-right img {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 160px;
	height: 160px;
	object-fit: cover;
}

/* section header with description */
.section-header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.section-header-wrapper.column {
	flex-direction: column;
	align-items: unset;
	gap: calc(var(--spacing)*9);
}

/* section where */
.section-where {
	display: flex;
	flex-direction: column;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 80px 0 40px;
}
/* Where Swiper */
.section-where-swiper {
	width: 100%;
	max-width: var(--max-wrapper-w);
	margin: 0 auto;
	padding: 0 0 80px 0;
	overflow: hidden;
}
.where-swiper {
	position: relative;
	width: 100%;
	max-width: 1504px;
	margin: 0 auto;
	overflow: visible;
}

.where-swiper .swiper-wrapper {
	display: flex;
}
.where-swiper .swiper-slide {
	width: 360px !important;
	flex-shrink: 0;
	border-radius: var(--radius-5);
	background: var(--white);
}
.where-swiper .swiper-slide:hover,
.where-swiper .swiper-slide.is-active {
	outline: 4px solid #1C56FFCC;
	outline-offset: -4px;
	box-shadow: 4px 4px 20px 0 #0A31A829;
}
.where-card {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-6);
	width: 100%;
	padding: var(--spacing-7) var(--spacing-8);
	border-right: 1px solid var(--gray-200);
	transition: var(--transition);
	cursor: pointer;
}
.where-swiper .swiper-slide:last-child .where-card, .where-swiper .swiper-slide:hover .where-card {
	border-right: 1px solid transparent;
}

.where-card-image {
	width: 100%;
	height: 214px;
	aspect-ratio: 320/214;
	border-radius: var(--radius-2);
	overflow: hidden;
}
.where-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.where-card-contents {
	display: flex;
	flex-direction: column;
	gap: calc(var(--spacing)*9);
}

.where-card-value {
	line-height: 1.5;
	/*color: var(--text-secondary);*/
}
.body-md.section-title {
	padding-left: calc(13px + 8px);
	font-weight: 500;
}
.body-md.section-title::after {
	width: 13px;
	height: 13px;
}
.where-card-contents .heading-md {
	font-weight: 500;
}

/* Where 하단 설명 패널 - display grid 카드 */
.where-detail-panel {
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease;
}
.where-detail-panel.is-open {
	max-height: 1200px;
	opacity: 1;
}
.where-detail-panel-inner {
	position: relative;
	padding-top: var(--spacing-8);
}
.where-detail-content {
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-7);
	padding: var(--spacing-9);
	border-radius: var(--radius-5);
	background: var(--white);
	outline: 4px solid #1C56FFCC;
	outline-offset: -4px;
	box-shadow: 4px 4px 20px 0 #0A31A829;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.where-detail-content.is-active {
	display: grid;
	opacity: 1;
}
.where-detail-item {
	z-index: 2;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
	min-height: 180px;
	padding: var(--spacing-7);
	border-radius: var(--radius-5);
	background: var(--gray-100);
}
.where-detail-item::before {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    border-radius: var(--radius-5);
    padding: 1px;
    background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 42.31%, var(--gray-200) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: var(--transition);
}
.where-detail-text {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
}
.where-detail-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: flex-end;
	width: 48px;
	height: 48px;
	margin-top: auto;
}
.where-detail-icon svg {
	width: 48px;
	height: 48px;
}
.where-detail-title {
	font-weight: 700;
}
.where-detail-desc {
	color: var(--text-secondary);
}

.section-client {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-9);
	width: calc(100vw - 4px);
	max-width: min(calc(100vw - 4px), var(--max-wrapper-w));
	margin-left: calc(-50vw + 50%);
	padding: 0 0 60px;
}
.client-banner {
	position: relative;
	overflow: hidden;
}
.scroll-track {
	display: flex;
	width: fit-content;
	padding: 46.5px 0;
	background: #F5F5F5;
	animation: slide-left 80s linear infinite;
}
.scroll-track img {
	max-height: 307px;
	object-fit: cover;
}
@keyframes slide-left {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* care */
.section-care-intro {
	width: calc(100vw - 4px);
	max-width: min(calc(100vw - 4px), var(--max-wrapper-w));
	margin-left: calc(-50vw + 50%);
	padding: 160px var(--main-px) 100px;
	background: #F5F7FA;
}
.section-care-intro-inner {
	display: flex;
	flex-direction: column;
	gap: 80px;
	max-width: var(--max-w);
	margin: 0 auto;
}
.section-care-intro-inner .section-header-wrapper {
	max-width: 1185px;
}

.care-intro-card-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-7);
}

.card {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	padding: var(--spacing-9);
	position: relative;
	background: var(--white);
	border-radius: var(--radius-5);
	outline: 1px var(--color-stroke) solid;
	outline-offset: -1px;
}

.care-intro-card-list .card-body {
	flex: unset;
	padding: unset;
	color: unset;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--spacing-5);
}

.card-content {
	flex: 1 1 0;
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: var(--spacing-5);
	height: fit-content;
}
.card-title {
	align-self: stretch;
	font-size: var(--text-heading-md);
	font-weight: 600;
	line-height: 1.1666;
	word-wrap: break-word;
	color: var(--text-primary);
}
.card-description {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	height: 204px;
}

.card-description p {
	/* width: 244px; */
	font-size: var(--text-body-lg);
	line-height: 1.4285;
	word-wrap: keep-all;
	color: var(--text-secondary);
}
.card-description p strong {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}
.card-image {
	position: absolute;
	right: var(--spacing-7);
	/*top: 140px;*/
	bottom: var(--spacing-7);
	/*left: 182px;*/
	width: 120px;
	height: 120px;
}
.card-image img {
	width: 120px;
	height: 120px;
	left: 0px;
	top: 0px;
	position: absolute;
}
.card-shadow {
	position: absolute;
	left: 11px;
	top: 117px;
	width: 98px;
	height: 6px;
	border-radius: var(--radius-6);
	background: #E8E8E8;
}
.card-footnote p {
	font-size: var(--text-body-sm);
	line-height: 1.3333;
	color: var(--gray-300);
}

/* haccp */
.section-highlights.haccp {
	flex-direction: column;
	align-items: center;
	gap: 40px
}
.section-highlights-image.haccp .highlights-image-container {
	max-width: var(--max-w);
	margin: 0 auto 80px;
}
.section-highlights.haccp .section-header.center {
	flex-basis: unset;
}
.section-highlights-image.haccp .highlights-image-bg {
	max-width: var(--max-w);
	margin: 0 auto;
	border-radius: var(--radius-5);
}

.highlights-cards.haccp {
	display: flex;
	justify-content: center;
	gap: 80px;
	padding: 80px;
	max-width: unset;
}

.highlights-card.haccp-card {
	justify-content: center;
	align-items: center;
	gap: var(--spacing-5);
	max-width: 400px;
	min-height: 400px;
	aspect-ratio: unset;
	padding: var(--spacing-5);
}
.haccp-card-title {
	font-size: var(--text-heading-2xl);  /* 40px */
	font-weight: 600;
	line-height: 1.2;  /* 48px */
	color: var(--white);
}
.haccp-card-middle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-3);
	margin-bottom: var(--spacing-7);
}
.haccp-card-middle .heading-lg, .haccp-card-middle .heading-sm {
	text-align: center;
	color: var(--white);
}
.highlights-card.haccp-card .body-lg {
	text-align: center;
	color: var(--white);
}

/* 압축공기 */
.section-problem {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-9);
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 80px 0;
}
.problem-content {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: stretch;
	gap: 80px;
	width: 100%;
}
.problem-text-panel {
	display: flex;
	align-items: center;
	padding: var(--spacing-9);
	width: 100%;
	aspect-ratio: 640/497.78;
	border-radius: var(--radius-5);
	background: var(--blue-050);
}
.problem-text-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-8);
	width: 100%;
}
.problem-text-content .heading-xl,
.problem-text-content .heading-xs {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-3);
	text-align: center;
}
.problem-text-content .heading-xl span {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}
.problem-text-content .heading-xs span {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.problem-text-content .heading-xs.mobile-only {
	display: none;
}
.problem-image {
	width: 100%;
	border-radius: var(--radius-4);
	overflow: hidden;
}
.problem-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 640/497.78;
	object-fit: cover;
}

/* section-problems: 이런 문제가 반복되지 않나요? (카드 선택 시 우측 이미지 전환) */
.section-problems {
	background: var(--white);
	padding: 80px 0;
}
.section-problems-inner {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-9);
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--main-px);
}
.section-problems .section-header.center {
	flex-shrink: 0;
}
.problems-content {
	display: flex;
	align-items: stretch;
	gap: 80px;
	width: 100%;
	height: 100%;
}
/* 좌측: 카드 + 결론 (데스크톱) */
.problems-left {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
	min-width: 0;
}
/* 모바일 전용: 선택된 문제 설명 (데스크톱에서 숨김) */
.problems-active-desc {
	display: none;
}
.problems-cards {
	display: flex;
	flex-direction: column;
	gap: 11px;
	height: 100%;
}
.problems-card {
	z-index: 2;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-5);
	width: 100%;
	height: 100%;
	padding: var(--spacing-9);
	border-radius: var(--radius-5);
	background: var(--gray-100);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.problems-card::before {
	content: "";
	z-index: -1;
	position: absolute;
	inset: 0;
	border-radius: var(--radius-5);
	padding: 1px;
	background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 42.31%, var(--gray-200) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	transition: var(--transition);
}
.problems-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.problems-card.active {
	background: var(--white);
	box-shadow: 0px 2px 10px 0px #1C56FF66;
}
.problems-card.active::before {
	padding: 4px;
	background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-500) 42.31%, var(--blue-600) 100%);
}
.problems-card-title {
	font-size: var(--text-heading-md);
	font-weight: 600;
	line-height: 1.3;
}
.problems-card-desc {
	font-size: var(--text-body-lg);
	line-height: 1.4285;
	color: var(--text-secondary);
}
.problems-conclusion {
	padding: var(--spacing-9);
	background: var(--blue-100);
	border-radius: var(--radius-5);
	font-size: var(--text-heading-md);
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
}
.problems-conclusion-line {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
.problems-conclusion-emphasis {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: var(--primary);
}
/* 우측 이미지 */
.problems-visual {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	aspect-ratio: 1/1;
	border-radius: var(--radius-5);
	overflow: hidden;
	background: var(--gray-100);
}
.problems-visual-item {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s;
}
.problems-visual-item.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}
.problems-visual-item picture {
	display: block;
	width: 100%;
	height: 100%;
}
.problems-visual-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* warning */
.section-warning {
	padding: 120px 0;
	background: var(--blue-050);
}
.section-warning-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	max-width: var(--max-w);
	margin: 0 auto;
}
.section-warning-inner .heading-xl {
	text-align: center;
}
.section-warning-inner .heading-xl.title {
	color: var(--secondary);
}

/* solution */
.section-solution {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 80px 0;
}
.solution-banner {
	position: relative;
	width: 100%;
	border-radius: var(--radius-5);
	overflow: hidden;
}
.solution-banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}
.solution-banner-img.active {
	position: relative;
	opacity: 1;
}
.solution-banner-img img {
	width: 100%;
	height: 100%;
	aspect-ratio: 144/69;
	object-fit: cover;
	display: block;
}
/* 
    start: care page: price & plans
*/
/* product-subscription-step */
.product-subscription-step {
	display: flex;
	justify-content: center;
	/* align-items: center; */
	gap: var(--spacing-4);
}
.product-subscription-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-4);
	width: 160px;
	overflow: hidden;
}
.product-subscription-step-item-image {
	z-index: 2;
	position: relative;
	width: 160px;
	height: 160px;
	padding: 30px;
	border-radius: var(--radius-4);
	background: var(--gray-100);
}
.product-subscription-step-item-image::before {
	content: "";
	z-index: -1;
	position: absolute;
	inset: 0;
	border-radius: var(--radius-5);
	padding: 1px;
	background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 42.31%, var(--gray-200) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	transition: var(--transition);
}
.product-subscription-step-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-subscription-step-item-title {
	width: fit-content;
	padding: var(--spacing-2) var(--spacing-3);
	font-size: var(--text-heading-sm);
	font-weight: 600;
	line-height: var(--text-heading-md);
	text-align: center;
	text-wrap: nowrap;
}
.product-subscription-step-item-title.is-emphasis {
	background: var(--primary);
	color: var(--white);
}
.product-subscription-step-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 44px;
}
.product-subscription-step-arrow svg {
	width: 48px;
	height: 48px;
}
.product-subscription-step-arrow svg path {
	stroke-width: 1.5px;
	stroke: var(--text-secondary);
}

/* subscription-list */
.product-subscription-list-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-5);
	max-width: 856px;
	margin: var(--spacing-9) auto;
}
.product-subscription-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-7);
	width: 100%;
	padding: 0;
	list-style: none;
}
.product-subscription-plan {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-9);
	padding: var(--spacing-8) var(--spacing-4);
	border-radius: var(--radius-5);
	background: var(--gray-100);
}
.product-subscription-plan::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-5);
	padding: 1px;
	background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 42.31%, var(--gray-200) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.product-subscription-plan.is-featured {
	background: var(--white);
	box-shadow: 0px 2px 10px 0px #1C56FF66;
}
.product-subscription-plan.is-featured::before {
	padding: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--blue-500) 42.31%, var(--primary) 100%);
}
.product-subscription-plan-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-5);
}
.product-subscription-plan-title-box {
	display: flex;
	align-items: center;
	gap: var(--spacing-3);
}
.product-subscription-plan-title {
	font-size: var(--text-heading-sm);
	font-weight: 600;
	line-height: var(--text-heading-md);
}
.product-subscription-plan-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-3);
	border-radius: var(--spacing-2);
	background: var(--primary);
}
.product-subscription-plan-badge svg {
	width: 33.39px;
	height: 9.7px;
}
.product-subscription-plan-badge svg path {
	color: var(--white);
}

.product-subscription-plan-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-3);
}
.product-subscription-plan-price-value {
	font-size: var(--text-heading-xl);
	font-weight: 600;
	line-height: var(--text-heading-2xl);
}
.product-subscription-plan.is-featured .product-subscription-plan-price-value {
	color: var(--primary);
}
.product-subscription-plan-price-label {
	font-size: var(--text-body-md);
	font-weight: 500;
	line-height: var(--text-heading-sm);
	color: var(--text-secondary);
}
.product-subscription-plan-description {
	margin-bottom: -8px;
	font-size: var(--text-heading-xs);
    font-weight: 600;
    line-height: var(--text-heading-sm);
	text-align: center;
}
.product-subscription-plan-benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
}
.product-subscription-plan-benefit {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-3);
	padding: 0 var(--spacing-5) 0 var(--spacing-3);
}
.product-subscription-plan-benefit-icon {
	display: flex;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--text-third);
}
.product-subscription-plan-benefit-icon svg {
	width: 100%;
	height: 100%;
}
.product-subscription-plan-benefit-icon svg path {
	fill: var(--black);
}
.product-subscription-plan.is-featured .product-subscription-plan-benefit-icon svg path {
	fill: var(--primary);
}
.product-subscription-plan-benefit-text {
	font-size: var(--text-body-lg);
	line-height: var(--text-heading-md);
}
.product-subscription-plan-benefit-text .emphasis {
	color: var(--primary);
}
.product-subscription-plan:has(.product-subscription-plan-promo) {
	padding-bottom: var(--spacing-10);
	padding-right: var(--spacing-5);
}
.product-subscription-plan-promo {
	z-index: 2;
	position: absolute;
	right: -60px;
	bottom: -24px;
	display: block;
	width: 120px;
	height: 120px;
}
.product-subscription-plan-promo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-subscription-list-note {
	width: 100%;
	font-size: var(--text-body-sm);
	line-height: var(--text-body-lg);
	color: var(--text-third);
	text-align: end;
}

/* care 페이지 전용: product-contents 카드 (이미지 스타일) */
.product-contents-care .product-price-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-7);
}
.product-contents-care .product-price-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.product-contents-care .product-price-row-label {
	font-size: var(--text-body-lg);
	line-height: var(--text-heading-md);
	white-space: nowrap;
}
.product-contents-care .product-price-row-value {
	font-size: var(--text-body-lg);
	line-height: var(--text-heading-md);
	text-align: right;
	color: var(--secondary);
}
.product-contents-care .product-price-row-num {
	font-size: var(--text-body-xl);
	font-weight: 600;
	line-height: var(--text-heading-md);
	color: var(--secondary);
}

/* 
	end: care page: price & plans
*/

/* 
    start: section-care-faq
*/
.care-faq-content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
	width: 100%;
	max-width: 856px;
	margin: 0 auto;
}
.care-faq-content-inner {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-3);
	border: 1px solid var(--color-stroke);
	overflow: hidden;
}
.care-faq-content-item {
	border-bottom: 1px solid var(--color-stroke);
}
.care-faq-content-item:last-child {
	border-bottom: none;
}
.care-faq-number {
	display: inline-block;
	margin-right: var(--spacing-2);
	font-weight: 600;
	color: var(--primary);
}
.care-faq-content-item-title.care-faq-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--spacing-5);
	width: 100%;
	padding: var(--spacing-6) var(--spacing-7);
	border: none;
	background: var(--white);
	font-size: var(--text-body-lg);
	font-weight: 600;
	line-height: var(--text-heading-sm);
	text-align: left;
	color: var(--text-primary);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.care-faq-content-item-title.care-faq-row:hover,
.care-faq-content-item-title.care-faq-row.faq-is-open {
	background: var(--blue-050);
	color: var(--blue-700);
}
.care-faq-content-item-title-text {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
.care-faq-arrow {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.care-faq-arrow svg {
	width: 24px;
	height: 24px;
	transition: transform 0.2s ease;
}
.care-faq-content-item-title.care-faq-row.faq-is-open .care-faq-arrow svg {
	transform: rotate(180deg);
}
.care-faq-content-item-answer {
	overflow: hidden;
	height: 0;
	transition: height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.care-faq-content-item-answer .care-faq-answer {
	padding: 0 var(--spacing-7) var(--spacing-6);
	border-top: 1px solid var(--gray-100);
	background: var(--blue-050);
	font-size: var(--text-body-lg);
	line-height: var(--text-heading-sm);
	word-wrap: break-word;
	color: var(--text-primary);
}
.care-faq-empty {
	margin: 0;
	padding: var(--spacing-7);
	text-align: center;
	color: var(--text-third);
}
.care-faq-more {
	display: flex;
	justify-content: center;
	margin-top: var(--spacing-5);
}
.care-faq-meta {
	font-size: var(--text-body-sm);
	line-height: var(--text-body-lg);
	text-align: center;
	color: var(--text-third);
}
/* 
    end: section-care-faq
*/

/* 
    start: support-page
*/
main:has(.support-page),
.section-support.support-page {
	background: var(--white);
}
.support-page .section-support-inner {
	align-items: center;
	gap: 80px;
}
.support-page .section-support-inner .section-header {
	flex-shrink: 0;
}

.support-contents-container {
	display: flex;
	gap: var(--spacing-9);
	width: 100%;
	max-width: 1360px;
	margin-bottom: 80px;
}
.support-list-empty {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: var(--spacing-9);
	border-radius: var(--radius-2);
	background: #f8f8f866;
	color: var(--text-third);
}
/* 최근 자주 묻는 질문 */
.support-best-faq-list {
	/* flex-shrink: 0; */
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
	width: 100%;
}
.support-best-faq-item {
	display: flex;
	justify-content: space-between;
	gap: var(--spacing-5);
	width: 100%;
	padding: 23.5px var(--spacing-7);
	border-radius: var(--radius-3);
	background: var(--gray-100);
	cursor: pointer;
	transition: var(--transition);
}
.support-best-faq-item:hover {
	background: var(--gray-200);
}
.support-best-faq-item-left {
	display: flex;
	gap: var(--spacing-5);
}
.support-best-faq-item-number {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	border-radius: var(--radius-6);
	background: var(--secondary);
	font-size: var(--text-body-sm);
	font-weight: 700;
	line-height: var(--text-body-lg);
	color: var(--white);
}
.support-best-faq-item-right {
	display: flex;
	justify-content: center;
	align-items: center;
}
.support-best-faq-item-right svg {
	width: 20px;
	height: 20px;
}

/* 고객지원 컨텐츠 */
.support-page .support-contents {
	flex-shrink: 0;
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-5);
	width: 100%;
	max-width: 700px;
}
.support-page .support-item {
	flex-direction: row;
	justify-content: space-between;
	gap: var(--spacing-5);
	padding: var(--spacing-9);
	background: var(--blue-050);
}
.support-page .support-item:hover {
	background: var(--blue-100);
}
.support-page .support-item-right {
    width: 80px;
    height: 80px;
}
.support-page .support-item-right img {
    top: -13.335px;
    left: -13.335px;
    width: 106.67px;
    height: 106.67px;
}
.support-page .support-item-right::before {
    bottom: -2px;
    width: 65.33px;
    height: 4px;
}
/* 최근 공지사항 */
.support-recent-box {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-10);
	width: 100%;
}
.support-recent-box-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.support-recent-notice-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-6);
	width: 100%;
	height: 100%;
}
.support-recent-notice-item {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-5);
	width: 100%;
	padding: 27.5px var(--spacing-8);
	border-radius: var(--radius-2);
	background: var(--gray-100);
	cursor: pointer;
	transition: var(--transition);
}
.support-recent-notice-item:hover {
	background: var(--gray-200);
}
.support-item-title {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	max-width: 100%;
	transition: var(--transition);
}
.support-item-title.ellipsis-2-line {
	-webkit-line-clamp: 2;
	line-clamp: 2;
}
.support-item-date {
	color: var(--text-secondary);
	transition: var(--transition);
}
/* 최근 이벤트 */
.support-recent-event-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-6);
	width: 100%;
	height: 100%;
}
.support-recent-event-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-7);
	width: 100%;
	cursor: pointer;
	transition: var(--transition);
}
.support-recent-event-item-left {
	display: flex;
	flex: 330 1 0%;
	min-width: 0;
	aspect-ratio: 33/16;
	border-radius: var(--radius-2);
	overflow: hidden;
	transition: var(--transition);
}
.support-recent-event-item-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.support-recent-event-item-left .event-thumbnail-placeholder {
	min-width: 0;
	min-height: 0;
}
.support-recent-event-item-left .event-thumbnail-placeholder .event-placeholder-icon,
.support-recent-event-item-left .event-thumbnail-placeholder .event-placeholder-text {
	min-width: 0;
}
.support-recent-event-item-left .event-thumbnail-placeholder .event-placeholder-icon {
	max-width: 100%;
}

.support-recent-event-item-right {
	display: flex;
	flex: 306 1 0%;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	gap: var(--spacing-5);
	transition: var(--transition);
}
.support-recent-event-item:hover .support-recent-event-item-left {
	box-shadow: 0 2px 10px 0px #1C56FF66;
}
.support-recent-event-item:hover .support-item-title,
.support-recent-event-item:hover .support-item-date {
	color: var(--blue-700);
}

/* 
	end: support-page
*/

@media (min-width: 1921px) {
	.section-main-swiper-inner,
	.section-support,
	.section-highlights-image,
	.section-client,
	.section-care-intro {
		margin: 0 auto;
	}
}
@media (max-width: 1920px) {
	.section-where-swiper {
		overflow: hidden;
	}
}
@media (max-width: 1440px) {
	.main-swiper {
		width: 100%;
	}
	.main-swiper .swiper-slide {
		width: 100% !important;
	}
	.main-swiper-item {
		width: 100%;
	}
	.swiper-button-box {
		padding: 0 var(--spacing-5);
	}
	.swiper-button-wrapper {
		left: 0;
	}
	.section-product,
	.section-tesllon-care, .section-where,
	.section-problem,
	.section-problems,
	.section-solution {
		padding: 80px var(--spacing-5);
	}

	.section-support-inner {
		padding: calc(var(--spacing-9) * 2) var(--spacing-5);
	}
	.support-item {
		justify-content: space-between;
	}

	.product-contents {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		justify-items: center;
	}
	.product-item {
		max-width: unset;
	}
	.section-highlights {
		padding: 80px var(--spacing-5) 44px;
	}
	.highlights-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-5);
		padding: 40px var(--main-px);
	}
	.highlights-card {
		max-width: unset;
	}
	.section-where-swiper, .section-highlights-image.haccp {
		padding: 0 var(--main-px) 80px;
	}
	.where-swiper .swiper-slide {
		width: 320px !important;
	}
	.care-intro-card-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-description {
		height: 164px;
	}
	.problems-visual-item img {
		object-fit: contain;
	}
	.product-contents-care .product-contents {
        display: flex;
    }
	.product-item {
		max-width: 342px;
	}

	.support-page .support-contents {
		grid-template-columns: repeat(1, 1fr);
		max-width: 500px;
	}
	.where-detail-content {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 1200px) {
	.care-intro-card-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.care-intro-card-list .card {
		width: 100%;
	}
	.support-contents {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	/* 
    start: support-page
	*/
	.support-page .section-support-inner {
		gap: var(--spacing-10);
	}
	.support-best-faq-list,
	.support-page .support-contents  {
		flex: 1 1 auto;
	}
	.support-recent-event-item-left .event-placeholder-icon {
		width: 60px;
	}
	.support-recent-event-item-left .event-placeholder-text {
		font-size: var(--text-heading-xs);
	}
	/* 
		end: support-page
	*/
	.where-detail-content {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 1024px) {
	.product-contents {
        grid-template-columns: repeat(2, 1fr);
    }
	.support-contents-container {
		flex-direction: column;
	}
	.support-page .support-contents {
        grid-template-columns: repeat(2, 1fr);
        max-width: unset;
    }
	.support-page .support-item-right img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

	.care-faq-content {
		padding: 0 var(--spacing-5);
	}
	/* 
	    start: problems-page
	*/
	/* section-problems 모바일: 카드 가로 배치 → 선택 설명 → 이미지 → 결론 */
	.problems-content {
		flex-direction: column;
		gap: var(--spacing-9);
		height: auto;
	}
	.problems-left {
		display: contents;
	}
	.problems-cards {
		order: 1;
		flex-direction: row;
		gap: var(--spacing-4);
		height: auto;
		flex-wrap: nowrap;
	}
	.problems-card {
		flex: 1 1 0;
		gap: 0;
		min-width: 0;
		min-height: 80px;
		padding: var(--spacing-3);
		border-radius: var(--radius-2);
	}
	.problems-card:before {
		border-radius: var(--radius-2);
	}
	.problems-card.active:before {
		padding: 2px;
	}
	.problems-card-title {
		text-align: center;
	}
	.problems-card-desc.desktop-only {
		display: none;
	}
	.problems-active-desc {
		order: 2;
		display: block;
		padding: 0 var(--spacing-3);
		font-size: var(--text-heading-md);
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.problems-visual {
		order: 3;
		flex: none;
		width: 100%;
		aspect-ratio: 328/240;
		min-height: 0;
	}
	.problems-visual-item img {
        object-fit: cover;
    }
	.problems-conclusion {
		order: 4;
	}
	/* 
	    end: problems-page
	*/
	.product-subscription-step {
		align-items: stretch;
		gap: 0;
	}
	.product-subscription-step-item-title {
		text-wrap: wrap;
		text-align: center;
	}
}
@media (max-width: 768px) {
	/* 모바일에서 반응형 표시 제어 */
	.mobile-only {
		display: block;
	}
	.desktop-only {
		display: none;
	}
	
	/* 모바일에서 width 100%로 변경 */
	.section-main-swiper,
	.section-main-swiper-inner,
	.section-highlights-image,
	.section-support,
	.section-care-intro,
	.section-client {
		width: 100%;
		max-width: unset;
	}
	
	/* Main Swiper 모바일 최적화 */
	.section-main-swiper.use-breadcrumb {
		margin-top: 0;
	}
	.main-swiper .swiper-slide {
		height: auto;
		aspect-ratio: 9/14;
	}
	.main-swiper-item {
		height: auto;
		aspect-ratio: 9/14;
	}

	/*
	 * 모바일 + 가용 영역(헤더·하단바·safe area 제외) 비율이 9/14보다 높이가 짧을 때만 화면 높이에 맞춤.
	 * 조건: 가용높이 < 가로×14/9  ⇔  100dvh - R < 100vw×14/9  ⇔  max-height: 100vw×14/9 + R
	 * R = 헤더 + 탭바 + safe area (미디어쿼리에서 var 불가로 상수 사용, --header-h + --tab-bar-h + env(safe-area)와 맞춰 유지)
	 */
	@media (max-height: calc(100vw * 14 / 9 + 168px)) {
		.main-swiper .swiper-slide {
			height: calc(100dvh - var(--header-h) - var(--tab-bar-h) - env(safe-area-inset-bottom, 0px));
			min-height: 200px;
			aspect-ratio: unset;
		}
		.main-swiper-item {
			height: 100%;
			aspect-ratio: unset;
		}
	}
	.main-swiper-item img {
		object-position: center center; /* 모바일에서 이미지 중앙 정렬 */
	}
	
	/* Picture 태그 내 이미지 모바일 최적화 */
	.main-swiper-item picture {
		width: 100%;
		height: 100%;
		display: block;
	}
	.main-swiper-item picture img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		display: block;
	}
	
	/* 모바일에서 이미지 로딩 최적화 */
	.main-swiper-item picture img {
		transition: opacity 0.3s ease;
	}
	.main-swiper-item picture img[loading] {
		opacity: 0;
	}
	.main-swiper-item picture img[src] {
		opacity: 1;
	}
	
	/* 모바일에서 이미지 품질 최적화 */
	.main-swiper-item picture img {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
		-webkit-font-smoothing: antialiased;
	}
	
	/* 모바일에서 이미지 스케일링 최적화 */
	.main-swiper-item picture img {
		transform: translateZ(0); /* 하드웨어 가속 */
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
	}
	
	/* 스와이퍼 버튼 모바일 최적화 */
	.swiper-button-wrapper {
		left: var(--spacing-6);
		bottom: var(--spacing-6);
	}
	.swiper-button-box {
		gap: var(--spacing-5);
		padding: 0;
	}
	.swiper-button-prev, .swiper-button-next, .swiper-button-toggle {
		--swiper-navigation-size: 28px;
	}
	.swiper-button-prev svg, .swiper-button-next svg, .swiper-button-toggle svg {
		width: var(--spacing-5);
		height: var(--spacing-5);
	}

	.section-header {
		align-items: center;
	}
	.section-title {
		padding-left: calc(12px + 5px);
	}
	.section-title::after {
		width: 12px;
		height: 12px;
	}
	.section-description {
		align-items: center;
		gap: 6px;
	}
	.section-description .heading-xl {
		font-size: var(--text-heading-md);  /* 24px */
		font-weight: 600;
		line-height: 1.166;  /* 28px */
		text-align: center;
	}
	.section-description .mobile-only {
		display: none;
	}

	.section-product {
		gap: 19px;
		padding: 60px var(--spacing-5) 0;
	}
	.section-product.care-page {
		padding: 60px var(--spacing-5);
	}

	.product-contents {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: var(--spacing-5);
		width: 100%;
	}
	.product-top {
		/* height: auto;
		padding: var(--spacing-5); */
		height: auto;
		aspect-ratio: 156/127.72;
	}

	.product-bottom {
		gap: var(--spacing-7);
		padding: var(--spacing-7);
	}
	.product-name.heading-md {
		font-size: var(--text-heading-sm);  /* 20px */
		line-height: 1.2;  /* 24px */
	}
	.product-description {
		min-height: unset;
	}
	.product-price .body-lg.label, .product-price .body-lg.value, .product-price .value .price-value {
		font-size: var(--text-body-md);  /* 14px */
		line-height: 1.4285;
	}
	.product-price .value .before-sale-price {
		font-size: var(--text-body-sm);
		line-height: 1.3333;
	}
	.product-price:has(.before-sale-price) .value .price-value {
		font-weight: 500;
	}
	.product-more {
		font-size: var(--text-heading-xs);
		line-height: 1.3333;
	}

	/* 상품 더보기 버튼 (모바일 전용) */
	.product-more-button {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.product-more-btn {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: var(--spacing-2);
		width: fit-content;
		padding: var(--spacing);
		border-radius: var(--radius);
		font-size: var(--text-body-lg);
		font-weight: 700;
		line-height: 1.5;
		text-align: center;
		text-decoration: none;
		color: var(--white);
		transition: var(--transition);
		cursor: pointer;
	}
	.product-more-btn:hover {
		background: var(--blue-050);
	}
	.product-more-btn svg {
		width: var(--spacing-5);
		height: var(--spacing-5);
	}

	/* 케어 제품 아이템 모바일 최적화 */
	.product-more.desktop-only {
		display: none;
	}
	.product-cart-btn-wrapper {
		display: block;
	}
	.product-cart-btn-wrapper .btn {
		width: 100%;
		justify-content: center;
	}
	.btn.product-cart-btn .icon--custom path {
		stroke: var(--white);
		fill: var(--white);
	}

	.section-text .text-flow-item {
		font-size: 76px;
		line-height: 68px;
	}

	.section-tesllon-care {
		gap: 19px;
		padding: 60px var(--spacing-5);
	}
	.tesllon-care-contents {
		flex-direction: column;
		gap: var(--spacing-5);
	}
	.tesllon-care-item {
		gap: var(--spacing-5);
		padding: var(--spacing-7) var(--spacing-5);
		border-radius: var(--radius-4);
		background: var(--gray-100);
	}
	.tesllon-care-top {
		border-radius: var(--radius-4);
	}
	.why-need-tesllon-care {
		border: 1px solid var(--gray-200);
	}
	.tesllon-care-bottom {
		gap: 0;
		width: 100%;
		padding: 0;
	}
	.tesllon-care-bottom-inner {
		gap: var(--spacing-5);
		width: 100%;
	}
	.tesllon-care-bottom-title {
		font-size: var(--text-heading-xs);  /* 18px */
		line-height: 1.3333;  /* 24px */
	}
	.tesllon-care-bottom-description {
		font-size: var(--text-body-sm);  /* 12px */
		line-height: 1.3333;  /* 16px */
	}
	.tesllon-care-bottom-btn {
		display: none;
	}

	.section-support {
		padding: 0;
		background: var(--blue-100);
	}
	.section-support-inner {
		flex-direction: column;
		gap: var(--spacing-5);
		padding: 32px var(--spacing-5);
	}
	.section-support-inner .section-header, .section-support-inner .section-description {
		align-items: flex-start;
	}

	.support-contents {
		display: flex;
		gap: var(--spacing-3);
	}
	.support-item {
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		padding: var(--spacing-6) var(--spacing-5);
		border-radius: var(--radius-4);
	}
	.support-item-left {
		gap: 5px;
		min-width: unset;
	}
	.support-item-left .heading-md {
		font-size: var(--text-body-md);  /* 14px */
		line-height: 1.4285;  /* 20px */
	}
	.support-item-left .description {
		font-size: var(--text-body-sm);  /* 12px */
		line-height: 1.3333;  /* 16px */
	}
	.support-item-right {
		width: 60px;
		height: 60px;
	}
	.support-item-right img {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.support-item-right::before {
		display: none;
	}

	.support-contents {
		flex-direction: column;
	}

	.section-highlights {
		flex-direction: column;
		padding: 60px var(--spacing-5) 19px;
	}
	.section-highlights.haccp {
		gap: 19px;
	}
	.section-highlights.haccp .section-header.center {
		gap: 14px;
	}
	.section-highlights-description {
		display: none;
	}
	.section-highlights-image {
		overflow: unset;
	}
	.highlights-cards {
		padding: var(--spacing-9) var(--spacing-5);
	}
	.highlights-card {
		max-width: unset;
		max-height: unset;
		aspect-ratio: unset;
		gap: var(--spacing-7);
		padding: var(--spacing-5);
	}
	.highlights-card-title,
	.highlights-card-value {
		font-size: var(--text-heading-xs);  /* 18px */
		line-height: 1.3333;  /* 24px */
	}
	.highlights-card-title {
		padding-left: calc(12px + var(--spacing-3));
	}
	.highlights-card-title::after {
		width: 12px;
		height: 12px;
	}

	.section-where {
		padding: 60px var(--spacing-5) 19px;
	}
	.section-where .section-header-wrapper {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding: 0;
	}
	.section-where .section-where-description {
		display: none;
	}
	.section-where-swiper {
		padding: 0 var(--spacing-5) 60px;
	}
	.where-swiper .swiper-slide {
		width: 280px !important;
	}
	.where-card {
		padding: var(--spacing-5) var(--spacing-6);
	}
	.where-card-contents {
		gap: var(--spacing-5);
	}
	.where-card-contents .body-md.section-title {
		font-size: var(--text-body-sm);  /* 12px */
		font-weight: 500;
		line-height: 1.3333;  /* 16px */
	}
	.where-card-contents .heading-md {
		font-size: var(--text-heading-sm);  /* 20px */
		line-height: 1.2;  /* 24px */
	}
	.where-card-value {
		font-size: var(--text-body-sm);  /* 12px */
		line-height: 1.3333;  /* 16px */
	}
	.where-detail-panel-inner {
		padding-top: var(--spacing-5);
	}
	.where-detail-content {
		grid-template-columns: 1fr;
		gap: var(--spacing-4);
		padding: var(--spacing-4);
	}
	.where-detail-content.is-active {
		display: flex;
		flex-direction: column;
	}

	.scroll-track {
		padding: 34.87px 0;
	}
	.scroll-track img {
		max-height: 230.25px;
	}

	.section-client {
		gap: 19px;
		padding: 60px 0;
	}

	.section-care-intro-inner .section-header-wrapper {
		flex-direction: column;
		align-items: center;
	}
	.section-care-intro-inner .section-header-wrapper .section-where-description {
		display: none;
	}
	.section-care-intro-inner .section-description .mobile-only {
		display: block;
	}
	.care-intro-card-list {
		grid-template-columns: repeat(1, 1fr);
	}
	.card {
		padding: var(--spacing-8);
	}
	.card-title {
		font-size: var(--text-heading-sm);  /* 20px */
		line-height: 1.2;  /* 24px */
	}
	.card-description p {
		font-size: var(--text-body-md);
		line-height: 1.3333;
	}
	.card-image {
		right: var(--spacing-5);
		bottom: var(--spacing-5);
	}

	.section-care-intro {
		padding: 60px var(--spacing-5);
	}
	.section-care-intro-inner {
		gap: 19px;
	}

	.section-highlights.haccp .heading-xs.font-500 {
		font-size: var(--text-body-md);
		line-height: 1.4285;
		text-align: center;
	}
	.section-highlights-image.haccp {
		padding: 0;
	}
	.section-highlights-image.haccp .highlights-image-bg {
		border-radius: unset;
	}
	.highlights-cards.haccp {
		display: grid;
		gap: var(--spacing-5);
		height: 100%;
		padding: var(--spacing-8) var(--spacing-5);
	}
	.highlights-card.haccp-card {
		max-width: unset;
		height: 100%;
		min-height: unset;
		padding: 18px 15px;
		gap: var(--spacing-2);
	}
	.haccp-card-title {
		font-size: var(--text-heading-3xl);  /* 48px */
		line-height: 1.1666;  /* 56px */
	}
	.haccp-card-middle {
		margin-bottom: var(--spacing-4);
	}
	.haccp-card-middle .heading-lg {
		font-size: var(--text-heading-xs);  /* 18px */
		line-height: 1.3333;  /* 24px */
	}
	.haccp-card-middle .heading-sm,
	.highlights-card.haccp-card .body-lg {
		font-size: 10px;
		line-height: 1.3333;  /* 16px */
	}

	.section-problem {
		gap: 19px;
		padding: 60px var(--spacing-5) 0;
	}
	.problem-content {
		flex-direction: column-reverse;
		gap: 19px;
	}
	.problem-text-panel {
		max-width: unset;
		padding: var(--spacing-7);
	}
	.problem-text-content {
		gap: var(--spacing-3);
	}
	.problem-text-content .heading-xl {
		font-size: var(--text-heading-md);
		line-height: var(--text-heading-lg);
		margin-bottom: var(--spacing-5);
	}
	.problem-text-content .heading-xl .mobile-only {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-3);
	}
	.problem-text-content .heading-xs,
	.problem-text-content .heading-md {
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	.problem-text-content .heading-xs {
		font-weight: 400;
	}
	.problem-text-content .heading-xs.mobile-only {
		display: block;
	}

	.problem-description.desktop-only,
	.problem-quote.desktop-only,
	.desktop-only,
	.problem-text-content .heading-xs.desktop-only {
		display: none;
	}
	.problem-image {
		max-width: unset;
	}
	.section-solution {
		gap: var(--spacing-7);
		padding: 60px 0 0;
	}
	.section-solution .section-header.center {
		padding: 0 var(--spacing-5);
	}
	.solution-banner {
		border-radius: unset;
		overflow: unset;
	}
	.solution-banner-img img {
		aspect-ratio: 36/56;
	}
	.section-header, .section-header.center {
		gap: 14px;
	}
	.section-care-faq {
		padding-top: 0;
	}
	.care-faq-content-item-title.care-faq-row {
		padding: var(--spacing-5);
		font-size: var(--text-body-md);
		line-height: var(--text-body-xl);
	}
	.care-faq-content-item-answer .care-faq-answer {
		padding: 0 var(--spacing-5) var(--spacing-5);
		font-size: var(--text-body-md);
		line-height: var(--text-body-xl);
	}

	/* 
	
	start: problems-page
	*/
	.section-problems {
		padding: 60px var(--spacing-5) 0;
	}
	.section-problems-inner {
		gap: 19px;
		padding: 0;
	}
	.section-problems .section-description .mobile-only {
        display: block;
    }
	.problems-content {
        gap: var(--spacing-4);
    }
	.problems-card-title {
		font-size: var(--text-body-md);
		line-height: 1.5;
	}
	.problems-card-desc.desktop-only {
		display: none;
	}
	.problems-active-desc {
		padding: 0 var(--spacing-3);
		font-size: var(--text-body-md);
		line-height: 1.4285;
	}
	.problems-conclusion {
		padding: var(--spacing-6);
		border-radius: var(--radius-2);
		font-size: var(--text-body-md);
		line-height: 1.4285;
	}
	.problems-conclusion-emphasis {
		color: var(--secondary);
	}
	/* 
	
	end: problems-page
	*/
	/* 
	    start: subscription-step
	*/
	.product-subscription-step {
		align-items: stretch;
		gap: 0;
	}
	.product-subscription-step-item {
		gap: 6px;
		width: 67px;
		overflow: unset;
	}
	.product-subscription-step-item-image {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 72px;
		padding: var(--spacing-5);
	}
	.product-subscription-step-item-image img {
		width: 32px;
		height: 32px;
		object-fit: cover;
	}
	.product-subscription-step-item-title {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-width: 0;
		min-height: 44px;
		padding: var(--spacing) 2.5px;
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
		text-wrap: wrap;
		text-align: center;
	}
	.product-subscription-step-arrow {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 78px;
		margin-bottom: unset;
	}
	.product-subscription-step-arrow svg {
		width: 12px;
		height: 12px;
	}
	.product-subscription-step-arrow svg path {
		stroke-width: 2px;
	}
	/* 
	end: subscription-step
	*/
	/* 
	start: subscription-list
	*/
	.product-subscription-list-wrapper {
		gap: var(--spacing-3);
		width: 100%;
		margin: 13px 0;
	}
	.product-subscription-list {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--spacing-4);
		max-width: 375px;
	}
	.product-subscription-plan-promo {
		top: -16px;
		right: -17px;
		bottom: 0;
		display: block;
		width: 80px;
		height: 80px;
	}
	.product-subscription-plan {
		gap: 18px;
		padding: var(--spacing-7) var(--spacing-4);
		border-radius: var(--radius-2);
	}
	.product-subscription-plan:has(.product-subscription-plan-promo) {
		padding-bottom: var(--spacing-7);
		padding-right: var(--spacing-7);
	}
	.product-subscription-plan.is-featured::before {
		padding: 2px;
		border-radius: var(--radius-2);
	}
	.product-subscription-plan-header {
		gap: var(--spacing-4);
	}
	.product-subscription-plan-title-box {
		gap: var(--spacing-2);
	}
	.product-subscription-plan-title {
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	.product-subscription-plan-badge {
		padding: 6px;
		border-radius: var(--spacing-2);
	}
	.product-subscription-plan-badge svg {
		width: 20px;
		height: 6px;
	}
	.product-subscription-plan-price {
		flex-direction: row;
		gap: var(--spacing-2);
	}
	.product-subscription-plan-price-value {
		font-size: var(--text-heading-md);
		line-height: var(--text-heading-lg);
	}
	.product-subscription-plan-price-label {
		font-size: 11px;
		font-weight: 400;
		line-height: var(--text-body-lg);
		color: var(--text-third);
	}
	.product-subscription-plan-description {
		font-size: var(--text-body-lg);
		line-height: var(--text-heading-xs);
	}
	.product-subscription-plan-benefits {
		gap: var(--spacing-3);
	}
	.product-subscription-plan-benefit {
		gap: var(--spacing-2);
		padding: 0;
	}
	.product-subscription-plan-benefit-icon {
		width: 16px;
		height: 16px;
	}
	.product-subscription-plan-benefit-text {
		font-size: var(--text-body-sm);
		line-height: var(--text-body-lg);
	}
	.product-subscription-plan-benefit-text br.desktop-only {
		display: none;
	}
	.product-subscription-plan-benefit-text .emphasis {
		font-weight: 600;
	}
	.product-subscription-list-note {
		font-size: 11px;
		line-height: var(--text-body-lg);
		text-align: center;
		word-break: keep-all;
	}
	/* 
	end: subscription-list
	*/
	.product-contents-care .product-contents {
        flex-direction: column;
    }
	.product-contents-care .product-item {
		align-self: center;
	}
	.product-contents-care .product-info,
	.product-contents-care .product-price-list {
		gap: var(--spacing-5);
	}
	.product-contents-care .product-code {
		font-size: var(--text-body-sm);
		line-height: var(--text-body-lg);
	}
	.product-description {
		max-height: 40px;
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	.product-contents-care .product-price-row-label,
	.product-contents-care .product-price-row-value,
	.product-contents-care .product-price-row-num {
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	/* 
    start: support-page
	*/
	.support-page .section-support-inner {
		align-items: flex-start;
		gap: var(--spacing-6);
		padding: var(--spacing-9) var(--spacing-5);
	}
	.support-page .section-support-inner .section-header,
	.support-page .section-support-inner .section-description {
		align-items: center;
		width: 100%;
	}
	.support-contents-container {
		gap: var(--spacing-6);
		margin-bottom: 0;
	}
	.support-best-faq-list {
		gap: var(--spacing-3);
	}
	.support-best-faq-item-number {
		width: 20px;
		height: 20px;
		font-size: var(--text-body-sm);
		line-height: var(--text-body-lg);
	}
	.support-item-title {
		-webkit-line-clamp: 2;
		line-clamp: 2;
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	.support-best-faq-item {
		gap: var(--spacing-4);
		padding: var(--spacing-4) var(--spacing-5);
		border-radius: var(--radius-2);
	}
	.support-page .section-title {
		padding-left: calc(12px + 5.33px);
		font-size: var(--text-body-xl);
		line-height: 1.3333;
	}
	.support-page .section-title::after {
		width: 12px;
		height: 12px;
	}
	.support-page .section-description .heading-4xl {
		font-size: var(--text-heading-md);  /* 24px */
		line-height: 1.166;
	}
	.support-page .support-contents {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--spacing-3);
	}
	.support-page .support-item {
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		padding: var(--spacing-6) var(--spacing-5);
		border-radius: var(--radius-2);
	}
	.support-page .support-item-left .heading-sm {
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	.support-page .support-item-right {
		width: 60px;
		height: 60px;
	}
	.support-recent-box {
		gap: var(--spacing-6);
		margin-top: var(--spacing-9);
	}
	.support-recent-box-title .heading-xl {
		font-size: var(--text-heading-sm);
		line-height: var(--text-heading-md);
	}
	.support-recent-box-title .btn--text {
		padding: var(--spacing);
		font-size: var(--text-body-md);
		line-height: var(--text-heading-sm);
	}
	.support-recent-box-title .btn--text svg {
		width: 16px;
		height: 16px;
	}
	.support-recent-notice-list {
		gap: var(--spacing-4);
	}
	.support-recent-notice-item {
		gap: var(--spacing-4);
		padding: var(--spacing-6) var(--spacing-5);
	}
	.support-item-date {
		font-size: var(--text-body-sm);
		line-height: var(--text-body-lg);
	}
	.support-recent-event-list,
	.support-recent-event-item {
		gap: var(--spacing-5);
	}
	.support-recent-event-item-left {
		flex: 120 1 0%;
		aspect-ratio: 3 / 2;
	}
	.support-recent-event-item-left .event-placeholder-icon {
        width: 40px;
    }
	.support-recent-event-item-left .event-placeholder-text {
        display: none;
    }
	.support-recent-event-item-right {
		flex: 192 1 0%;
		gap: var(--spacing-4);
	}
	/* 
		end: support-page
	*/
}

@media (max-width: 480px) {
	.product-contents {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.highlights-cards {
		grid-template-columns: repeat(1, 1fr);
	}
	.highlights-cards.haccp {
		grid-template-columns: repeat(2, 1fr);
	}
}
