/**
 * Modül: Akordiyon Stilleri (Sadece Tasarım)
 */
.p-acc {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pa-header {
    padding: 18px 25px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-size: 15px;
}

.pa-icon::before {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.p-active .pa-icon::before {
    content: '-';
    transform: rotate(180deg);
}

.pa-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    padding: 0 25px;
}

.p-active .pa-content {
    max-height: 1000px;
    padding: 20px 25px;
}

/* 1. Modern Stili (Kenarlıklı) */
.pa-modern { border: 1px solid #e2e8f0; }
.pa-modern .pa-header { background: #f8fafc; color: #1e293b; }

/* 2. Gölgeli Stili */
.pa-shadow { box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }
.pa-shadow .pa-header { background: #fff; color: #1e293b; }

/* 3. Renkli Başlık Stili */
.pa-colored { border: 1px solid var(--p-blue); }
.pa-colored .pa-header { background: var(--p-blue); color: #fff; }

/* 4. Minimal Stili */
.pa-minimal { border-bottom: 2px solid #f1f5f9; border-radius: 0; }
.pa-minimal .pa-header { padding-left: 0; padding-right: 0; background: transparent; color: var(--p-blue); }
