/**
 * Theme Name:   Freeza Child
 * Theme URI:    https://www.adsi.pt
 * Description:  Child theme do Freeza para customizações específicas do projeto
 * Author:       ADSI
 * Author URI:   https://www.adsi.pt
 * Template:     freeza
 * Version:      1.0.0
 * License:      GNU General Public License v2 or later
 * License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:  freeza-child
 */

/* 
 * Adicione aqui as suas customizações de CSS
 * Este ficheiro será carregado após o CSS do tema pai
 */

/* ========================================
 * WCAG 2.2 AA - Touch Target Size Fix
 * ======================================== */

/**
 * Menu Toggle Buttons - Minimum 24px x 24px touch targets
 * Fixes: "All touch targets must be 24px large, or leave sufficient space"
 * Success Criteria: 2.5.8
 */
.dropdown-menu-toggle.ast-header-navigation-arrow {
    min-width: 24px !important;
    min-height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    margin-left: 4px !important;
}

/* Ensure SVG icon scales appropriately within the larger touch target */
.dropdown-menu-toggle.ast-header-navigation-arrow svg {
    width: 16px;
    height: 16px;
}

/* Add sufficient spacing between menu items to prevent overlap */
.main-header-menu .menu-item-has-children {
    position: relative;
}

.main-header-menu .menu-item-has-children > a {
    padding-right: 32px !important; /* Space for the toggle button */
}