/*
    Professional 2-column mega menu
*/

:root {
    --brand: #f59e0b;
    --brand-hover: #d97706;
    --brand-blue: #253B98;
    --text-on-brand: #ffffff;
    --panel-bg: #ffffff;
    --panel-text: #1f2937;
    --panel-muted: #6b7280;
    --panel-hover: #eef2ff;
    --border: #e5e7eb;
    --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.16);
}

* {
    box-sizing: border-box;
}

.buttons-container {
    width: 100%;
    position: relative;
}

.seperate {
    margin-top: 3%;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a button {
    cursor: pointer;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.big-button,
.dropbtn,
.dropbtn-mobile {
    border: none;
    outline: none;
    transition: all 0.25s ease;
    font-family: inherit;
}

.big-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 28px;
    min-height: 48px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-on-brand);
    background: linear-gradient(180deg, var(--brand) 0%, #ea9a08 100%);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.2px;
}

.big-button:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #f7ad1f 0%, var(--brand-hover) 100%);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
}

.categories-button {
     display: block;
    margin: 0 auto;
    padding: 8px 40px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background-color: #FFA300;
    border-radius: 20px;
    border: none;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 30px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-on-brand);
    background: linear-gradient(180deg, var(--brand) 0%, #ea9a08 100%);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.dropbtn:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #f7ad1f 0%, var(--brand-hover) 100%);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
}

.dropbtn::after {
    content: "▾";
    font-size: 14px;
    line-height: 1;
    opacity: 0.9;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 90vw);
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    overflow: hidden;
}
.mega-menu-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
}

.mega-menu-side {
    background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
    border-right: 1px solid var(--border);
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mega-menu-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.mega-menu-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: var(--panel-muted);
    margin: 0;
}

.mega-menu-links {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    align-content: start;
}

.dropdown-content a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 14px 16px 14px 20px;
    color: var(--panel-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    background: #fff;
}

.dropdown-content a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    border-radius: 999px;
    background: transparent;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #eef2ff;
    color: #253B98;
    border-color: #dbe4ff;
    transform: translateX(2px);
}

.dropdown-content a:hover::before {
    background-color: #253B98;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.drop-down-options {
    cursor: pointer;
}

.dropdown-mobile {
    display: none;
}

@media (max-width: 768px) {
    .big-button {
        margin-top: 20px;
        width: 100%;
        max-width: 320px;
    }

    .dropdown {
        display: none;
    }

    .dropdown-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        max-width: 760px;
        margin-top: 20px;
        padding: 0 12px;
    }

    .dropbtn-mobile {
        width: 100%;
        min-height: 52px;
        padding: 12px 14px;
        font-size: 15px;
        font-weight: 700;
        background: #ffffff;
        color: var(--panel-text);
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
        text-align: center;
    }

    .dropbtn-mobile:hover {
        background: #eef2ff;
        border-color: #dbe4ff;
        color: #253B98;
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .dropdown-mobile {
        grid-template-columns: 1fr;
    }
}