/* Valhalla Peptides — FAQ accordion (used by [vp_faq_kalkulacka]) */

.vp-faq-section {
    max-width: 920px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.vp-faq-overtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 0.75rem;
}

.vp-faq-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #D4AF37;
    text-align: center;
    margin: 0 0 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.vp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vp-faq-item {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.vp-faq-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.vp-faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vp-faq-q:hover { color: #D4AF37; }

.vp-faq-q:focus-visible {
    outline: 2px solid #D4AF37;
    outline-offset: -2px;
}

.vp-faq-q-text {
    flex: 1;
    min-width: 0;
}

.vp-faq-chevron {
    width: 20px;
    height: 20px;
    color: #D4AF37;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.vp-faq-q-open .vp-faq-chevron {
    transform: rotate(180deg);
}

.vp-faq-a {
    padding: 0 1.5rem 1.5rem;
    color: #B0B0B0;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.vp-faq-a p { margin: 0; }

@media (max-width: 640px) {
    .vp-faq-section { margin: 3rem auto; }
    .vp-faq-q { padding: 1rem 1.25rem; font-size: 0.95rem; }
    .vp-faq-a { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; }
}
