body{
    font-family: "neulis-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;
}
.button{
    font-weight: 400;
}
.has-font-bold{
    font-weight: 700;
}
.has-font-light{
    font-weight: 300;
}
.has-background-sac-specialty-blue{
    background-color: #2d3483;
}
.has-background-sac-specialty-blue-outline{
    border:1px solid #2d3483;
    background-color: #fff;
}
.has-text-sac-specialty-blue{
    color: #2d3483;
}
.is-small{
    font-size: .8em;
}
.top-banner-row {
    background-color: #3c4041;
    color: white;
    padding: 0.75rem 1.5rem;
}
.logo-address-row {
    color: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dbdbdb;
}

.shop-group{
    border-bottom: 5px solid transparent; /* Make original border transparent */
    height:auto;
    width:120px;
    cursor: pointer;
    position: relative; /* Ensure proper positioning */
}
.border-rounded{border-radius: 8px;}
.shadow{box-shadow: 0 0 10px rgba(0,0,0,0.2);}
/* We don't need this anymore as we're using the animated overlay */
.shop-group.active{
    /* No special styling needed as the animated border handles this */
}



.main-navigation-row.navbar {

}
.company-logo img {
    max-height: 80px;
}
.address-details p {
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.address-details {
    font-size: 0.9rem;
}

/* Megamenu Specific Styles */
.navbar-item.has-dropdown.is-hoverable .navbar-link {
    display: flex; /* Ensure dropdown arrow is nicely aligned */
    align-items: center;
}
.navbar-item img{ max-height: inherit;}
.navbar-dropdown.megamenu {
    left: 0; /* Align to the start of the navbar if not using is-fullwidth-dropdown approach */
    min-width: 500px; /* Example: set a minimum width, adjust as needed */
    padding: 1.5rem; /* More padding for a spacious feel */
    box-shadow:
            0 8px 8px rgba(10, 10, 10, 0.1),
            0 0 0 1px rgba(10, 10, 10, 0.1);
}

.navbar-item.has-megamenu .navbar-dropdown {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Start with viewport width */
    max-width: 1152px; /* Corresponds to $container-max-width in Bulma, or your container width */
    /* Alternatively, if your navbar is inside a container, you can try:
       width: auto;
       left: calc(-1 * ( (100vw - (1152px - 2*32px )) / 2 ) ); /* Adjust 1152px and 32px based on your container */
    /* Or use padding to align with container edges if the navbar itself isn't full width */
}
/* When the navbar is inside a .container */
.navbar > .container .navbar-item.has-megamenu .navbar-dropdown {
    width: auto; /* Let content define width up to max */
    /* The following left/right assumes the dropdown is a direct child of navbar-item within .container */
    /* This calculation can be tricky and might need adjustment based on exact parent padding */
    left: calc(
            -1 * ((100vw - var(--bulma-container-width, 960px)) / 2) + var(--bulma-container-offset, 0px)
    );
    right: calc(
            -1 * ((100vw - var(--bulma-container-width, 960px)) / 2) + var(--bulma-container-offset, 0px)
    );
    /* A simpler approach for container-bound megamenu is to ensure the dropdown itself uses Bulma's container or columns correctly */
}

/* For a megamenu that just wants to be wider but not necessarily full screen width */
.navbar-dropdown.is-megamenu {
    min-width: 1000px;
    padding: 1.5rem;
}
.navbar-dropdown {
    min-width: 200px;
    padding: 1.5rem;
}
.megamenu-column-title {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #7a7a7a; /* Dimmed color for title */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dbdbdb;
}
.menu-list a {
    /* Bulma's menu-list styling can be used here */
    padding: 0.5em 0.75em;
    font-size: 0.95rem;
}
.megamenu .menu-list a:hover {
    background-color: #f5f5f5;
}
.megamenu .icon {
    /* Style for icons in megamenu */
    margin-right: 0.5em;
}
.megamenu-promo-column {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}
.megamenu-promo-column .title {
    font-size: 1.2rem;
}


/* Responsive adjustments if needed */
@media screen and (max-width: 768px) {
    .logo-address-row .columns {
        text-align: center;
    }
    .logo-address-row .column.is-pulled-right {
        float: none !important; /* Override Bulma's pull */
        text-align: center;
        margin-top: 1rem;
    }
    .address-details {
        text-align: center;
    }
    .shop-group{display: none;}
    /* Megamenu on mobile: default Bulma dropdown behavior (full width) is often fine */
    /* If using columns inside, they will stack naturally */
    .navbar-dropdown.is-megamenu {
        min-width: 100%; /* Ensure it takes full width */
        left: 0;
        right: 0;
        padding: 1rem;
    }
    .megamenu .columns {
        margin-left: 0;
        margin-right: 0;
    }
}


.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a4a4a; /* Slightly darker text for better readability */
}

.stars {
    display: flex;
    margin-top: 0.5rem;
}

.stars i {
    color: #FFD700; /* Gold color for stars */
    margin-right: 0.25rem;
}
@media screen and (min-width: 1024px) {
    .navbar-item.has-dropdown:hover .navbar-dropdown.is-megamenu {
        display: block !important;
    }
    .navbar
    > .container
    .navbar-item.has-dropdown
    .navbar-dropdown.is-megamenu {
        left: var(
                --bulma-navbar-dropdown-offset,
                -32px
        );
        right: var(
                --bulma-navbar-dropdown-offset,
                -32px
        );
        width: auto;
        max-width: calc(
                var(--bulma-container-max-width, 1344px) - 2 *
                var(--bulma-container-padding-horizontal, 1rem)
        );
    }
}


/* Mobile menu styles */
@media screen and (max-width: 1023px) {
    /* Style for dropdown arrows */
    .dropdown-arrow {
        margin-left: 0.5rem;
        transition: transform 0.2s ease;
    }

    /* Initially hide all dropdown menus in mobile view */
    .navbar-menu.is-active .navbar-dropdown {
        display: none;
        padding-left: 1rem;
    }

    /* Override Bulma's default dropdown behavior in mobile view */
    .navbar-item.has-dropdown {
        display: block;
    }

    /* Make navbar links full width and properly spaced */
    .navbar-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.75rem;
    }

    /* Add transition for smoother open/close effect */
    .navbar-dropdown {
        transition: all 0.3s ease;
        border-left: 2px solid #2d3483;
        margin-left: 0.75rem;
    }
    .mobile-fullwidth-button {
        width: 100%;
    }
}
