/**
 * Platty Menu - Base Layout
 * Grid and flexbox foundation
 */

/* ===================================
   MENU WRAPPER - Container Principal
   =================================== */
.platty-menu-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--platty-menu-bg);
}

.platty-menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--platty-spacing-md) 15px;
}

/* ===================================
   NAVIGATION BASE
   =================================== */
.platty-menu-nav {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    justify-content: flex-start; /* Default alignment - can be changed via Elementor */
}

/* ===================================
   BUTTONS CONTAINER
   =================================== */
.platty-menu-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 30px;
}
