@charset "utf-8";
/* ======================================================================
   Pulmuone Lohas Main CSS
   -JSP common stylesheet
   ====================================================================== */

/* ----------------------------------------------------------------------
   7. Breadcrumb
---------------------------------------------------------------------- */
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	color: #8b958f;
	font-size: var(--font-size-sm);
}
.kicker{
	color:#161b18;
	
}
.breadcrumb strong, .breadcrumb .current {
	color: var(--color-primary-deep);
	font-weight: 800;
}

/* ----------------------------------------------------------------------
   8. Hero
---------------------------------------------------------------------- */
.hero-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-xl);
	background: var(--color-surface);
	box-shadow: var(--shadow-md);
}

.hero-slide {
	display: none;
	min-height: 430px;
}

.hero-slide.active {
	display: grid;
}

.hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 54px 34px 48px 54px;
}

.hero-copy h1 {
	margin: 16px 0;
	font-size: var(--font-size-hero);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: var(--letter-spacing-hero);
}

.hero-copy h1 em {
	color: var(--color-primary);
	font-style: normal;
}

.hero-copy p {
	margin: 0 0 28px;
	color: var(--color-sub);
	font-size: 17px;
	line-height: var(--line-height-loose);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-media {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background: #eef2eb;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% center;
}

.hero-badge {
	position: absolute;
	top: 26px;
	right: 26px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.88);
	color: var(--color-primary-deep);
	font-size: var(--font-size-sm);
	font-weight: 800;
	line-height: 1.2;
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(8px);
}

.hero-control {
	position: absolute;
	bottom: 28px;
	left: 54px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #cad2cc;
	transition: width var(--duration-base) var(--ease-base),
		background-color var(--duration-base) var(--ease-base);
}

.hero-dot.active {
	width: 28px;
	border-radius: var(--radius-pill);
	background: var(--color-primary);
}

.hero-count {
	margin-left: 8px;
	color: #86918a;
	font-size: var(--font-size-sm);
	font-weight: 700;
}

/* ----------------------------------------------------------------------
   9. Quick Finder / Chips / Stats
---------------------------------------------------------------------- */
.quick-panel {
	display: grid;
	grid-template-columns: 240px 1fr auto;
	align-items: center;
	gap: 24px;
	margin-top: 22px;
	padding: 20px 24px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #ffffff, #fbfdf9);
	box-shadow: var(--shadow-sm);
}

.quick-title small {
	display: block;
	color: var(--color-primary-deep);
	font-size: var(--font-size-xs);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.1em;
}

.quick-title strong {
	display: block;
	margin-top: 5px;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid #dce4da;
	border-radius: var(--radius-pill);
	background: var(--color-white);
	color: #536057;
	font-size: var(--font-size-sm);
	font-weight: 800;
	line-height: 1.2;
	transition: border-color var(--duration-fast) var(--ease-base),
		background-color var(--duration-fast) var(--ease-base), color
		var(--duration-fast) var(--ease-base), transform var(--duration-fast)
		var(--ease-base);
}

.chip:hover, .chip.active {
	border-color: var(--color-primary);
	background: var(--color-primary-soft);
	color: var(--color-primary-deep);
}

.chip:hover {
	transform: translateY(-1px);
}

.quick-stat, .stat-group {
	display: flex;
	gap: 8px;
}

.stat {
	min-width: 78px;
	padding: 10px 14px;
	border: 1px solid #dfe8db;
	border-radius: var(--radius-md);
	background: var(--color-surface-soft);
	text-align: center;
}

.stat strong {
	display: block;
	color: var(--color-primary-deep);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.stat span {
	display: block;
	margin-top: 2px;
	color: var(--color-muted);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
}

/* ----------------------------------------------------------------------
   10. Cards
---------------------------------------------------------------------- */
.card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	box-shadow: var(--shadow-card);
}

.card-hover {
	transition: transform var(--duration-base) var(--ease-base),
		border-color var(--duration-base) var(--ease-base), box-shadow
		var(--duration-base) var(--ease-base);
}

.card-hover:hover {
	transform: translateY(-3px);
	border-color: var(--color-line-strong);
	box-shadow: var(--shadow-card-hover);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 3fr));
	gap: 65px;
}

.product-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	transition: transform var(--duration-base) var(--ease-base),
		border-color var(--duration-base) var(--ease-base), box-shadow
		var(--duration-base) var(--ease-base);
}

.product-card:hover {
	transform: translateY(-3px);
	border-color: var(--color-line-strong);
	box-shadow: var(--shadow-card-hover);
}

.product-card .tag {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
}

.product-visual {
	display: grid;
	place-items: center;
	height: 260px;
	overflow: hidden;
	background: white;
}

.product-visual img {
	width: 88%;
	height: 88%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 0.25s var(--ease-base);
}

.product-card:hover .product-visual img {
	transform: scale(1.035);
}

.product-body {
	padding: 20px;
}

.product-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #8a948e;
	font-size: var(--font-size-xs);
	font-weight: 800;
	line-height: 1.3;
}

.product-body h3 {
	margin: 8px 0;
	font-size: var(--font-size-xl);
	font-weight: 900;
	line-height: 1.3;
}
.product-body p {
	min-height: 42px;
	color: var(--color-sub);
	font-size: 13px;
	line-height: 1.65;
}
.product-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 15px;
	border-top: 1px solid #edf0ec;
}
.price {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.card-arrow {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 11px;
	background: var(--color-primary-soft);
	color: var(--color-primary-deep);
	font-weight: 900;
}

/* ----------------------------------------------------------------------
   11. Brand Tiles
---------------------------------------------------------------------- */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 100px;
	gap: 16px;
}

.brand-card {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--radius-lg);
	color: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.brand-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--duration-slow) var(--ease-base);
}

.brand-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.brand-card:hover img {
	transform: scale(1.045);
}

.brand-card .copy {
	position: absolute;
	right: 20px;
	bottom: 18px;
	left: 20px;
	z-index: 2;
}

.brand-card small {
	display: block;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.12em;
	opacity: 0.85;
}

.brand-card strong {
	display: block;
	margin-top: 6px;
	font-size: var(--font-size-xl);
	font-weight: 900;
	line-height: 1.3;
}

.brand-card span {
	display: block;
	margin-top: 5px;
	font-size: var(--font-size-sm);
	line-height: 1.5;
	opacity: 0.9;
}

.brand-card.big {
	grid-column: span 6;
	grid-row: span 5;
}

.brand-card.medium {
	grid-column: span 4;
	grid-row: span 2;
}

.brand-card.small {
	grid-column: span 4;
	grid-row: span 2;
}
 
.brand-card.wide {
	grid-column: span 7;
	grid-row: span 2;
}

.brand-card.light::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02),
		rgba(15, 46, 35, 0.42));
}

/* ----------------------------------------------------------------------
   12. Notice / Support
---------------------------------------------------------------------- */
.news-layout {
	display: grid;
	gap: 18px;
}

.notice-list {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: 18px;
	background: var(--color-white);
}

.notice {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid #edf1ec;
	transition: background-color var(--duration-fast) var(--ease-base);
}

.notice:hover {
	background: var(--color-surface-soft);
}

.notice:last-child {
	border-bottom: 0;
}

.notice .label, .label {
	display: grid;
	place-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: var(--radius-pill);
	background: var(--color-primary-soft);
	color: var(--color-primary-deep);
	font-size: var(--font-size-xs);
	font-weight: 900;
	line-height: 1.2;
}

.notice strong {
	min-width: 0;
	overflow: hidden;
	font-size: var(--font-size-md);
	font-weight: 800;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.notice span:last-child {
	color: #98a19b;
	font-size: var(--font-size-sm);
	line-height: 1.3;
}

.support-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 210px;
	padding: 24px;
	border-radius: 18px;
	background: linear-gradient(135deg, #173d31, #24684d);
	color: var(--color-white);
}

.support-card small {
	color: #b9e48a;
	font-size: var(--font-size-xs);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.1em;
}

.support-card h3 {
	margin: 8px 0 10px;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.3;
}

.support-card p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.7;
}

.support-links {
	display: flex;
	gap: 8px;
	margin-top: 24px;
}

.support-links a {
	flex: 1;
	padding: 11px 10px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	font-size: var(--font-size-sm);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: background-color var(--duration-fast) var(--ease-base),
		border-color var(--duration-fast) var(--ease-base);
}

.support-links a:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.14);
}

/* ----------------------------------------------------------------------
   14. Table / Board Common
---------------------------------------------------------------------- */
.board-table {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: 18px;
	background: var(--color-white);
}

.board-table table {
	table-layout: fixed;
}

.board-table th, .board-table td {
	padding: 16px 18px;
	border-bottom: 1px solid #edf1ec;
	text-align: left;
	vertical-align: middle;
}

.board-table th {
	background: var(--color-surface-soft);
	color: #39443e;
	font-size: 13px;
	font-weight: 900;
}

.board-table td {
	color: var(--color-sub);
	font-size: 13px;
}

.board-table tr:last-child th, .board-table tr:last-child td {
	border-bottom: 0;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 24px;
}

.pagination a, .pagination button {
	display: grid;
	place-items: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid var(--color-line);
	border-radius: 11px;
	background: var(--color-white);
	color: #536057;
	font-size: 13px;
	font-weight: 800;
}

.pagination .active, .pagination a:hover, .pagination button:hover {
	border-color: var(--color-primary-deep);
	background: var(--color-primary-deep);
	color: var(--color-white);
}

.box_policy h4 {
    color: #4a4a4a;
    font-size: 17px;
    line-height: 2em;
    margin-top: 30px;
}
