body.sc7-commercial .sc7-nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 76px;
}

body.sc7-commercial .sc7-nav-item::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 18px;
}

body.sc7-commercial .sc7-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--shop-muted);
    transition: color .2s ease;
}

body.sc7-commercial .sc7-nav-trigger i {
    color: var(--shop-subtle);
    font-size: 10px;
    transition: color .2s ease, transform .2s ease;
}

body.sc7-commercial .sc7-nav-item:hover .sc7-nav-trigger,
body.sc7-commercial .sc7-nav-item:focus-within .sc7-nav-trigger,
body.sc7-commercial .sc7-nav-item:hover .sc7-nav-trigger i,
body.sc7-commercial .sc7-nav-item:focus-within .sc7-nav-trigger i {
    color: var(--shop-green);
}

body.sc7-commercial .sc7-nav-item:hover .sc7-nav-trigger i,
body.sc7-commercial .sc7-nav-item:focus-within .sc7-nav-trigger i {
    transform: translateY(1px);
}

body.sc7-commercial .sc7-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 90;
    width: min(320px, calc(100vw - 40px));
    max-height: min(72vh, 560px);
    overflow: auto;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    background: #101010;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .58);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
}

body.sc7-commercial .sc7-dropdown-wide {
    left: 50%;
    width: min(760px, calc(100vw - 48px));
    transform: translate(-35%, 10px);
}

body.sc7-commercial .sc7-nav-item:hover > .sc7-dropdown,
body.sc7-commercial .sc7-nav-item:focus-within > .sc7-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

body.sc7-commercial .sc7-nav-item:hover > .sc7-dropdown-wide,
body.sc7-commercial .sc7-nav-item:focus-within > .sc7-dropdown-wide {
    transform: translate(-35%, 0);
}

body.sc7-commercial .sc7-dropdown-head {
    border-bottom: 1px solid var(--shop-border);
    padding: 14px 16px;
}

body.sc7-commercial .sc7-dropdown-head strong,
body.sc7-commercial .sc7-dropdown-head span {
    display: block;
}

body.sc7-commercial .sc7-dropdown-head strong {
    color: var(--shop-text);
    font-size: 14px;
    font-weight: 900;
}

body.sc7-commercial .sc7-dropdown-head span {
    margin-top: 3px;
    color: var(--shop-subtle);
    font-size: 12px;
}

body.sc7-commercial .sc7-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
}

body.sc7-commercial .sc7-dropdown-group {
    min-width: 0;
}

body.sc7-commercial .sc7-dropdown-group > strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--shop-text);
    font-size: 13px;
    font-weight: 900;
}

body.sc7-commercial .sc7-dropdown-group > strong img,
body.sc7-commercial .sc7-dropdown-list img,
body.sc7-commercial .sc7-dropdown-group a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

body.sc7-commercial .sc7-dropdown-list {
    display: grid;
    gap: 5px;
    padding: 10px;
}

body.sc7-commercial .sc7-dropdown-list a,
body.sc7-commercial .sc7-dropdown-group a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--shop-muted);
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 800;
}

body.sc7-commercial .sc7-dropdown-list a:hover,
body.sc7-commercial .sc7-dropdown-group a:hover {
    border-color: rgba(0, 217, 146, .36);
    background: rgba(0, 217, 146, .08);
    color: var(--shop-green);
}

body.sc7-commercial .sc7-dropdown-list a i {
    width: 22px;
    color: var(--shop-green);
    text-align: center;
}

body.sc7-commercial .sc7-mobile-details {
    border-bottom: 1px solid rgba(61, 58, 57, .5);
}

body.sc7-commercial .sc7-mobile-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--shop-muted);
    cursor: pointer;
    list-style: none;
    padding: 13px 0;
    font-weight: 800;
}

body.sc7-commercial .sc7-mobile-details summary::-webkit-details-marker {
    display: none;
}

body.sc7-commercial .sc7-mobile-details summary::after {
    content: "\f078";
    color: var(--shop-subtle);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    transition: transform .2s ease;
}

body.sc7-commercial .sc7-mobile-details[open] summary {
    color: var(--shop-green);
}

body.sc7-commercial .sc7-mobile-details[open] summary::after {
    transform: rotate(180deg);
}

body.sc7-commercial .sc7-mobile-details a {
    border-bottom: 0;
    padding: 9px 0 9px 16px;
    font-size: 13px;
}

@media (max-width: 767px) {
    body.sc7-commercial .sc7-dropdown-grid {
        grid-template-columns: 1fr;
    }
}
