:root {
    --hc-forest: #111111;
    --hc-gold: #555555;
    --hc-cream: #f8f8f8;
    --hc-sand: #eeeeee;
    --hc-ink: #111111;
    --hc-muted: #666666;
}

body {
    background: #ffffff;
    color: var(--hc-ink);
}

.hc-page {
    padding-top: 0;
}

.hc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.52));
    color: #fff;
}

.hc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(80, 80, 80, 0.14), transparent 40%);
}

/* ── 서브페이지 히어로 단일 배경 이미지 ── */
.hc-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    z-index: 0;
}

/* ── 메인 히어로 슬라이더 (레거시, Bootstrap carousel로 대체됨) ── */
.hc-hero__slides {
    position: absolute;
    inset: 0;
}
.hc-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
.hc-hero__slide--1 {
    animation: hc-slide-fade 10s ease-in-out infinite;
}
.hc-hero__slide--2 {
    animation: hc-slide-fade 10s 5s ease-in-out infinite;
    animation-fill-mode: backwards;
}
@keyframes hc-slide-fade {
    0%   { opacity: 0; }
    10%  { opacity: 0.42; }
    50%  { opacity: 0.42; }
    60%  { opacity: 0; }
    100% { opacity: 0; }
}

/* 메인 히어로 (index.php) — 크게 */
.hc-hero__inner {
    position: relative;
    z-index: 1;
    padding: 220px 0 180px;
}
/* 서브페이지 히어로 배너 — 컴팩트 */
.hc-hero__inner.text-center {
    padding: 90px 0 80px;
}

.hc-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--hc-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hc-hero h1,
.hc-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hc-subtitle,
.hc-text {
    color: var(--hc-muted);
    line-height: 1.8;
}

.hc-hero .hc-subtitle {
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    margin: 18px auto 0;
}

.hc-divider {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--hc-gold), rgba(80, 80, 80, 0.2));
    margin: 22px 0 28px;
}

.hc-hero .hc-divider {
    margin-left: auto;
    margin-right: auto;
}

.hc-section {
    padding: 72px 0;
}

.hc-section--alt {
    background: rgba(255, 255, 255, 0.56);
}

.hc-surface {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* 서브페이지 제품 소개 박스 — 내용이 상단에서 3줄 아래부터 시작 */
.hc-section .hc-surface.p-4,
.hc-section .hc-surface.p-lg-5 {
    padding-top: 3.5rem !important;
}

/* 제품 소개 박스 — 텍스트가 상단 테두리와 겹치지 않도록 충분한 상단 여백 */
.hc-product-intro-box {
    padding: 2rem;
    padding-top: 5.5rem !important;   /* 4칸 여유 — 약 88px */
}
@media (min-width: 992px) {
    .hc-product-intro-box {
        padding: 2.5rem;
        padding-top: 6rem !important;  /* 96px */
    }
}

.hc-card,
.hc-surface {
    border-radius: 16px;
}

.hc-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.hc-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hc-card__body {
    padding: 24px;
}

.hc-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hc-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--hc-forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hc-btn-primary,
.hc-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
    word-break: keep-all;
}

.hc-btn-primary {
    background: var(--hc-forest);
    color: #fff;
    border: 1px solid transparent;
    text-decoration: none;
}

.hc-btn-primary:hover,
.hc-btn-primary:focus {
    color: #fff;
    background: #333;
    text-decoration: none;
}

.hc-btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: var(--hc-forest);
    background: transparent;
    text-decoration: none;
}

.hc-btn-outline:hover,
.hc-btn-outline:focus {
    color: var(--hc-forest);
    background: rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.hc-sticky-media {
    position: sticky;
    top: 94px;
}

.hc-sticky-media img,
.hc-cover {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.hc-meta {
    display: grid;
    gap: 10px;
}

.hc-meta__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
}

.hc-meta__row strong {
    color: var(--hc-forest);
}

.hc-list {
    margin: 0;
    padding-left: 18px;
}

.hc-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.hc-timeline {
    display: grid;
    gap: 18px;
}

.hc-timeline__item {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hc-timeline__year {
    color: var(--hc-gold);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
}

.hc-facility-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hc-facility-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.hc-faq__item {
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hc-faq__question {
    font-weight: 700;
    margin-bottom: 10px;
}

.hc-chip {
    display: inline-flex;
    align-items: center;
    margin: 0 10px 10px 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--hc-forest);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    word-break: keep-all;
    text-decoration: none;
    transition: all 0.18s;
}

.hc-chip:hover {
    background: #fff;
    text-decoration: none;
    color: var(--hc-forest);
}

.hc-chip--light {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hc-chip--light:hover {
    background: rgba(255, 255, 255, 0.36);
    color: #fff;
}

.hc-site-header {
    position: relative;
    z-index: 1040;
}

/* ── 구 내비게이션 CSS 제거됨 (navication.php 인라인 스타일로 대체) ── */

/* ══ FOOTER: B&W theme ══ */
.hc-footer {
    background: #f5f5f5;
    color: #555;
    padding: 0 0 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* 고객센터 섹션 */
.hc-footer__cs-section {
    background: #ebebeb;
    padding: 36px 0;
    margin-bottom: 28px;
}
.hc-footer__cs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.hc-footer__cs-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}
.hc-footer__cs-phone {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.hc-footer__cs-phone a {
    color: var(--hc-forest);
    text-decoration: none;
}
.hc-footer__cs-phone a:hover { color: #333; text-decoration: none; }
.hc-footer__cs-hours {
    font-size: 13px;
    color: #999;
}
.hc-footer__cs-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.hc-footer__cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 4px;
    background: transparent;
    color: var(--hc-forest);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
}
.hc-footer__cs-btn:hover,
.hc-footer__cs-btn:focus {
    background: var(--hc-forest);
    color: #fff;
    text-decoration: none;
}
.hc-footer__cs-btn--gold {
    border-color: rgba(0, 0, 0, 0.3);
    color: #555;
}
.hc-footer__cs-btn--gold:hover {
    background: #555;
    border-color: #555;
    color: #fff;
}

/* 정책 링크 */
.hc-footer__policy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 10px;
}
.hc-footer__policy-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
}
.hc-footer__policy-links a {
    color: #888;
    text-decoration: none;
    padding: 0 12px;
}
.hc-footer__policy-links a:first-child { padding-left: 0; }
.hc-footer__policy-links a:hover,
.hc-footer__policy-links a:focus { color: var(--hc-forest); }
.hc-footer__policy-links .fp-sep { color: rgba(0,0,0,0.18); margin: 0; }
.hc-footer__policy-links a.is-privacy { font-weight: 700; color: var(--hc-forest); }
.hc-footer__top-btn {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.hc-footer__top-btn:hover { background: var(--hc-forest); color: #fff; border-color: var(--hc-forest); }

/* 브랜드 + 사업자 정보 */
.hc-footer__brand-row {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.hc-footer__brand-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
}
.hc-footer__brand-logo { height: 28px; width: auto; }
.hc-footer__brand-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--hc-forest);
    letter-spacing: -0.01em;
}
.hc-footer__brand-partner {
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
}
.hc-footer__biz-col {
    font-size: 11.5px;
    color: #aaa;
    line-height: 1.95;
    flex: 1;
    min-width: 0;
}
.hc-footer__biz-col strong { color: #888; }
.hc-footer__copy {
    font-size: 11px;
    color: #bbb;
    margin: 0;
}

/* footer 링크 기본색 (policy row 바깥) */
.hc-footer a { color: #888; text-decoration: none; }
.hc-footer a:hover, .hc-footer a:focus { color: var(--hc-forest); }

/* 반응형 */
@media (max-width: 767.98px) {
    .hc-footer__cs-row { flex-direction: column; align-items: flex-start; }
    .hc-footer__cs-phone { font-size: 1.8rem; }
    .hc-footer__brand-row { flex-direction: column; gap: 14px; }
    .hc-footer__policy-row { flex-direction: column; align-items: flex-start; }
    .hc-footer__policy-links a { padding: 0 8px; }
}

@media (max-width: 991.98px) {
    .hc-hero__inner {
        padding: 160px 0 130px;
    }
    .hc-hero__inner.text-center {
        padding: 70px 0 60px;
    }

    .hc-sticky-media {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .hc-hero h1,
    .hc-title {
        font-size: 1.8rem;
    }

    .hc-section {
        padding: 54px 0;
    }

    .hc-card__body {
        padding: 20px;
    }
}

/* ══════════════════════════════════════════════
   B&W 메인 홈 (hc-home-bw) — purevirgin.ule.kr 스타일
══════════════════════════════════════════════ */

/* ── purevirgin 스타일 Bootstrap 캐러셀 히어로 ── */
.hc-pv-hero {
    background: #f5f5f5;
    border-bottom: 1px solid #e4e4e4;
    overflow: hidden;
    position: relative;
}
.hc-pv-hero .carousel-inner {
    background: transparent;
}
.hc-pv-hero .carousel-item {
    background: #f5f5f5;
}
.hc-pv-hero__row {
    min-height: 480px;
    padding: 60px 0 50px;
}
.hc-pv-hero__copy {
    padding-right: 40px;
}
.hc-pv-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}
.hc-pv-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}
.hc-pv-hero__sub {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 32px;
}
.hc-pv-hero__btn {
    display: inline-block;
    padding: 13px 32px;
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: background 0.18s;
}
.hc-pv-hero__btn:hover { background: #333; color: #fff; text-decoration: none; }
.hc-pv-hero__img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hc-pv-hero__img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s;
}
.hc-pv-hero .carousel-item.active .hc-pv-hero__img img { filter: grayscale(0%); }

/* Carousel controls — dark arrows on light bg */
.hc-pv-hero .carousel-control-prev,
.hc-pv-hero .carousel-control-next {
    width: 48px;
    background: rgba(0,0,0,0.12);
    opacity: 1;
    transition: background 0.18s;
}
.hc-pv-hero .carousel-control-prev:hover,
.hc-pv-hero .carousel-control-next:hover {
    background: rgba(0,0,0,0.26);
}
.hc-pv-hero .carousel-control-prev-icon,
.hc-pv-hero .carousel-control-next-icon {
    filter: invert(1) brightness(0);
    width: 20px;
    height: 20px;
}
/* Carousel indicators */
.hc-pv-hero .carousel-indicators {
    bottom: 14px;
}
.hc-pv-hero .carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
    border: none;
    opacity: 1;
    margin: 0 4px;
}
.hc-pv-hero .carousel-indicators .active {
    background: #111;
}

/* 히어로 B&W 오버레이 (레거시 유지) */
.hc-hero--bw {
    background: linear-gradient(135deg, rgba(0,0,0,0.60), rgba(0,0,0,0.45));
}
.hc-hero--bw::after { display: none; }

.hc-bw-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
}
.hc-bw-eyebrow--dark { color: #999; }

.hc-bw-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}
.hc-bw-line {
    width: 40px;
    height: 2px;
    background: #fff;
    margin: 18px 0;
}
.hc-bw-line--dark { background: #222; }

.hc-bw-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 28px;
}
.hc-bw-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: background 0.18s;
}
.hc-bw-hero-btn:hover { background: #333; color: #fff; text-decoration: none; }

/* ── 3열 퀵 배너 ── */
.hc-bw-banners {
    padding: 28px 0;
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
}
.hc-bw-banner {
    display: block;
    background: #fff;
    border: 1px solid #e4e4e4;
    text-decoration: none;
    color: #111;
    transition: box-shadow 0.18s, transform 0.18s;
    overflow: hidden;
}
.hc-bw-banner:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.10); transform: translateY(-2px); color: #111; text-decoration: none; }
.hc-bw-banner__img { overflow: hidden; }
.hc-bw-banner__img img {
    width: 100%; height: 160px; object-fit: cover; display: block;
    filter: grayscale(20%);
    transition: transform 0.3s, filter 0.3s;
}
.hc-bw-banner:hover .hc-bw-banner__img img { transform: scale(1.04); filter: none; }
.hc-bw-banner__body { padding: 16px 18px 18px; }
.hc-bw-banner__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 5px;
}
.hc-bw-banner strong { display: block; font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 5px; }
.hc-bw-banner p { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 10px; }
.hc-bw-banner__more {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111;
    border-bottom: 1px solid #111;
    padding-bottom: 1px;
}

/* ── 인기상품 ── */
.hc-bw-products {
    padding: 52px 0;
    background: #fff;
}
.hc-bw-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}
.hc-bw-card {
    border: 1px solid #e8e8e8;
    background: #fff;
    overflow: hidden;
}
.hc-bw-card__img-wrap { display: block; overflow: hidden; }
.hc-bw-card__img-wrap img {
    width: 100%; height: 220px; object-fit: cover; display: block;
    filter: grayscale(15%);
    transition: transform 0.3s, filter 0.3s;
}
.hc-bw-card:hover .hc-bw-card__img-wrap img { transform: scale(1.05); filter: none; }
.hc-bw-card__body { padding: 14px 14px 16px; }
.hc-bw-card__name { font-size: 0.88rem; color: #222; line-height: 1.5; margin-bottom: 6px; }
.hc-bw-card__name a { color: inherit; text-decoration: none; }
.hc-bw-card__name a:hover { color: #111; }
.hc-bw-card__price { font-size: 0.95rem; font-weight: 700; color: #111; margin: 0; }
.hc-bw-more-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    letter-spacing: 0.06em;
}
.hc-bw-more-link:hover { color: #444; text-decoration: none; }

/* ── 풀 다크 배너 ── */
.hc-bw-fullbanner {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.hc-bw-fullbanner__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.38);
}
.hc-bw-fullbanner__overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}
.hc-bw-fullbanner__sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.hc-bw-fullbanner__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 26px;
    letter-spacing: -0.02em;
}
.hc-bw-fullbanner__btn {
    display: inline-block;
    padding: 11px 28px;
    background: #fff;
    color: #111;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.18s;
}
.hc-bw-fullbanner__btn:hover { background: #e0e0e0; color: #111; text-decoration: none; }

/* ── 리얼리뷰 ── */
.hc-bw-reviews {
    padding: 52px 0;
    background: #f5f5f5;
}
.hc-bw-review-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 20px 16px;
    height: 100%;
}
.hc-bw-review-card__img {
    margin-bottom: 12px;
    overflow: hidden;
}
.hc-bw-review-card__img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}
.hc-bw-review-card__stars {
    color: #111;
    font-size: 0.82rem;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
}
.hc-bw-review-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
    line-height: 1.4;
}
.hc-bw-review-card__reviewer {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 8px;
}
.hc-bw-review-card__text {
    font-size: 0.80rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── 카테고리 그리드 ── */
.hc-bw-categories {
    padding: 52px 0;
    background: #f8f8f8;
}
.hc-bw-catcard {
    background: #fff;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    transition: box-shadow 0.18s;
}
.hc-bw-catcard:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.hc-bw-catcard__img { overflow: hidden; }
.hc-bw-catcard__img img {
    width: 100%; height: 190px; object-fit: cover; display: block;
    filter: grayscale(20%);
    transition: transform 0.3s, filter 0.3s;
}
.hc-bw-catcard:hover .hc-bw-catcard__img img { transform: scale(1.04); filter: none; }
.hc-bw-catcard__body { padding: 14px 16px 16px; }
.hc-bw-catcard h3 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 5px; }
.hc-bw-catcard p { font-size: 0.80rem; color: #666; line-height: 1.6; margin-bottom: 10px; }
.hc-bw-catcard__link {
    font-size: 0.76rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 1px;
}
.hc-bw-catcard__link:hover { color: #444; }

/* ── Natural Wellness (하단 푸터 바로 위) ── */
.hc-bw-wellness {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}
.hc-bw-wellness__title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 10px 0 14px;
    letter-spacing: -0.02em;
}
.hc-bw-wellness__text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 10px;
}

/* ── 반응형 ── */
@media (max-width: 991.98px) {
    .hc-pv-hero__row { min-height: 0; padding: 40px 0 30px; }
    .hc-pv-hero__copy { padding-right: 0; margin-bottom: 28px; }
    .hc-pv-hero__title { font-size: 2.2rem; }
    .hc-pv-hero__img img { max-height: 280px; }
}
@media (max-width: 767.98px) {
    .hc-bw-hero-title { font-size: 2rem; }
    .hc-bw-fullbanner { height: 300px; }
    .hc-bw-fullbanner__title { font-size: 1.6rem; }
    .hc-bw-card__img-wrap img { height: 170px; }
    .hc-bw-catcard__img img { height: 150px; }
    .hc-bw-wellness { padding: 48px 0; }
    .hc-bw-wellness__title { font-size: 1.5rem; }
    .hc-pv-hero__title { font-size: 1.8rem; }
    .hc-bw-review-card { margin-bottom: 0; }
}

/* ══ 푸터 — 헤더 내폭(1400px)과 동일하게 통일 ══
   header-inner { width:1400px } 기준 전체 통일 */
.hc-footer .container {
    max-width: 1400px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
@media (max-width: 1440px) {
    .hc-footer .container { max-width: 100% !important; }
}
