/* /home/rich/oxxoox/static/css/dividers.css */

/* ============================================
   DIVIDERS & SEPARATORS
   ============================================ */

.divider {
    height: 1px;
    background: var(--border);
    margin: var(--gap-xl) 0;
}

.divider-thick {
    height: 2px;
}

.divider-dashed {
    background: none;
    border-top: 1px dashed var(--border);
}

.divider-text {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    margin: var(--gap-xl) 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider-vertical {
    width: 1px;
    height: auto;
    background: var(--border);
    margin: 0 var(--gap-md);
}
