/**
 * 세컨하우스 B2B 도매몰 - 모바일 카테고리 스와이프 전용 CSS
 */

@media (max-width: 1199px) {
    /* 모바일 카테고리 스와이프 컨테이너 */
    .dm-mobile-category-swipe {
        background: var(--color-card);
        border-top: var(--border-width) solid var(--color-border);
        border-bottom: var(--border-width) solid var(--color-border);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .dm-mobile-category-swipe::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .dm-mobile-category-swipe-inner {
        min-width: 100%;
        padding: 0 20px;
    }
    
    /* 모바일 카테고리 스와이프 네비게이션 */
    .dm-mobile-category-swipe-nav {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        white-space: nowrap;
    }
    
    /* 모바일 카테고리 스와이프 아이템 */
    .dm-mobile-category-swipe-item {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: var(--font-weight-medium);
        color: var(--color-text);
        text-decoration: none;
        border-radius: 20px;
        background: var(--color-bg-alt);
        transition: all var(--transition-base) var(--easing-elegant);
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .dm-mobile-category-swipe-item:hover {
        background: var(--color-accent);
        color: white;
        transform: translateY(-1px);
    }
    
    .dm-mobile-category-swipe-item.active {
        background: var(--color-accent);
        color: white;
        font-weight: var(--font-weight-semibold);
    }
}

