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

/* ============================================
   ACCORDION
   ============================================ */

.accordion {
    border: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--gap-md);
    background: var(--smoke);
    cursor: pointer;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    background: var(--ash);
}

.accordion-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-icon {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: var(--gap-md);
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}
