.high-end-sec {
    padding: 30px 0;
    background-color: #090A10;
    font-family: 'Pretendard Variable', Pretendard, sans-serif;
}

/* Header */
.he-badge {
    color: #FF1F23;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.he-badge::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #FF1F23;
    margin-right: 8px;
}
.he-header {
    margin-bottom: 50px;
}
.he-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.he-subtitle {
    font-size: 16px;
    color: #94A3B8;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Layout */
.he-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* ====== LEFT: Featured ====== */
.he-featured-link {
    display: block;
    text-decoration: none;
    background-color: #111218;
    border: 1px solid #1E2028;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}
.he-featured-link:hover {
    transform: translateY(-4px);
    border-color: #FF1F23;
}

.he-feat-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 813 / 430;
    overflow: hidden;
    background-color: #111;
}
.he-feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.he-featured-link:hover .he-feat-img {
    transform: scale(1.04);
}
.he-feat-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(10,10,14,0.95) 0%, rgba(10,10,14,0.6) 50%, transparent 100%);
    pointer-events: none;
}
/* 이미지 위 오버레이: 제목 + 가격 */
.he-feat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    z-index: 2;
}
.he-feat-overlay .he-feat-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.he-feat-overlay .he-feat-name span {
    font-size: 14px;
    font-weight: 500;
    color: #CBD5E1;
    opacity: 0.9;
}
.he-feat-overlay .he-feat-price {
    font-size: 26px;
    font-weight: 900;
    color: #FF1F23;
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.he-feat-overlay .he-feat-price span {
    font-size: 14px;
    font-weight: 500;
    color: #8C8F9E;
}
.he-feat-badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #FF1F23;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
}

.he-feat-body {
    padding: 20px 24px 24px;
}
.he-feat-label-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.he-feat-category {
    font-size: 12px;
    font-weight: 700;
    color: #8C8F9E;
    letter-spacing: 0.02em;
}
.he-feat-model {
    font-size: 12px;
    font-weight: 800;
    color: #FF1F23;
    background: rgba(255, 62, 66, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.he-feat-name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.he-feat-price {
    font-size: 28px;
    font-weight: 900;
    color: #FF1F23;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.he-feat-price span {
    font-size: 14px;
    font-weight: 500;
    color: #8C8F9E;
}
.he-feat-specs {
    border-top: 1px solid #1E2028;
    padding-top: 20px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.he-spec-row {
    display: flex;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
}
.he-spec-label {
    color: #475569;
    font-weight: 700;
    min-width: 40px;
    flex-shrink: 0;
}
.he-spec-val {
    color: #CBD5E1;
}
.he-feat-btn {
    display: inline-flex;
    align-items: center;
    background-color: #FF1F23;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 62, 66, 0.2);
}
.he-featured-link:hover .he-feat-btn {
    background-color: #E01015;
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(255, 62, 66, 0.3);
}

/* ====== RIGHT: Side list ====== */
.he-side-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}
.he-side-card {
    display: flex;
    gap: 14px;
    background-color: #111218;
    border: 1px solid #1E2028;
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s;
    align-items: center;
    flex: 1;
}
.he-side-card:hover {
    transform: translateY(-3px);
    border-color: #3F4452;
}
.he-side-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1E1F25;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.he-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.he-side-img-placeholder {
    color: #3F4452;
    width: 40px;
    height: 40px;
}
.he-side-img-placeholder svg {
    width: 100%;
    height: 100%;
}
.he-side-info {
    flex: 1;
    min-width: 0;
}
.he-side-label {
    font-size: 11px;
    font-weight: 700;
    color: #FF1F23;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.he-side-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.he-side-price {
    font-size: 18px;
    font-weight: 900;
    color: #FF1F23;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.he-side-price span {
    font-size: 13px;
    font-weight: 500;
    color: #8C8F9E;
    margin-left: 2px;
}
.he-side-specs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.he-mini-spec {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 오른쪽 카드 버튼 */
.he-side-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    background-color: rgba(255, 62, 66, 0.12);
    color: #FF1F23;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 62, 66, 0.3);
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}
.he-side-card:hover .he-side-btn {
    background-color: #FF1F23;
    color: #fff;
    border-color: #FF1F23;
}

/* Responsive */
@media (max-width: 1024px) {
    .he-layout { grid-template-columns: 1fr; }
    .he-title { font-size: 36px !important; }
    .high-end-sec { padding: 40px 0; }
    .he-feat-name { font-size: 24px !important; }
    .he-feat-price { font-size: 30px !important; }
    .he-feat-btn { font-size: 16px !important; padding: 14px 26px !important; }
    
    /* 화면 조금만 줄어들어도 바로 지저분한 리스트 숨김 처리 */
    .he-side-list { display: none !important; }
}
@media (max-width: 768px) {
    .he-title { font-size: 32px !important; }
    .high-end-sec { padding: 30px 0; }
    .he-feat-name { font-size: 20px !important; }
    .he-feat-price { font-size: 26px !important; }
}

@media (max-width: 480px) {
    .he-title { font-size: 24px; }
    .he-feat-overlay { padding: 16px; }
    .he-feat-body { padding: 16px; }
    .he-feat-specs { display: none; /* 대표 스펙 상세 표기 감춤 */ }
    .he-feat-btn { width: 100%; justify-content: center; }
}
