@charset "UTF-8";
@import url(font.css);

:root {
    --primary-color: #2d5a4c; /* 디자인의 진녹색 포인트 컬러 */
    --text-color: #333;
    --content-width: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { font-family: 'Paperozi','맑은 고딕', sans-serif; color: var(--text-color); overflow-x: hidden; word-break: keep-all; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; }

.content-width {
    width: var(--content-width);
    margin: 0 auto;
}

/* Header & GNB */
.header {
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.01);
    transition: background 0.3s, border-color 0.3s;
}

.header.is-scrolled {
    background: #fff;
    border-bottom-color: #eee;
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { font-size: 24px; font-weight: 700; }
.logo span{ font-size: 24px; font-weight: 400; }

.util-menu a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 40px;
}

.util-menu i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.util-menu a:hover {color:#18533e;}

.mobile-menu-btn {
    display: none;
}

/* GNB 레이아웃 */
.gnb {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    gap: 34px; /* 메뉴 간 간격 조절 */
}

.menu-item {
    position: relative; /* 서브메뉴의 기준점 */
    width: 150px;
}

.depth1 {
    display: block;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

/* 서브메뉴 스타일 */
.sub-menu {
    position: absolute;
    top: 100%; /* 메인메뉴 바로 아래 */
    left: 0;
    width: 150px; /* 서브메뉴 너비 */
    padding-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.sub-menu li {
    margin-bottom: 12px;
}

.sub-menu li a {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    color: #666;
    transition: color 0.2s;
}

.sub-menu li a:hover {
    color: #2d5a4c;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Hover 시 인터랙션 */
.menu-item:hover .depth1,
.menu-item.is-open .depth1 {
    color: #2d5a4c;
}

.menu-item.is-open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 전체 배경 확장 (필요 시) */
.gnb-bg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: transparent;
    border-bottom: 0;
    z-index: -1;
    transition: 0.3s;
}

.header:hover .gnb-bg { height: 0; }

/* Search */
.search-panel {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 1003;
    width: 100%;
    padding: 26px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eee;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-panel-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
}

.search-form {
    flex: 1;
}

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

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(45, 90, 76, 0.22);
    border-radius: 8px;
    background: #fff;
}

.search-input-wrap i {
    color: var(--primary-color);
    font-size: 22px;
}

.search-input-wrap input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    color: #222;
    font: inherit;
    font-size: 18px;
    background: transparent;
}

.search-input-wrap input::placeholder {
    color: #999;
}

.search-submit,
.search-close {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.search-submit {
    height: 36px;
    padding: 0 18px;
    border-radius: 18px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.search-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f5f3;
    color: #222;
}

.search-close i {
    font-size: 22px;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
}

.hero-slider .swiper-pagination {
    width: auto;
    left: auto;
    right: 60px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #111;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.hero-pagination-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pagination-current,
.hero-pagination-number {
    display: block;
    height: 18px;
    overflow: hidden;
}

.hero-pagination-current {
    animation: paginationNumberUp 0.45s ease both;
}

.hero-pagination-line {
    display: block;
    width: 1px;
    height: 80px;
    margin: 18px 0;
    background: #111;
    transform-origin: top;
    animation: paginationLineDown 0.45s ease both;
}

.hero-pagination-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.hero-pagination-number {
    animation: paginationNumberUp 0.45s ease both;
}
.hero-slider .arrow i {padding-left: 20px;}

@keyframes paginationNumberUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes paginationLineDown {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes heroTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-item {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #e9ecef; /* 이미지 자리 */
    z-index: -1;
}

.hero-bg-placeholder img,
.hero-bg-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-placeholder video {
    display: block;
}

.hero-bg-02 {
    background: #dfe9e2;
}

.hero-bg-03 {
    background: #eef0ea;
}

.hero-content .text-group h2 {
    font-size: 70px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .text-group p {
    font-size: 32px;
    line-height: 1.35;
}

.hero-content .text-group h2,
.hero-content .text-group p,
.hero-content .text-group .btn-buy {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.swiper-slide-active .hero-content .text-group h2 {
    animation: heroTextFadeIn 0.75s ease 0.1s both;
}

.swiper-slide-active .hero-content .text-group p {
    animation: heroTextFadeIn 0.75s ease 0.24s both;
}

.swiper-slide-active .hero-content .text-group .btn-buy {
    animation: heroTextFadeIn 0.75s ease 0.38s both;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    margin-top: 30px;
    transition: transform 0.2s;
}

.btn-buy:hover { transform: translateY(2px); }

/* Info Bar */
.info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    padding: 24px 46px;
    background: rgba(255,255,255,0.7);
    margin-top: -115px; /* 슬라이더 위에 겹침 */
    position: relative;
    z-index: 10;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(4px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    border-right: 1px solid rgba(45, 90, 76, 0.25);
}

.info-item:last-child {
    border-right: 0;
}

.info-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(221, 233, 209, 0.95);
    border-radius: 50%;
    color: var(--primary-color);
}

.info-icon i {
    font-size: 32px;
    line-height: 1;
}

.info-item .text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item .text strong {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.info-item .text span {
    font-size: 15px;
    line-height: 1;
    color: #666;
}

/* Product Section */
.product-section {
    padding: 130px 0;
}

.product-inner {
    display: grid;
    grid-template-columns: 830px 453px;
    gap: 117px;
    align-items: start;
}

.section-title {
    margin-bottom: 44px;
}

.section-title h2 {
    font-size: 40px;
    line-height: 1.18;
    font-weight: 500;
}

.section-title h2 span {
    color: var(--primary-color);
    font-weight: 800;
}

.section-title p {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.35;
    color: #333;
    font-weight: 400;
}

.feature-image-placeholder {
    width: 100%;
    height: 595px;
    border-radius: 18px;
    overflow: hidden;
}

.feature-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list-area {
    width: 453px;
    padding-left: 52px;
    border-left: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 44px;
}

.product-card {
    position: relative;
    min-height: 314px;
    text-align: center;
    cursor: pointer;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-card::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.88);
    font-family: Arial, sans-serif;
    font-size: 46px;
    line-height: 64px;
    font-weight: 300;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover::before,
.product-card:hover::after {
    opacity: 1;
}

.product-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    margin: 0 auto 24px;
    overflow: hidden;
}

.product-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image-placeholder img {
    transform: scale(1.1);
}

.product-card strong {
    display: block;
    min-height: 34px;
    font-size: 15px;
    line-height: 1.08;
    font-weight: 500;
}

.product-card span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
}

.product-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 34px;
    height: 18px;
    padding: 0 7px;
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    font-style: normal;
    font-weight: 700;
}

.product-badge.best {
    background: #ffc400;
}

.product-badge.new {
    background: #f00;
}

.view-all-product {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 16px;
    margin-top: 34px;
    color: #777;
    font-size: 14px;
    line-height: 1;
}

.view-all-product i {
    font-size: 16px;
}

/* MD Pick Section */
.md-pick-section {
    padding: 130px 0;
    background: #F1EFEB;
}

.md-pick-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 70px;
    align-items: center;
}

.md-pick-copy {
    padding-top: 2px;
}

.md-pick-label {
    display: block;
    margin-bottom: 24px;
    color: #18533e;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.md-pick-copy h2 {
    color: #222;
    font-size: 32px;
    line-height: 1.32;
    font-weight: 500;
}

.md-pick-copy h2 strong {
    display: inline-block;
    color: #18533e;
    font-weight: 800;
}

.md-pick-copy p {
    margin-top: 18px;
    color: #555;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
}

.md-pick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 34px;
    margin-top: 26px;
    padding: 0 17px;
    border-radius: 17px;
    background: #35705c;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease;
}

.md-pick-link:hover {
    background: #18533e;
    transform: translateY(-2px);
}

.md-pick-link i {
    font-size: 14px;
}

.md-pick-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.md-pick-item {
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: #e6e1d9;
}

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

.md-pick-item:nth-child(1) img {
    object-position: 70% 70%;
}

.md-pick-item:nth-child(2) img {
    object-position: 58% 55%;
}

.md-pick-item:nth-child(3) img {
    object-position: 86% 52%;
}

/* Routine Section */
.routine-section {
    padding: 130px 0;
    background: #fff;
}

.routine-inner {
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 145px;
    align-items: center;
}

.routine-intro {
    width: 690px;
}

.routine-copy h2 {
    color: #111;
    font-size: 40px;
    line-height: 1.24;
    font-weight: 500;
}

.routine-copy h2 strong {
    color: #18533e;
    font-weight: 800;
}

.routine-copy p {
    margin-top: 24px;
    color: #333;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
}

.routine-main-image {
    width: 550px;
    height: 412px;
    margin: 34px 0 0;
    background: transparent;
}

.routine-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.routine-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.routine-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 100px;
    align-items: center;
}

.routine-thumb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f1f1;
}

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

.routine-text h3 {
    color: #111;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.routine-text p {
    margin-top: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
}

.routine-text span {
    display: block;
    margin-top: 16px;
    color: #346353;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 62px 0 58px;
    background: #718378;
    color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 170px 300px;
    gap: 54px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 24px;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
}

.footer-logo span {
    font-weight: 400;
}

.footer-info strong {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}

.footer-menu,
.footer-cs {
    min-height: 210px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-menu li + li {
    margin-top: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-cs strong {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.footer-cs b {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.footer-cs p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 400;
}

/* Media Queries */
/* 기본은 모바일 스타일 작성 (Mobile First) */
.content-width,
.hero-content.content-width,
.info-bar.content-width,
.product-inner.content-width,
.md-pick-inner.content-width,
.routine-inner.content-width,
.footer-inner.content-width {
    width: calc(100% - 32px);
}

.header {
    background: #fff;
    border-bottom-color: #eee;
}

.search-panel {
    top: 64px;
    padding: 18px 0;
}

.search-panel-inner {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.search-input-wrap {
    height: 48px;
    gap: 10px;
    padding: 0 12px;
}

.search-input-wrap i {
    font-size: 20px;
}

.search-input-wrap input {
    font-size: 15px;
}

.search-submit {
    height: 32px;
    padding: 0 13px;
    font-size: 12px;
}

.search-close {
    position: absolute;
    top: -2px;
    right: 0;
    width: 34px;
    height: 34px;
    flex-basis: 34px;
}

.search-close i {
    font-size: 18px;
}

.header-inner {
    width: 100%;
    height: 64px;
    padding: 0 16px;
}

.logo,
.logo span {
    font-size: 22px;
}

.mobile-menu-btn {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    margin-left: auto;
    background: #111;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.is-menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.is-menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.header.is-menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.gnb {
    position: fixed;
    top: 64px;
    right: 0;
    width: min(420px, 100%);
    height: calc(100svh - 64px);
    padding: 30px 24px 112px;
    align-items: flex-start;
    background: #fff;
    border-left: 1px solid #eee;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.header.is-menu-open .gnb {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.main-menu {
    width: 100%;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.depth1 {
    position: relative;
    padding: 22px 0;
    color: #00734f;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.depth1::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    color: #2d5a4c;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
}

.menu-item.is-open .depth1::after {
    content: none;
}

.sub-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.menu-item:hover .sub-menu {
    transform: none;
}

.menu-item.is-open .sub-menu {
    max-height: 360px;
    padding: 0;
}

.sub-menu li {
    margin-bottom: 0;
}

.sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    color: #111;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
}

.sub-menu li a:hover {
    background: #00734f;
    color: #fff;
    text-decoration: none;
}

.util-menu {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    width: min(420px, 100%);
    gap: 16px;
    padding: 22px 24px calc(26px + env(safe-area-inset-bottom));
    background: #fff;
    border-left: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.header.is-menu-open .util-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.util-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding-left: 0;
    color: #2d5a4c;
    font-size: 15px;
    font-weight: 700;
}

.util-menu i {
    font-size: 20px;
}

.gnb-bg,
.header:hover .gnb-bg {
    display: none;
}

.hero-slider {
    height: 100svh;
    min-height: 540px;
    max-height: 640px;
}

.hero-item {
    align-items: flex-end;
}

.hero-bg-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.82) 100%);
}

.hero-content.content-width {
    padding: 0 18px 92px;
}

.hero-content .text-group h2 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.2;
}

.hero-content .text-group p {
    font-size: 16px;
    line-height: 1.45;
}

.btn-buy {
    margin-top: 22px;
    padding: 11px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.hero-slider .arrow i {
    padding-left: 12px;
}

.hero-slider .swiper-pagination {
    top: auto;
    right: auto;
    bottom: 30px;
    left: 18px;
    transform: none;
}

.hero-pagination-inner,
.hero-pagination-list {
    flex-direction: row;
}

.hero-pagination-line {
    width: 54px;
    height: 1px;
    margin: 0 14px;
    transform-origin: left;
}

.info-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    margin-top: -62px;
    padding: 12px 10px;
    border-radius: 18px 18px 0 0;
}

.info-item,
.info-item:nth-child(odd),
.info-item:nth-last-child(-n + 2) {
    justify-content: center;
    gap: 10px;
    padding: 14px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(45, 90, 76, 0.16);
}

.info-item:nth-child(odd) {
    border-right: 1px solid rgba(45, 90, 76, 0.16);
}

.info-item:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.info-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
}

.info-icon i {
    font-size: 22px;
}

.info-item .text strong {
    font-size: 14px;
    line-height: 1.25;
}

.info-item .text span {
    font-size: 12px;
    line-height: 1.3;
}

.product-section,
.md-pick-section,
.routine-section {
    padding: 64px 0;
}

.product-inner,
.md-pick-inner,
.routine-inner {
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.section-title {
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 24px;
    line-height: 1.25;
}

.section-title p {
    margin-top: 14px;
    font-size: 15px;
}

.feature-image-placeholder {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
}

.product-list-area {
    width: 100%;
    padding-left: 0;
    padding-top: 32px;
    border-left: 0;
    border-top: 1px solid #e5e5e5;
}

.product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 28px;
}

.product-card {
    min-height: 224px;
}

.product-image-placeholder {
    height: 168px;
    margin-bottom: 18px;
}

.product-card::before {
    inset: 0;
}

.product-card::after {
    width: 48px;
    height: 48px;
    font-size: 32px;
    line-height: 45px;
}

.product-card strong,
.product-card span {
    font-size: 13px;
}

.view-all-product {
    margin-top: 28px;
}

.md-pick-copy {
    display: block;
    padding-top: 0;
}

.md-pick-label {
    margin-bottom: 16px;
    font-size: 14px;
}

.md-pick-copy h2 {
    font-size: 24px;
}

.md-pick-copy p {
    font-size: 14px;
}

.md-pick-link {
    margin-top: 22px;
}

.md-pick-list {
    grid-template-columns: 1fr;
    gap: 16px;
}

.md-pick-item,
.md-pick-item:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    grid-column: auto;
}

.routine-intro {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.routine-copy h2 {
    font-size: 24px;
}

.routine-copy p {
    margin-top: 18px;
    font-size: 15px;
}

.routine-main-image {
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 550 / 412;
}

.routine-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.routine-item {
    grid-template-columns: 84px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid #e7ece8;
}

.routine-item:last-child {
    border-bottom: 1px solid #e7ece8;
}

.routine-thumb {
    width: 78px;
    height: 78px;
}

.routine-text h3 {
    font-size: 17px;
}

.routine-text p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
}

.routine-text span {
    margin-top: 12px;
    font-size: 12px;
}

.footer {
    padding: 36px 16px calc(36px + env(safe-area-inset-bottom));
}

.footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 25px;
}

.footer-info strong {
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-info p,
.footer-menu a,
.footer-cs strong,
.footer-cs p {
    font-size: 11px;
}

.footer-menu,
.footer-cs {
    min-height: auto;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.footer-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.footer-menu li + li {
    margin-top: 0;
}

.footer-cs b {
    font-size: 25px;
}

/* 태블릿 이상 (768px ~) */
@media screen and (min-width: 768px) {
    .content-width,
    .search-panel-inner.content-width,
    .hero-content.content-width,
    .info-bar.content-width,
    .product-inner.content-width,
    .md-pick-inner.content-width,
    .routine-inner.content-width,
    .footer-inner.content-width {
        width: calc(100% - 40px);
    }

    .hero-slider {
        height: 680px;
        min-height: 620px;
        max-height: 720px;
    }

    .search-panel-inner {
        width: calc(100% - 40px);
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .search-input-wrap {
        height: 54px;
        padding: 0 16px;
    }

    .search-input-wrap input {
        font-size: 17px;
    }

    .search-close {
        position: static;
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .hero-content.content-width {
        padding: 0 24px 112px;
    }

    .hero-content .text-group h2 {
        font-size: 42px;
    }

    .hero-content .text-group p {
        font-size: 20px;
    }

    .info-bar {
        margin-top: -60px;
        padding: 18px 22px;
        text-align: center;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .info-icon i {
        font-size: 27px;
    }

    .product-section,
    .md-pick-section,
    .routine-section {
        padding: 84px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 17px;
    }

    .product-list,
    .md-pick-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-image-placeholder {
        height: 190px;
    }

    .product-card {
        min-height: 254px;
    }

    .product-card::before {
        inset: 0;
    }

    .md-pick-copy h2 {
        font-size: 28px;
    }

    .md-pick-copy p {
        font-size: 15px;
    }

    .md-pick-item {
        aspect-ratio: 1 / 1.05;
    }

    .md-pick-item:first-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }

    .routine-copy h2 {
        font-size: 29px;
    }

    .routine-copy p {
        font-size: 17px;
    }

    .routine-main-image {
        width: min(100%, 480px);
    }

    .routine-item {
        grid-template-columns: 112px 1fr;
        gap: 28px;
        padding: 30px 0;
    }

    .routine-thumb {
        width: 112px;
        height: 112px;
    }

    .routine-text h3 {
        font-size: 20px;
    }

    .footer {
        padding: 44px 24px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 18px;
    }
}

/* 데스크탑 이상 (1024px ~) */
@media screen and (min-width: 1024px) {
    .content-width,
    .search-panel-inner.content-width,
    .info-bar.content-width,
    .product-inner.content-width,
    .md-pick-inner.content-width,
    .routine-inner.content-width,
    .footer-inner.content-width {
        width: calc(100% - 80px);
    }

    .hero-content.content-width {
        width: 100%;
        padding: 0 60px;
    }

    .header {
        background: transparent;
        border-bottom-color: rgba(0, 0, 0, 0.01);
    }

    .search-panel {
        top: 80px;
        padding: 26px 0;
    }

    .header.is-scrolled {
        background: #fff;
        border-bottom-color: #eee;
    }

    .header-inner {
        height: 80px;
        padding: 0;
    }

    .logo,
    .logo span {
        font-size: 24px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .gnb {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        padding: 0;
        align-items: center;
        background: transparent;
        border-left: 0;
        box-shadow: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .gnb::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        height: 300px;
        background: transparent;
    }

    .gnb:hover::after {
        display: block;
    }

    .main-menu {
        width: auto;
        flex-direction: row;
        gap: 34px;
    }

    .menu-item {
        position: relative;
        width: 150px;
        border-bottom: 0;
    }

    .depth1 {
        padding: 30px 0;
        color: inherit;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
    }

    .depth1::after {
        content: none;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 2;
        width: 180px;
        max-height: none;
        padding-top: 0;
        overflow: hidden;
        background: #fff;
        border: 1px solid #e4ebe7;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
    }

    .sub-menu::before {
        display: none;
    }

    .menu-item:nth-child(1) .sub-menu::before { content: "Brand"; }
    .menu-item:nth-child(2) .sub-menu::before { content: "Product"; }
    .menu-item:nth-child(3) .sub-menu::before { content: "Routine"; }
    .menu-item:nth-child(4) .sub-menu::before { content: "Review"; }

    .menu-item:hover .sub-menu,
    .menu-item.is-open .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%);
    }

    .sub-menu li {
        margin-bottom: 0;
    }

    .sub-menu li a {
        min-height: 42px;
        padding: 0 12px;
        color: #111;
        font-size: 15px;
        line-height: 1.2;
        text-align: center;
    }

    .sub-menu li a:hover {
        background: #00734f;
        color: #fff;
        text-decoration: none;
    }

    .util-menu {
        position: static;
        display: block;
        width: auto;
        padding: 0;
        background: transparent;
        border-left: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .util-menu a {
        flex: none;
        padding-left: 40px;
        color: inherit;
        font-size: 14px;
        font-weight: 500;
    }

    .util-menu i {
        font-size: 18px;
    }

    .gnb-bg,
    .header:hover .gnb-bg {
        display: none;
        height: 0;
    }

    .hero-slider {
        height: 100vh;
        min-height: 720px;
        max-height: none;
        cursor: grab;
    }

    .hero-slider.is-dragging {
        cursor: grabbing;
    }

    .hero-slider.is-dragging .swiper-slide-visible .hero-content .text-group h2,
    .hero-slider.is-dragging .swiper-slide-visible .hero-content .text-group p,
    .hero-slider.is-dragging .swiper-slide-visible .hero-content .text-group .btn-buy {
        opacity: 1;
        transform: translateY(0);
        animation: none;
        transition-duration: 0.2s;
    }

    .hero-item {
        align-items: center;
    }

    .hero-bg-placeholder::after {
        display: none;
    }

    .hero-content .text-group h2 {
        font-size: 54px;
        line-height: 1.18;
    }

    .hero-content .text-group p {
        font-size: 24px;
    }

    .hero-slider .swiper-pagination {
        top: 50%;
        right: 34px;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
    }

    .hero-pagination-inner,
    .hero-pagination-list {
        flex-direction: column;
    }

    .hero-pagination-line {
        width: 1px;
        height: 80px;
        margin: 18px 0;
        transform-origin: top;
    }

    .info-bar {
        display: flex;
        margin-top: -105px;
        padding: 24px 46px;
        border-radius: 22px 22px 0 0;
    }

    .info-item,
    .info-item:nth-child(odd),
    .info-item:nth-last-child(-n + 2) {
        justify-content: center;
        padding: 0;
        border-bottom: 0;
        border-right: 1px solid rgba(45, 90, 76, 0.25);
    }

    .info-item:last-child {
        border-right: 0;
    }

    .info-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .info-icon i {
        font-size: 32px;
    }

    .info-item .text strong {
        font-size: 20px;
    }

    .info-item .text span {
        font-size: 15px;
    }

    .product-section,
    .md-pick-section,
    .routine-section {
        padding: 110px 0;
    }

    .product-inner {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 70px;
    }

    .product-feature {
        display: block;
    }

    .section-title {
        margin-bottom: 44px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 20px;
    }

    .feature-image-placeholder {
        height: 520px;
        aspect-ratio: auto;
        border-radius: 18px;
    }

    .product-list-area {
        padding-left: 42px;
        padding-top: 0;
        border-left: 1px solid #e5e5e5;
        border-top: 0;
    }

    .product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
        row-gap: 44px;
    }

    .product-card {
        min-height: 300px;
    }

    .product-image-placeholder {
        height: 238px;
    }

    .product-card::before {
        inset: 0;
    }

    .md-pick-inner {
        grid-template-columns: 280px 1fr;
        gap: 54px;
    }

    .md-pick-label {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .md-pick-copy h2 {
        font-size: 30px;
    }

    .md-pick-copy p {
        font-size: 16px;
    }

    .md-pick-link {
        margin-top: 26px;
    }

    .md-pick-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        align-items: stretch;
    }

    .md-pick-item,
    .md-pick-item:first-child {
        grid-column: auto;
        height: auto;
        aspect-ratio: 335 / 320;
    }

    .routine-inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
        gap: 84px;
    }

    .routine-intro {
        display: block;
    }

    .routine-copy h2 {
        font-size: 34px;
    }

    .routine-copy p {
        font-size: 20px;
    }

    .routine-main-image {
        width: min(100%, 520px);
        margin-top: 34px;
    }

    .routine-list {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .routine-item {
        grid-template-columns: 132px 1fr;
        gap: 44px;
        padding: 0;
        border-top: 0;
    }

    .routine-item:last-child {
        border-bottom: 0;
    }

    .routine-thumb {
        width: 132px;
        height: 132px;
    }

    .routine-text h3 {
        font-size: 21px;
    }

    .routine-text p {
        font-size: 14px;
    }

    .footer {
        padding: 52px 30px;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr) 160px 250px;
        gap: 34px;
    }

    .footer-logo {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .footer-info strong {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .footer-info p,
    .footer-menu a,
    .footer-cs strong,
    .footer-cs p {
        font-size: 12px;
    }

    .footer-menu,
    .footer-cs {
        min-height: 210px;
        padding-left: 24px;
        padding-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.45);
        border-top: 0;
    }

    .footer-menu {
        display: block;
    }

    .footer-menu li + li {
        margin-top: 12px;
    }

    .footer-cs b {
        font-size: 30px;
    }
}

/* 큰 데스크탑 이상 (1400px ~) */
@media screen and (min-width: 1400px) {
    .content-width,
    .search-panel-inner.content-width,
    .info-bar.content-width,
    .product-inner.content-width,
    .md-pick-inner.content-width,
    .routine-inner.content-width,
    .footer-inner.content-width {
        width: var(--content-width);
    }

    .hero-content.content-width {
        width: var(--content-width);
        padding: 0;
    }

    .hero-content .text-group h2 {
        font-size: 70px;
        line-height: 1.2;
    }

    .hero-content .text-group p {
        font-size: 32px;
    }

    .hero-slider .swiper-pagination {
        right: 60px;
    }

    .product-inner {
        grid-template-columns: 830px 453px;
        gap: 117px;
    }

    .product-list-area {
        width: 453px;
        padding-left: 52px;
    }

    .feature-image-placeholder {
        height: 595px;
    }

    .product-list {
        column-gap: 38px;
    }

    .product-card {
        min-height: 314px;
    }

    .product-image-placeholder {
        height: 250px;
    }

    .md-pick-inner {
        grid-template-columns: 300px 1fr;
        gap: 70px;
    }

    .md-pick-copy h2 {
        font-size: 32px;
    }

    .md-pick-copy p {
        font-size: 17px;
    }

    .md-pick-item,
    .md-pick-item:first-child {
        height: auto;
        aspect-ratio: 335 / 320;
    }

    .routine-inner {
        grid-template-columns: 650px 1fr;
        gap: 145px;
    }

    .routine-intro {
        width: 690px;
    }

    .routine-copy h2 {
        font-size: 40px;
    }

    .routine-copy p {
        font-size: 24px;
    }

    .routine-main-image {
        width: 550px;
    }

    .routine-item {
        grid-template-columns: 96px 1fr;
        gap: 100px;
    }

    .routine-thumb {
        width: 160px;
        height: 160px;
    }

    .routine-text h3 {
        font-size: 24px;
    }

    .footer {
        padding: 62px 0 58px;
    }

    .footer-inner {
        grid-template-columns: 1fr 170px 300px;
        gap: 54px;
    }

    .footer-logo {
        font-size: 32px;
    }
}
