/*
Theme Name: Astra Child
Theme URI: http://example.com/astra-child
Description: Astra Child Theme
Author: Brainstorm Force
Author URI: https://www.wpastra.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: astra
Text Domain: astra-child
*/


/* Force details/summary to work - override Astra */
.premium-app-wrapper details {
    display: block !important;
}

.premium-app-wrapper details summary {
    display: flex !important;
    cursor: pointer !important;
    list-style: none !important;
    user-select: none !important;
}

.premium-app-wrapper details summary::-webkit-details-marker {
    display: none !important;
}

.premium-app-wrapper details summary .toggle-icon {
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

.premium-app-wrapper details[open] summary .toggle-icon {
    transform: rotate(180deg) !important;
}

/* Ensure content shows when open */
.premium-app-wrapper details[open] {
    display: block !important;
}

/* ========================================
   DROPDOWN TOGGLE FIX - Override Astra
   ======================================== */

.premium-app-wrapper details {
    display: block !important;
}

.premium-app-wrapper details summary {
    display: flex !important;
    cursor: pointer !important;
    list-style: none !important;
    user-select: none !important;
}

.premium-app-wrapper details summary::-webkit-details-marker {
    display: none !important;
}

.premium-app-wrapper details summary .toggle-icon {
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

.premium-app-wrapper details[open] summary .toggle-icon {
    transform: rotate(180deg) !important;
}

.premium-app-wrapper details[open] {
    display: block !important;
}