.category-modern-nav {
    width: 100%;
}

.category-panel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-panel-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 24px;
    min-height: 130px;
    background: #f8f8f8;
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    text-decoration: none;
    transition: all .3s ease;
}

.category-panel-item:hover {
    background: #20242a;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.category-panel-item:hover .category-panel-text,
.category-panel-item:hover .category-panel-icon {
    color: white;
}

.category-panel-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 18px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #b58b50;
    box-shadow: 0 5px 16px rgba(0,0,0,.08);
}

.category-panel-text {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    letter-spacing: .4px;
}