.allon-footer {
    background-color: #3c417b;
    color: #fff;
    padding: 30px;
    font-size: 14px;


    .footer-columns {
        display: flex;
        gap: 20px;
        width: 75%;

        .footer-column {
            flex: 1;

            h4 {
                color: #fff;
                margin-bottom: 10px;
            }

            ul {
                list-style: none;
                padding: 0;

                li a {
                    color: #ccc;
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }
    }
    
    .contact-section {
        max-width: 90%;
    }
    
    .footer-badges {
        max-width: 90%;
    }


    .footer-badges img {
        height: 40px;
        margin-right: 10px;
    }

    .social-icons a {
        margin-right: 10px;
        color: #fff;
    }

    .footer-country {
        select {
            background: #fff;
            color: #000;
            border-radius: 4px;
            padding: 5px;
        }

        a {
            color: #fff;
        }
    }


    .footer-legal {
        margin-top: 20px;
        font-size: 12px;
        text-align: center;
        a {
            color: #ccc;
            margin: 0 5px;
        }
    }
    
    .footer-column ul {
        list-style: none; 
        padding-left: 0;    
        margin: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 5px;
    }
    
    .footer-column ul li a {
        color: white;        
        text-decoration: none;
    }
    
    .footer-column ul li a:hover {
        text-decoration: underline;
        color: #ccc;      
    }
    
    .social-icon .icon {
      width: 50px;   /* Was 30px */
      height: 50px;  /* Was 30px */
      fill: currentColor;
    }
    
    .social-icon.instagram .icon {
      width: 50px;   /* Was 30px */
      height: 50px;  /* Was 30px */
      fill: currentColor;
    }
    
    .location-line {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    
    .icon-circle {
      background-color: #e0e1ec; /* light background */
      border-radius: 50%;
      padding: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .icon-circle svg {
      width: 14px;
      height: 14px;
      fill: #3c417b; /* brand color for icon */
    }
    
    .location-text {
      margin: 0;
      font-size: 14px;
      line-height: 1.4;
    }
    
    .email-line {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    
    .icon-circle {
      background-color: #e0e1ec; /* lighter circle */
      border-radius: 50%;
      padding: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .icon-circle svg {
      width: 14px;
      height: 14px;
      fill: #3c417b;
    }
    
    .email-text {
      margin: 0;
      font-size: 14px;
    }
    
    .phone-line {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .icon-circle {
      background-color: #e0e1ec; /* lighter circle */
      border-radius: 50%;
      padding: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .icon-circle svg {
      width: 14px;
      height: 14px;
      fill: #3c417b; /* your brand color for the icon */
    }
    
    .phone-text {
      margin: 0;
      font-size: 14px;
    }
}

.wrapper {
    background-color: white !important;
}

.header.panel .block-search {
    max-width: 1000px;  /* Optional: Limit the width */
    width: 100%;       /* Ensure it takes up available space */
    margin: 0 auto;
    margin-top: 50px;
    border: 2px solid #3c417b;
    border-radius: 100px;
    height: 50px;
    display: flex;
    align-items: center;
}

.header.panel .block-title {
    border: none;
}

.header.panel .input-text {
    border: none !important;
    outline: none !important;
    box-shadow: none !important; 
}

.header.panel .block-search .action {
    margin-top: 8px; 
    margin-right: 8px;
}

.block-search {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}



.mega-menu {
    padding: 15px;
}

.menu-row {
   background-color: #3c417b; 
}

.menu-tabs {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-tabs li {
    color: white;
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
}

.menu-columns {
    display: none; /* hidden by default */
    margin-top: 20px;
    display: flex;
    gap: 40px;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
}

.menu-column h4 {
    color: #3c417b;
    margin-bottom: 10px;
}

#categorii-tab.active-tab {
    background-color: white;
    color: black;
}

.subcategory-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-column {
    width: 23%;
    box-sizing: border-box;
}

#categorii-menu {
    display: flex;
    max-height: 500px;
    border: 1px solid #ccc;
    overflow: hidden;
    margin-top: 10px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.menu-main-categories {
    width: 400px;
    overflow-y: auto;
    border-right: 1px solid #ccc;
    background-color: white;
}

.menu-main-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-cat-item {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main-cat-item:hover {
    background-color: #e0e0ff;
}

.main-cat-item.active-cat {
    background-color: #eaeaea;
    font-weight: bold;
}

.menu-subcategories {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: white;
}

.subcategory-panel {
    display: none;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-column {
    width: 23%;
    padding: 10px;
    border-right: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.menu-column h4 {
    margin: 0;
    font-size: 16px;
}










    
