/* =======================
   Catalog Page (반응형 리팩토링)
   ======================= */

:root {
    --catalog-red: #e11d2e;
    --catalog-text: #222;
    --catalog-gray: #555;
}

/* 기본 구조 */
.catalog-wrap {
    position: relative;
    margin: clamp(4rem, 6vw, 8rem) auto;
    width: 100%;
    overflow: hidden;
    background: #fff;
    font-family: "Noto Sans KR", system-ui, sans-serif;
}

.catalog-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.75;
    z-index: 0;
}

.catalog-content {
    width: min(1200px, 92%);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* 상단 영역 */
.catalog-intro {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.catalog-intro .highlight {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}
.catalog-intro p {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--catalog-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.catalog-logo {
    width: clamp(120px, 10vw, 160px);
    margin: 0 auto;
    display: block;
}

/* =======================
   카탈로그 이미지
   ======================= */
.catalog-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    flex-wrap: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.catalog-images img {
    flex: 1 1 auto;
    width: clamp(120px, 25vw, 260px);
    height: auto;
    transition: transform 0.4s ease;
    object-fit: contain;
}
.catalog-images .center {
    transform: scale(1.05);
}

/* =======================
   하단 설명
   ======================= */
.catalog-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.catalog-description .content-title {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--catalog-text);
    margin-bottom: 1rem;
}
.catalog-description .content-sub {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--catalog-gray);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
}

/* =======================
   버튼
   ======================= */
.catalog-btn {
    display: inline-block;
    text-align: center;
    padding: clamp(0.8rem, 1.5vw, 1rem) clamp(2rem, 3vw, 2.5rem);
    background-color: var(--catalog-red);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(225, 29, 46, 0.25);
}

.catalog-btn:hover {
    background-color: #c10d20;
    box-shadow: 0 5px 10px rgba(225, 29, 46, 0.35);
    transform: translateY(-2px);
}

.catalog-btn .ko {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 700;
}

.catalog-btn .en {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 700;
    opacity: 0.9;
}

/* =======================
   반응형 (800px 이하)
   ======================= */
@media (max-width: 800px) {
    .catalog-images {
        gap: clamp(0.6rem, 2vw, 1rem);
        padding: 0 clamp(1rem, 4vw, 1.5rem);
        flex-wrap: nowrap;
    }
    .catalog-images img {
        width: clamp(100px, 28vw, 200px);
    }
}

/* =======================
   반응형 (600px 이하)
   ======================= */
@media (max-width: 600px) {
    .catalog-images {
        gap: clamp(0.5rem, 2vw, 0.8rem);
        padding: 0 clamp(1rem, 5vw, 1.5rem);
    }
    .catalog-images img {
        width: clamp(90px, 32vw, 160px);
    }
}
