/**
 * 세컨하우스 B2B 도매몰 - 접근성 CSS
 */

/* 키보드 네비게이션 포커스 스타일 */
.keyboard-navigation *:focus {
    outline: none;
}

/* 스킵 링크 */
.dm-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #667eea;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100000;
    border-radius: 0 0 4px 0;
}

.dm-skip-link:focus {
    top: 0;
}

/* 스크린 리더 전용 텍스트 */
.dm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 폼 에러 스타일 */
.dm-form-input.error {
    border-color: #f5576c;
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1);
}

.dm-form-error {
    color: #f5576c;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* 포커스 가능한 요소 스타일 */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

