.carousel-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 340px;
    overflow: hidden;
}
.swiper {
    width: 100vw;
    max-width: 1200px;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 340px;
}
.swiper-slide img {
    max-width: 100vw;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* 신규 캐릭터 카드 4개 한 줄에 꽉 차게 */
.character-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
.character-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    /* 카드 내부 스타일은 기존대로 */
}
.character-card .thumb {
    width: 100%;
    height: 160px;
    background: #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    display: block;
    object-fit: cover;
}
@media (max-width: 900px) {
    .character-cards {
        gap: 12px;
    }
    .character-card {
        font-size: 0.95em;
    }
}
@media (max-width: 600px) {
    .character-cards {
        flex-wrap: wrap;
        gap: 8px;
    }
    .character-card {
        flex: 1 1 48%;
        min-width: 48%;
        margin-bottom: 12px;
    }
}

footer.footer {
    background: #f5f5f5;
    color: #222;
    padding: 36px 0 24px 0;
    text-align: center;
    font-size: 15px;
    border-top: 2px solid #e0e0e0;
    margin-top: 60px;
}
footer.footer .sns {
    margin: 16px 0 8px 0;
}
footer.footer .sns a {
    color: #222;
    margin: 0 8px;
    font-size: 22px;
    transition: color 0.2s;
}
footer.footer .sns a:hover {
    color: #007bff;
}
footer.footer div[style*="margin-top:8px"] {
    color: #666;
    font-size: 14px;
    margin-top: 18px !important;
}

/* 캐릭터 섹션 간격 통일 */
.new-goods-section,
.trend-characters-section,
.favorite-characters-section {
    margin-bottom: 56px;
}
.new-goods-section:last-of-type,
.trend-characters-section:last-of-type,
.favorite-characters-section:last-of-type {
    margin-bottom: 0;
} 