/* Suera Accordion Styles */
.suera-accordion {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.accordion-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s;
}

.accordion-icon::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}

.accordion-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
}

.accordion-item.active .accordion-icon::after {
    transform: scaleY(0);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    will-change: height;
    transition-property: height;
    transition-timing-function: ease-out;
}

.accordion-content-inner {
    padding: 0 20px 20px;
}

/* Animation classes - will be manipulated by JS */
.accordion-item.active .accordion-content {
    height: auto; /* JS will override this */
}
