.gh-mega-menu-wrap {
    display: flex;
    width: 100%;
    max-width: 1260px;
    background: #fff;
    margin: 0 auto;
    font-family: inherit;
    text-align: left;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(18, 20, 28, 0.12);
}

.gh-mega-menu-wrap * {
    box-sizing: border-box;
}

.gh-mega-menu-wrap .gh-mega-left {
    width: 27%;
    min-width: 300px;
    background: linear-gradient(180deg, #fff7f9 0%, #f7f7f7 100%);
    padding: 24px;
    border-right: 1px solid #f0dfe4;
}

.gh-mega-menu-wrap .gh-search-wrap {
    position: relative;
    margin-bottom: 14px;
}

.gh-mega-menu-wrap .gh-brand-search {
    width: 100%;
    height: 46px;
    border: 1px solid #ead4dc;
    padding: 0 42px 0 14px;
    font-size: 14px;
    background: #fff;
    border-radius: 12px;
    outline: none;
}

.gh-mega-menu-wrap .gh-brand-search:focus {
    border-color: #e74761;
    box-shadow: 0 0 0 3px rgba(231, 71, 97, 0.10);
}

.gh-mega-menu-wrap .gh-search-icon {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    color: #777;
}

.gh-mega-menu-wrap .gh-alphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.gh-mega-menu-wrap .gh-alphabet a {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.gh-mega-menu-wrap .gh-alphabet a.active,
.gh-mega-menu-wrap .gh-alphabet a:hover {
    color: #e74761;
}

.gh-mega-menu-wrap .gh-brand-list {
    background: #fff;
    border: 1px solid #f1dce3;
    max-height: 320px;
    overflow-y: auto;
    border-radius: 12px;
}

.gh-mega-menu-wrap .gh-brand-heading {
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(231, 71, 97, 0.16), rgba(231, 71, 97, 0.05));
    color: #e74761;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.gh-mega-menu-wrap .gh-brand-list a {
    display: block;
    padding: 8px 12px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.4;
}

.gh-mega-menu-wrap .gh-brand-list a:hover {
    color: #e74761;
    background: #fff7f9;
}

.gh-mega-menu-wrap .gh-mega-right {
    width: 73%;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 18px;
    background: #fff;
}

.gh-mega-menu-wrap .gh-menu-col {
    border: 1px solid #f1e1e6;
    border-radius: 15px;
    padding: 18px 16px;
    min-height: 250px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gh-mega-menu-wrap .gh-menu-col:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(18, 20, 28, 0.08);
}

.gh-mega-menu-wrap .gh-menu-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff0f4;
    color: #e74761;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.gh-mega-menu-wrap .gh-menu-col h4 {
    margin: 0 0 14px;
    line-height: 1.3;
}

.gh-mega-menu-wrap .gh-menu-col h4 a {
    font-size: 15px;
    font-weight: 700;
    color: #171717;
    text-decoration: none;
}

.gh-mega-menu-wrap .gh-menu-col a {
    display: block;
    color: #555;
    font-size: 13.5px;
    text-decoration: none;
    margin-bottom: 11px;
    line-height: 1.4;
}

.gh-mega-menu-wrap .gh-menu-col a:hover {
    color: #e74761;
}

.gh-mega-menu-wrap .gh-view-all {
    margin-top: 15px;
    color: #e74761 !important;
    font-weight: 700;
}

.gh-mega-error {
    padding: 15px;
    border: 1px solid #e74761;
    color: #e74761;
    background: #fff7f9;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .gh-mega-menu-wrap .gh-mega-right {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .gh-mega-menu-wrap {
        display: block;
        border-radius: 12px;
    }

    .gh-mega-menu-wrap .gh-mega-left,
    .gh-mega-menu-wrap .gh-mega-right {
        width: 100%;
        min-width: 0;
    }

    .gh-mega-menu-wrap .gh-mega-right {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}
