#header #main-menu>li>ul.menu-list {
    display: none;
    position: absolute;
    top: 40px;
    /* Overlap main menu item to prevent gap */
    left: 0;
    width: 218px;
    padding-top: 15px;
    /* Visual space + hit area */
    margin: 0;
    list-style: none;
    z-index: 1000;
    background-color: transparent;
    /* Background is handled by LIs */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Show submenu on hover */
#header #main-menu>li:hover>ul.menu-list,
#header #main-menu>li.active>ul.menu-list {
    display: block;
}

/* Individual Menu Items in Dropdown */
ul.menu-list>li {
    position: relative;
    background-color: #3d0402;
    /* Dark Red Background */
    border-top: 1px solid #4c0503;
    border-bottom: 1px solid #320301;
    padding: 0;
    margin: 0;
}

/* Special handling for the first item to have the arrow */
/* Special handling for the first item to have the arrow */
ul.menu-list>li:first-child {
    border-top: none;
    margin-top: 0;
    /* Handled by UL padding now */
}

/* The Arrow Indicator */
ul.menu-list>li>.arrow-top {
    position: absolute;
    top: -19px;
    left: 20px;
    /* Adjust centering */
    width: 218px;
    /* Should match menu width generally or be an image */
    height: 19px;
    background: url('../images/drop-down-top.png') no-repeat;
    pointer-events: none;
}

/* Links in Dropdown */
/* Links in Dropdown */
ul.menu-list>li>a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    height: auto;
    padding: 8px 15px;
    color: #e1ca97;
    /* Gold/Orange text */
    text-decoration: none;
    font-family: 'Spartan', sans-serif;
    font-size: 11px;
    line-height: normal;
    text-transform: none;
    /* Keep case as is */
    box-sizing: border-box;
    background: none;
    /* Remove any inherited background */
}

/* Hover State for Links */
ul.menu-list>li>a:hover {
    color: #fff;
    /* White on hover usually */
    background-color: #58100c;
    /* Slightly lighter red on hover */
}

/* Spans inside link */
/* Spans inside link */
/* Spans inside link */
/* ul.menu-list > li > a > span.link-text { } - Removed empty rule */

ul.menu-list>li>a>span.indicator {
    /* No float needed with flexbox */
    font-weight: bold;
    padding-left: 10px;
    /* Ensure space between text and arrow */
    white-space: nowrap;
    /* Prevent arrow from wrapping on its own */
}