
.accordion-button {
    background-color: #fff;
    color: #333;
    padding: 15px;
    box-shadow: none !important; /* Removes blue glow on click */
}
.accordion-button .price {
    margin-left: auto;
}
/* Hover effect for items */
.accordion-button:hover {
    background-color: #f8f9fa;
}

/* Color when item is expanded */
.accordion-button:not(.collapsed) {
    background-color: #f1f3f5; 
    color: #000;
}

/* Remove default accordion arrow and use spacing */
.accordion-button::after {
    margin-left: 10px;
    
}

/* Container styling */
.menu-category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden; /* Keeps corners rounded */
}


.flag-icon {
    width: 20px;
    height: 14px;
}

.sticky-header {
    /* Change to absolute to float OVER the content */
    position: absolute; 
    top: 20px; 
    left: 0;
    z-index: 9999;
    
    width: 100%;
    display: flex;
    justify-content: center;
    
    background: transparent !important;
    padding: 0;
    pointer-events: none; 
}

.lang-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px; 
    
    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.2) !important; /* Semi-transparent white */
    backdrop-filter: blur(12px);          
    -webkit-backdrop-filter: blur(12px);   
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3); 
    pointer-events: auto; 
}
.lang-btn {
    position: relative; 
    display: flex;
    align-items: center;
    
    /* BUTTON TRANSPARENCY */
    background: rgba(255, 255, 255, 0.1); 
    color: #ffffff; /* White text looks better on the sea background */
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px; 
    padding: 8px 16px 10px 16px; 
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

/* Active state for the selected language */
.lang-btn.active-lang {
    border: 1px solid #3b82f6;
    color: #ffffff;        
    background: rgba(59, 130, 246, 0.4); /* Transparent blue */
}

.lang-btn.active-lang::after {
    content: '';
    position: absolute;
    bottom: 4px; /* Position from the bottom edge */
    left: 50%;
    transform: translateX(-50%); /* Centers the dot perfectly */
    
    width: 5px;
    height: 5px;
    background-color: #3b82f6; /* Bright Blue Dot */
    border-radius: 50%;        /* Makes it a circle */
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6); /* Adds a "glow" */
    
    /* Pop-in animation */
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animation definition */
@keyframes popIn {
    0% { transform: translateX(-50%) scale(0); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Hover effects remain the same */
.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .sticky-header{
        top:10px;
    }
    /* 1. Wrap if needed, but keep them centered */
    .lang-container {
        flex-wrap: wrap; 
        gap: 8px;
        padding: 10px 5px;
    }

    /* 2. subtle size increase (User-Friendly, not Giant) */
    .lang-btn {
        flex-grow: 0; 
        
        font-size: 14px !important; 
        
        padding:5px 10px !important; 
    }

    /* 3. Flags: Just slightly larger */
    .flag-icon {
        width: 20px !important;
        height: 14px !important;
    }
    
}