    .faq {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .faq-category-section {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 1.5em;
        font-weight: 600;
        color: #000000ff;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e0e0e0;
    }

    .faq-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-item {
        background: #f9f9f9;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        overflow: hidden;
    }

    .faq-question {
        padding: 15px 20px;
        font-weight: 600;
        font-size: 1.1em;
        cursor: pointer;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        /* ✅ pushes icon to the right */
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f5f5f5;
    }

    .faq-toggle {
        display: inline-block;
        width: 24px;
        height: 24px;
        text-align: center;
        background: #000000ff;
        color: #ffffff;
        border-radius: 3px;
    }

    .faq-answer {
        padding: 20px;
        font-size: 1em;
        line-height: 1.6;
        color: #555;
        display: none;
    }

    .block-compare,
    .block-wishlist {
        display: none !important;
    }


    @media (max-width: 768px) {
        .faq-container {
            padding: 10px;
        }

        .faq-category-title {
            font-size: 1.3em;
        }

        .faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }

        .faq-answer {
            padding: 15px;
            font-size: 0.95em;
        }
    }