.giperplan-faq-list {
    margin: 0;
    padding: 0;
}

.giperplan-faq-item {
    border-bottom: 1px solid #e0d8f9;
    background: #ede9fe;
    transition: background 0.2s;
}

.giperplan-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 16px;    
    background: transparent;
    border: none;
    outline: none;
    transition: background 0.2s;
    user-select: none;
    margin: 0;
    /* Reset h3 styles */
    font-family: inherit;
    line-height: inherit;
}

.giperplan-faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #a78bfa;
    transition: transform 0.2s;
}

.giperplan-faq-item.active .giperplan-faq-question::after {
    content: "–";
    transform: rotate(180deg);
}

.giperplan-faq-answer {
    position: relative;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #ede9fe;
    color: #444;
    font-size: var(--wp--preset--font-size--medium);
    transition: max-height 0.3s ease, padding 0.3s;
    margin: 0;
}

.giperplan-faq-item.active .giperplan-faq-answer {
    max-height: 5000px;
    padding: 10px 16px 14px 16px;
}

.giperplan-faq-edit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
}

.giperplan-faq-edit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #a78bfa;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid currentColor;
    border-radius: 4px;
    background: rgba(237, 233, 254, 0.9);
    backdrop-filter: blur(2px);
}

.giperplan-faq-item.active .giperplan-faq-answer:hover .giperplan-faq-edit {
    opacity: 0.7;
    visibility: visible;
}

.giperplan-faq-edit:hover {
    opacity: 1 !important;
    color: #7c3aed;
    background: rgba(167, 139, 250, 0.1);
    transform: scale(1.05);
} 