/* 아라홈페어 공통 스타일 */
.hf-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:50px 20px 60px;
    font-family:'Pretendard', sans-serif;
}

/* 제목 */
.hf-container .section_title{
    text-align:center;
    margin-bottom:36px;
}

.hf-container .section_title h2{
    font-size:28px;
    font-weight:800;
    color:#222;
}

.hf-container .section_title span{
    font-size:16px;
    color:#666;
    display:block;
    margin-top:10px;
}

/* 탭 버튼 */
.hf-tabs{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:34px;
    flex-wrap:wrap;
}

.hf-tab-btn{
    padding:12px 25px;
    border:1px solid #ddd;
    background:#fff;
    color:#333;
    cursor:pointer;
    border-radius:6px;
    font-weight:700;
    transition:0.3s;
    font-size:15px;
}

.hf-tab-btn.active{
    background:#333;
    color:#fff;
    border-color:#333;
}

/* 탭 제어 */
.hf-tab-content{
    display:none;
    margin-top:0;
}

.hf-tab-content.active{
    display:block;
}

/* 카드 그리드 */
.hf-grid{
    display:grid;
    grid-template-columns:repeat(4, 280px);
    gap:28px;
    justify-content:center;
}

/* 카드 */
.hf-card{
    width:280px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s;
}

.hf-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

/* 이미지 */
.hf-card img{
    width:100%;
    height:310px;
    object-fit:cover;
    display:block;
}

/* 카드 본문 */
.hf-card-body{
    padding:16px 18px 18px;
}

.hf-card h4{
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
    color:#222;
    line-height:1.35;
    word-break:keep-all;
}

.hf-desc{
    font-size:13px;
    line-height:1.55;
    color:#666;
    margin-bottom:10px;
    word-break:keep-all;
}

.hf-price{
    font-size:18px;
    font-weight:800;
    color:#d19a00;
    margin-bottom:12px;
}

/* 버튼 */
.hf-btn-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.hf-btn{
    display:block;
    text-align:center;
    padding:11px 0;
    border-radius:9px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
}

.hf-btn.yellow{
    background:#ffd400;
    color:#111;
}

.hf-btn.dark{
    background:#333;
    color:#fff;
}

/* 배지 */
.hf-badge{
    position:absolute;
    top:14px;
    left:14px;
    z-index:3;
    background:#222;
    color:#fff;
    padding:6px 10px;
    border-radius:8px;
    font-size:12px;
    font-weight:700;
}

.hf-badge.gold{
    background:#caa14a;
}

/* 모바일 최적화 */
@media (max-width:1280px){
    .hf-grid{
        grid-template-columns:repeat(2, 280px);
    }
}

@media (max-width:768px){
    .hf-container{
        padding:40px 16px 50px;
    }

    .hf-tabs{
        gap:8px;
        margin-bottom:28px;
    }

    .hf-tab-btn{
        flex:1;
        padding:11px 8px;
        font-size:13px;
    }

    .hf-grid{
        grid-template-columns:1fr;
        justify-items:center;
        gap:22px;
    }

    .hf-card{
        width:92%;
        max-width:340px;
    }

    .hf-card img{
        height:300px;
    }

    .hf-card h4{
        font-size:19px;
    }
}

@media (max-width:480px){
    .hf-card img{
        height:270px;
    }

    .hf-card-body{
        padding:15px 16px 17px;
    }

    .hf-btn{
        font-size:12px;
        padding:10px 0;
    }
}