/* FAQ Section Styles */

.accordion-item {
    border: none !important;
    margin-bottom: 20px;
}

.accordion-button {
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 15px !important;
    padding: 25px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background: white;
        color: var(--text-primary);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .accordion-button:focus {
        box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
        border-color: var(--accent-gold);
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4A017'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        color: var(--accent-gold);
    }

.accordion-body {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: -5px;
    padding: 20px 30px 30px;
}

.faq-question-btn h4 {
    text-align: left;
    line-height: 1.4;
}

.faq-item {
    transition: all 0.3s ease;
    border: none;
}

    .faq-item:hover {
        transform: translateY(-1px);
    }

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.usage-info {
    background: var(--tertiary-bg);
    border-radius: 10px;
    border-left: 3px solid var(--accent-gold);
}

.sacha-inchi-highlight-small {
    text-align: center;
    margin: 20px 0;
}

.faq-sidebar .image-placeholder {
    height: 250px;
    margin-bottom: 20px;
}

.sacha-inchi-product .image-placeholder {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    color: white;
    font-weight: 600;
}

/* Cost Items */
.cost-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

    .cost-item i {
        font-size: 24px;
        margin-right: 15px;
        min-width: 30px;
    }

/* Responsive FAQ */
@media (max-width: 576px) {
    .faq-item {
        padding: 20px;
    }

    .cost-item {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

        .cost-item i {
            margin-right: 0;
            margin-bottom: 10px;
        }
}